Home
last modified time | relevance | path

Searched refs:LZ_BITS (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libgifplugin/src/
H A Dgif_encoder.cpp47 const int LZ_BITS = 12; variable
598 int key = ((Key >> LZ_BITS) ^ Key) & 0x1FFF; in IsInDictionary()
600 while ((DKey = (dictionary_[key] >> LZ_BITS)) != 0xFFFFFL) { in IsInDictionary()
611 int key = ((Key >> LZ_BITS) ^ Key) & 0x1FFF; in AddToDictionary()
612 while ((dictionary_[key] >> LZ_BITS) != 0xFFFFFL) { in AddToDictionary()
615 dictionary_[key] = (Key << LZ_BITS) | (Code & 0x0FFF); in AddToDictionary()