~ubuntu-branches/ubuntu/raring/sunpinyin/raring

« back to all changes in this revision

Viewing changes to src/slm/tslmendian/slm_file.h

  • Committer: Package Import Robot
  • Author(s): YunQiang Su
  • Date: 2012-03-30 15:31:55 UTC
  • mfrom: (1.1.3) (1.2.7 sid)
  • Revision ID: package-import@ubuntu.com-20120330153155-qgls77sogzgtg9zp
Tags: 2.0.3+git20120222-1
* Team upload: git snapshot 20120222.
   - fix breaks if LDFLAGS in environment contains
       multiple words (Closese #646001).
   - rm patches merged to upstream:
       append-os-environ-toenv.patch
       fix-ftbfs-on-sh.patch
       remove-10-candidate-words-limitation.patch
   - refresh disable-lm-dict-compile.patch.
* Bump stardard version to 3.9.3: no modify needed.
* add libsunpinyin3-dbg and python-sunpinyin packages.
* debian/compat to 9, multiarch it.
* rewrite debian/rules with dh 7 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Distribution License ("CDDL")(collectively, the "License"). You may not use this
7
7
 * file except in compliance with the License. You can obtain a copy of the CDDL at
8
8
 * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
9
 
 * http://www.opensource.org/licenses/lgpl-license.php. See the License for the 
 
9
 * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
10
10
 * specific language governing permissions and limitations under the License. When
11
11
 * distributing the software, include this License Header Notice in each file and
12
12
 * include the full text of the License in the License file as well as the
13
13
 * following notice:
14
 
 * 
 
14
 *
15
15
 * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
16
16
 * (CDDL)
17
17
 * For Covered Software in this distribution, this License shall be governed by the
19
19
 * Any litigation relating to this License shall be subject to the jurisdiction of
20
20
 * the Federal Courts of the Northern District of California and the state courts
21
21
 * of the State of California, with venue lying in Santa Clara County, California.
22
 
 * 
 
22
 *
23
23
 * Contributor(s):
24
 
 * 
 
24
 *
25
25
 * If you wish your version of this file to be governed by only the CDDL or only
26
26
 * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
27
27
 * include this software in this distribution under the [CDDL or LGPL Version 2.1]
30
30
 * Version 2.1, or to extend the choice of license to its licensees as provided
31
31
 * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
32
32
 * Version 2 license, then the option applies only if the new code is made subject
33
 
 * to such option by the copyright holder. 
 
33
 * to such option by the copyright holder.
34
34
 */
35
35
 
36
36
/*
69
69
    size_t size() const;
70
70
    int getEndian() const;
71
71
    static int getHostEndian();
72
 
    
 
72
 
73
73
private:
74
74
    CThreadSlmFile(const CThreadSlmFile&);
75
 
    
 
75
 
76
76
private:
77
 
    size_t    m_bufLen;
 
77
    size_t m_bufLen;
78
78
    char*     m_buf;
79
 
    uint32_t  m_N;
80
 
    uint32_t  m_usingLogPr;
 
79
    uint32_t m_N;
 
80
    uint32_t m_usingLogPr;
81
81
    uint32_t* m_levelSizes;
82
82
    float*    m_prTable;
83
83
    float*    m_bowTable;
84
 
    
 
84
 
85
85
    size_t m_nnode;
86
86
    CThreadSlm::TNode* m_nodes;
87
87
    size_t m_nleaf;