/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
DicTraverseSession.java | 28 private static native long setDicTraverseSessionNative(String locale, long dictSize); 35 public DicTraverseSession(Locale locale, long dictionary, long dictSize) { 37 locale != null ? locale.toString() : "", dictSize); 54 private final long createNativeDicTraverseSession(String locale, long dictSize) { 55 return setDicTraverseSessionNative(locale, dictSize);
|
BinaryDictionary.java | 120 private static native long openNative(String sourceDir, long dictOffset, long dictSize,
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/ |
format_utils.h | 41 static FORMAT_VERSION detectFormatVersion(const uint8_t *const dict, const int dictSize);
|
format_utils.cpp | 29 const uint8_t *const dict, const int dictSize) { 33 if (dictSize < DICTIONARY_MINIMUM_SIZE) {
|
/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 | 29 jlong dictSize) { 30 void *traverseSession = DicTraverseSession::getSessionInstance(env, localeJStr, dictSize);
|
com_android_inputmethod_latin_BinaryDictionary.cpp | 78 jlong dictOffset, jlong dictSize, jboolean isUpdatable) { 91 sourceDirChars, static_cast<int>(dictOffset), static_cast<int>(dictSize),
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/ |
header_policy.h | 33 HeaderPolicy(const uint8_t *const dictBuf, const int dictSize) 34 : mDictFormatVersion(FormatUtils::detectFormatVersion(dictBuf, dictSize)),
|
/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;
|