Home
last modified time | relevance | path

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

/third_party/cups-filters/filter/
Drastertopclx.c971 unsigned char *line_ptr, /* Current byte pointer */ in CompressData() local
990 line_ptr = line; in CompressData()
1004 for (line_ptr = line, comp_ptr = CompBuffer; in CompressData()
1005 line_ptr < line_end; in CompressData()
1006 comp_ptr += 2, line_ptr += count) in CompressData()
1009 (line_ptr + count) < line_end && in CompressData()
1010 line_ptr[0] == line_ptr[count] && in CompressData()
1015 comp_ptr[1] = line_ptr[0]; in CompressData()
1018 line_ptr = CompBuffer; in CompressData()
1027 line_ptr = line; in CompressData()
[all …]
Drastertoescpx.c1306 register const unsigned char *line_ptr, in CompressData() local
1332 line_ptr = (const unsigned char *)line; in CompressData()
1341 line_ptr = (const unsigned char *)line; in CompressData()
1345 while (line_ptr < line_end && (comp_ptr - CompBuffer) < length) in CompressData()
1347 if ((line_ptr + 1) >= line_end) in CompressData()
1354 *comp_ptr++ = *line_ptr++; in CompressData()
1356 else if (line_ptr[0] == line_ptr[1]) in CompressData()
1362 line_ptr ++; in CompressData()
1365 while (line_ptr < (line_end - 1) && in CompressData()
1366 line_ptr[0] == line_ptr[1] && in CompressData()
[all …]
/third_party/ffmpeg/libavcodec/
Ddfa.c198 uint8_t *line_ptr; in decode_bdlt() local
212 line_ptr = frame; in decode_bdlt()
216 if (frame - line_ptr <= bytestream2_peek_byte(gb)) in decode_bdlt()
218 line_ptr += bytestream2_get_byte(gb); in decode_bdlt()
221 if (frame - line_ptr < count) in decode_bdlt()
223 if (bytestream2_get_buffer(gb, line_ptr, count) != count) in decode_bdlt()
227 if (frame - line_ptr < count) in decode_bdlt()
229 memset(line_ptr, bytestream2_get_byte(gb), count); in decode_bdlt()
231 line_ptr += count; in decode_bdlt()
241 uint8_t *line_ptr; in decode_wdlt() local
[all …]