Searched refs:dictionary (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/docs/details/other-components/ |
D | ime_pinyin.rst | 14 factors: the size of the font file and the size of the dictionary. 30 dictionary. If you don't want to use the built-in dictionary, 40 the Keyboard and dictionary at any time. 47 If you don't want to use the built-in Pinyin dictionary, or if you feel that the 48 built-in phonetic dictionary consumes too much memory, you can use a custom dictionary. 50 Customizing the dictionary is very simple. 54 Then, write a dictionary in the following format. 66 Then, write your own dictionary according to the following format: 88 Applying a new dictionary 91 After writing a dictionary according to the above dictionary format, you [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgCompressor.cpp | 357 Dictionary dictionary; in lzwDecode() local 371 if (code >= dictionary.size) { in lzwDecode() 372 …if (!outputSequence(dictionary, prevCode, ptr, uncompressedSizeBytes, bytesDecoded, firstByte)) br… in lzwDecode() 374 …} else if (!outputSequence(dictionary, code, ptr, uncompressedSizeBytes, bytesDecoded, firstByte))… in lzwDecode() 376 dictionary.add(prevCode, firstByte); in lzwDecode() 377 if (dictionary.flush(codeBitsWidth)) prevCode = Nil; in lzwDecode() 390 Dictionary dictionary; in lzwEncode() local 397 const int index = dictionary.findIndex(code, value); in lzwEncode() 408 if (!dictionary.flush(codeBitsWidth)) { in lzwEncode() 410 dictionary.add(code, value); in lzwEncode()
|
/lvgl-latest/src/libs/lz4/ |
D | lz4.c | 905 cctx->dictionary = NULL; in LZ4_prepareTable() 936 const BYTE* const dictionary = in LZ4_compress_generic_validated() local 937 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic_validated() 945 const BYTE* const dictEnd = dictionary ? dictionary + dictSize : dictionary; in LZ4_compress_generic_validated() 953 const BYTE* dictBase = (dictionary == NULL) ? NULL : in LZ4_compress_generic_validated() 955 dictionary + dictSize - dictCtx->currentOffset : in LZ4_compress_generic_validated() 956 dictionary + dictSize - startIndex; in LZ4_compress_generic_validated() 1050 lowLimit = dictionary; in LZ4_compress_generic_validated() 1061 lowLimit = dictionary; in LZ4_compress_generic_validated() 1154 && (lowLimit==dictionary) /* match within extDict */ ) { in LZ4_compress_generic_validated() [all …]
|
D | lz4.h | 382 LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize); 443 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 712 const LZ4_byte* dictionary; member
|