HomeSort by relevance Sort by last modified time
    Searched refs:dictSize (Results 1 - 25 of 26) sorted by null

1 2

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v2/
ver2_pt_node_array_reader.h 29 Ver2PtNodeArrayReader(const uint8_t *const dictBuffer, const int dictSize)
30 : mDictBuffer(dictBuffer), mDictSize(dictSize) {};
ver2_patricia_trie_node_reader.h 33 Ver2ParticiaTrieNodeReader(const uint8_t *const dictBuffer, const int dictSize,
36 : mDictBuffer(dictBuffer), mDictSize(dictSize), mBigramPolicy(bigramPolicy),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DicTraverseSession.java 47 private static native long setDicTraverseSessionNative(String locale, long dictSize);
54 public DicTraverseSession(Locale locale, long dictionary, long dictSize) {
56 locale != null ? locale.toString() : "", dictSize);
73 private final long createNativeDicTraverseSession(String locale, long dictSize) {
74 return setDicTraverseSessionNative(locale, dictSize);
BinaryDictionary.java 165 private static native long openNative(String sourceDir, long dictOffset, long dictSize,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
format_utils.cpp 43 const uint8_t *const dict, const int dictSize) {
47 if (dictSize < DICTIONARY_MINIMUM_SIZE) {
format_utils.h 45 static FORMAT_VERSION detectFormatVersion(const uint8_t *const dict, const int dictSize);
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.h 19 for compression: (dictSize * 11.5 + 6 MB) + state_size
20 for decompression: dictSize + state_size
27 1 4 dictSize (little endian).
40 0 for dictSize
44 level dictSize algo fb
59 dictSize - The dictionary size in bytes. The maximum value is
101 unsigned dictSize, /* default = (1 << 24) */
LzmaLib.c 18 unsigned dictSize, /* use (1 << N) or (3 << N). 4 KB < dictSize <= 128 MB */
29 props.dictSize = dictSize;
LzmaEnc.h 18 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
19 (1 << 12) <= dictSize <= (1 << 30) for 64-bit version
LzmaEnc.c 48 p->dictSize = p->mc = 0;
58 if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level == 6 ? (1 << 25) : (1 << 26)));
80 return props.dictSize;
331 UInt32 dictSize;
398 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props.dictSize > ((UInt32)1 << 30))
400 p->dictSize = props.dictSize;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.h 20 for compression: (dictSize * 11.5 + 6 MB) + state_size
21 for decompression: dictSize + state_size
28 1 4 dictSize (little endian).
41 0 for dictSize
45 level dictSize algo fb
60 dictSize - The dictionary size in bytes. The maximum value is
102 unsigned dictSize, /* default = (1 << 24) */
LzmaLib.c 19 unsigned dictSize, /* use (1 << N) or (3 << N). 4 KB < dictSize <= 128 MB */
30 props.dictSize = dictSize;
LzmaEnc.h 19 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
20 (1 << 12) <= dictSize <= (1 << 30) for 64-bit version
LzmaEnc.c 49 p->dictSize = p->mc = 0;
59 if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level == 6 ? (1 << 25) : (1 << 26)));
81 return props.dictSize;
332 UInt32 dictSize;
399 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props.dictSize > ((UInt32)1 << 30))
401 p->dictSize = props.dictSize;
    [all...]
  /external/lzma/C/
LzmaLib.h 19 for compression: (dictSize * 11.5 + 6 MB) + state_size
20 for decompression: dictSize + state_size
27 1 4 dictSize (little endian).
40 0 for dictSize
44 level dictSize algo fb
59 dictSize - The dictionary size in bytes. The maximum value is
101 unsigned dictSize, /* default = (1 << 24) */
LzmaLib.c 18 unsigned dictSize, /* use (1 << N) or (3 << N). 4 KB < dictSize <= 128 MB */
29 props.dictSize = dictSize;
Lzma86.h 23 2 4 dictSize (little endian)
31 dictSize - The dictionary size in bytes. The maximum value is
37 For better compression ratio dictSize must be >= inSize.
72 int level, UInt32 dictSize, int filterMode);
Lzma86Enc.c 18 int level, UInt32 dictSize, int filterMode)
28 props.dictSize = dictSize;
LzmaEnc.h 18 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
19 (1 << 12) <= dictSize <= (1 << 30) for 64-bit version
Lzma2Enc.c 225 UInt32 dictSize = p->lzmaProps.dictSize;
226 UInt64 blockSize = (UInt64)dictSize << 2;
231 if (blockSize < dictSize) blockSize = dictSize;
LzmaEnc.c 48 p->dictSize = p->mc = 0;
58 if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level == 6 ? (1 << 25) : (1 << 26)));
80 return props.dictSize;
331 UInt32 dictSize;
398 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props.dictSize > ((UInt32)1 << 30))
400 p->dictSize = props.dictSize;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_DicTraverseSession.cpp 30 jlong dictSize) {
31 void *traverseSession = DicTraverseSession::getSessionInstance(env, localeJStr, dictSize);
com_android_inputmethod_latin_BinaryDictionary.cpp 44 jlong dictOffset, jlong dictSize, jboolean isUpdatable) {
57 sourceDirChars, static_cast<int>(dictOffset), static_cast<int>(dictSize),
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.h 41 jlong dictSize) {
45 dictSize >= DICTIONARY_SIZE_THRESHOLD_TO_USE_LARGE_CACHE_FOR_SUGGESTION);
  /external/lzma/CPP/7zip/Compress/
LzmaEncoder.cpp 92 case NCoderPropID::kDictionarySize: ep.dictSize = v; break;

Completed in 264 milliseconds

1 2