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

  /external/libjpeg-turbo/
jcmarker.c 112 emit_byte (j_compress_ptr cinfo, int val) function
129 emit_byte(cinfo, 0xFF);
130 emit_byte(cinfo, (int) mark);
138 emit_byte(cinfo, (value >> 8) & 0xFF);
139 emit_byte(cinfo, value & 0xFF);
170 emit_byte(cinfo, index + (prec<<4));
176 emit_byte(cinfo, (int) (qval >> 8));
177 emit_byte(cinfo, (int) (qval & 0xFF));
212 emit_byte(cinfo, index);
215 emit_byte(cinfo, htbl->bits[i])
    [all...]
jcarith.c 118 emit_byte (int val, j_compress_ptr cinfo) function
154 do emit_byte(0x00, cinfo);
156 emit_byte(e->buffer + 1, cinfo);
158 emit_byte(0x00, cinfo);
167 do emit_byte(0x00, cinfo);
169 emit_byte(e->buffer, cinfo);
173 do emit_byte(0x00, cinfo);
176 emit_byte(0xFF, cinfo);
177 emit_byte(0x00, cinfo);
184 do emit_byte(0x00, cinfo)
    [all...]
jcphuff.c 200 #define emit_byte(entropy,val) \ macro
254 emit_byte(entropy, c);
256 emit_byte(entropy, 0);
355 emit_byte(entropy, 0xFF);
356 emit_byte(entropy, JPEG_RST0 + restart_num);
jchuff.c 306 #define emit_byte(state,val,action) \ macro
338 #define EMIT_BYTE() { \
354 EMIT_BYTE() \
355 EMIT_BYTE() \
361 EMIT_BYTE() \
362 EMIT_BYTE() \
363 EMIT_BYTE() \
364 EMIT_BYTE() \
370 EMIT_BYTE() \
371 EMIT_BYTE() \
    [all...]