Home
last modified time | relevance | path

Searched refs:dest_end (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dxan.c122 uint8_t *dest_end = dest + dest_len; in xan_huffman_decode() local
140 if (dest >= dest_end) in xan_huffman_decode()
161 uint8_t *dest_end = dest + dest_len; in xan_unpack() local
165 while (dest < dest_end && bytestream2_get_bytes_left(&ctx)) { in xan_unpack()
187 if (dest_end - dest < size + size2 || in xan_unpack()
199 if (dest_end - dest < size || bytestream2_get_bytes_left(&ctx) < size) in xan_unpack()
Dxxan.c133 const uint8_t *dest_end = dest + dest_len; in xan_unpack() local
135 while (dest < dest_end) { in xan_unpack()
155 if (size + size2 > dest_end - dest) in xan_unpack()
158 if (dest + size + size2 > dest_end || in xan_unpack()
169 if (dest_end - dest < size) in xan_unpack()
Dvmdvideo.c145 unsigned char *dest_end = dest + dest_len; in rle_unpack() local
164 if (dest_end - pd < l || bytestream2_get_bytes_left(&gb) < l) in rle_unpack()
169 if (dest_end - pd < 2*l || bytestream2_get_bytes_left(&gb) < 2) in rle_unpack()
/third_party/ffmpeg/libavformat/
Dutils.c511 char *dest = NULL, *dest_end; in ff_parse_key_value() local
528 dest_end = dest ? dest + dest_len - 1 : NULL; in ff_parse_key_value()
536 if (dest && dest < dest_end) in ff_parse_key_value()
540 if (dest && dest < dest_end) in ff_parse_key_value()
549 if (dest && dest < dest_end) in ff_parse_key_value()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-glyf-table.hh578 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes()
583 dest_end = bytes.sub_array (glyph_length, bytes.length - glyph_length); in drop_hints_bytes()
754 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes()
758 case SIMPLE: SimpleGlyph (*header, bytes).drop_hints_bytes (dest_start, dest_end); return; in drop_hints_bytes()
1269 hb_bytes_t dest_end; /* region of source_glyph to copy second */ member
1277 dest_glyph = hb_bytes_t (&dest_glyph, dest_glyph.length + dest_end.copy (c).length); in serialize()
1309 { source_glyph.drop_hints_bytes (dest_start, dest_end); } in drop_hints_bytes()
1311 unsigned int length () const { return dest_start.length + dest_end.length; } in length()
/third_party/ntfs-3g/libntfs-3g/
Dcompress.c476 u8 *dest_end = dest + dest_size; /* End of dest buffer. */ in ntfs_decompress() local
493 if (cb == cb_end || !le16_to_cpup((le16*)cb) || dest == dest_end) { in ntfs_decompress()
494 if (dest_end > dest) in ntfs_decompress()
495 memset(dest, 0, dest_end - dest); in ntfs_decompress()
503 if (dest_sb_end > dest_end) in ntfs_decompress()