Searched refs:emit_byte (Results 1 – 3 of 3) sorted by relevance
/external/jpeg/ |
D | jcmarker.c | 108 emit_byte (j_compress_ptr cinfo, int val) in emit_byte() function 125 emit_byte(cinfo, 0xFF); in emit_marker() 126 emit_byte(cinfo, (int) mark); in emit_marker() 134 emit_byte(cinfo, (value >> 8) & 0xFF); in emit_2bytes() 135 emit_byte(cinfo, value & 0xFF); in emit_2bytes() 166 emit_byte(cinfo, index + (prec<<4)); in emit_dqt() 172 emit_byte(cinfo, (int) (qval >> 8)); in emit_dqt() 173 emit_byte(cinfo, (int) (qval & 0xFF)); in emit_dqt() 208 emit_byte(cinfo, index); in emit_dht() 211 emit_byte(cinfo, htbl->bits[i]); in emit_dht() [all …]
|
D | jcphuff.c | 198 #define emit_byte(entropy,val) \ macro 253 emit_byte(entropy, c); in LOCAL() 255 emit_byte(entropy, 0); in LOCAL() 355 emit_byte(entropy, 0xFF); in emit_restart() 356 emit_byte(entropy, JPEG_RST0 + restart_num); in emit_restart()
|
D | jchuff.c | 270 #define emit_byte(state,val,action) \ macro 324 emit_byte(state, c, return FALSE); in LOCAL() 326 emit_byte(state, 0, return FALSE); in LOCAL() 458 emit_byte(state, 0xFF, return FALSE); in emit_restart() 459 emit_byte(state, JPEG_RST0 + restart_num, return FALSE); in emit_restart()
|