HomeSort by relevance Sort by last modified time
    Searched refs:cur_bits (Results 1 - 3 of 3) sorted by null

  /external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
LZWEncoder.java 101 int cur_bits = 0; field in class:LZWEncoder
256 cur_accum &= masks[cur_bits];
258 if (cur_bits > 0)
259 cur_accum |= (code << cur_bits);
263 cur_bits += n_bits;
265 while (cur_bits >= 8) {
268 cur_bits -= 8;
288 while (cur_bits > 0) {
291 cur_bits -= 8;
  /external/jpeg/
wrgif.c 56 int cur_bits; /* # of bits in cur_accum */ member in struct:__anon10855
107 /* Uses cur_accum and cur_bits to reblock into 8-bit bytes */
109 dinfo->cur_accum |= ((INT32) code) << dinfo->cur_bits;
110 dinfo->cur_bits += dinfo->n_bits;
112 while (dinfo->cur_bits >= 8) {
115 dinfo->cur_bits -= 8;
155 dinfo->cur_bits = 0;
188 if (dinfo->cur_bits > 0) {
  /external/webp/src/enc/
histogram.c 649 const double cur_bits = local
651 if (cur_bits < best_bits) {
652 best_bits = cur_bits;

Completed in 60 milliseconds