Home
last modified time | relevance | path

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

/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
DLZWEncoder.java152 int hshift; in compress() local
170 hshift = 0; in compress()
172 ++hshift; in compress()
173 hshift = 8 - hshift; // set hash code range bound in compress()
183 i = (c << hshift) ^ ent; // xor hashing in compress()