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

  /external/jpeg/
jcphuff.c 221 * left-justified in this part. At most 16 bits can be passed to emit_bits
228 emit_bits (phuff_entropy_ptr entropy, unsigned int code, int size) function
269 emit_bits(entropy, 0x7F, 7); /* fill any partial byte with ones */
287 emit_bits(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]);
304 emit_bits(entropy, (unsigned int) (*bufstart), 1);
331 emit_bits(entropy, entropy->EOBRUN, nbits);
437 if (nbits) /* emit_bits rejects calls with size 0 */
438 emit_bits(entropy, (unsigned int) temp2, nbits);
536 emit_bits(entropy, (unsigned int) temp2, nbits);
593 emit_bits(entropy, (unsigned int) (temp >> Al), 1)
    [all...]
jchuff.c 246 * allows emit_bits to detect any attempt to emit such symbols.
295 * left-justified in this part. At most 16 bits can be passed to emit_bits
302 emit_bits (working_state * state, unsigned int code, int size)
342 if (! emit_bits(state, 0x7F, 7)) /* fill any partial byte with ones */
384 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits]))
389 if (nbits) /* emit_bits rejects calls with size 0 */
390 if (! emit_bits(state, (unsigned int) temp2, nbits))
403 if (! emit_bits(state, actbl->ehufco[0xF0], actbl->ehufsi[0xF0]))
425 if (! emit_bits(state, actbl->ehufco[i], actbl->ehufsi[i]))
430 if (! emit_bits(state, (unsigned int) temp2, nbits)
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcphuff.c 222 * left-justified in this part. At most 16 bits can be passed to emit_bits
229 emit_bits (phuff_entropy_ptr entropy, unsigned int code, int size) function
270 emit_bits(entropy, 0x7F, 7); /* fill any partial byte with ones */
288 emit_bits(entropy, tbl->ehufco[symbol], tbl->ehufsi[symbol]);
305 emit_bits(entropy, (unsigned int) (*bufstart), 1);
332 emit_bits(entropy, entropy->EOBRUN, nbits);
438 if (nbits) /* emit_bits rejects calls with size 0 */
439 emit_bits(entropy, (unsigned int) temp2, nbits);
537 emit_bits(entropy, (unsigned int) temp2, nbits);
594 emit_bits(entropy, (unsigned int) (temp >> Al), 1)
    [all...]
fpdfapi_jchuff.c 250 * allows emit_bits to detect any attempt to emit such symbols.
299 * left-justified in this part. At most 16 bits can be passed to emit_bits
306 emit_bits (working_state * state, unsigned int code, int size)
346 if (! emit_bits(state, 0x7F, 7)) /* fill any partial byte with ones */
388 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits]))
393 if (nbits) /* emit_bits rejects calls with size 0 */
394 if (! emit_bits(state, (unsigned int) temp2, nbits))
407 if (! emit_bits(state, actbl->ehufco[0xF0], actbl->ehufsi[0xF0]))
429 if (! emit_bits(state, actbl->ehufco[i], actbl->ehufsi[i]))
434 if (! emit_bits(state, (unsigned int) temp2, nbits)
    [all...]

Completed in 30 milliseconds