Searched refs:dest_end (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | xan.c | 121 uint8_t *dest_end = dest + dest_len; in xan_huffman_decode() local 139 if (dest >= dest_end) in xan_huffman_decode() 160 uint8_t *dest_end = dest + dest_len; in xan_unpack() local 164 while (dest < dest_end && bytestream2_get_bytes_left(&ctx)) { in xan_unpack() 186 if (dest_end - dest < size + size2 || in xan_unpack() 198 if (dest_end - dest < size || bytestream2_get_bytes_left(&ctx) < size) in xan_unpack()
|
D | xxan.c | 132 const uint8_t *dest_end = dest + dest_len; in xan_unpack() local 134 while (dest < dest_end) { in xan_unpack() 154 if (size + size2 > dest_end - dest) in xan_unpack() 157 if (dest + size + size2 > dest_end || in xan_unpack() 168 if (dest_end - dest < size) in xan_unpack()
|
D | vmdvideo.c | 144 unsigned char *dest_end = dest + dest_len; in rle_unpack() local 163 if (dest_end - pd < l || bytestream2_get_bytes_left(&gb) < l) in rle_unpack() 168 if (dest_end - pd < 2*l || bytestream2_get_bytes_left(&gb) < 2) in rle_unpack()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-glyf-table.hh | 635 hb_bytes_t dest_end; // region of source_glyph to copy second member 644 dest_glyph = hb_bytes_t (&dest_glyph, dest_glyph.length + dest_end.copy(c).length); in serialize() 692 dest_end = hb_bytes_t (&source_glyph + dest_start.length + instruction_length, in drop_hints() 694 …n_len %d end len %d", source_glyph.length, dest_start.length, instruction_length, dest_end.length); in drop_hints() 700 return dest_start.length + dest_end.length; in length()
|
/third_party/harfbuzz/src/ |
D | hb-ot-glyf-table.hh | 548 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes() 553 dest_end = bytes.sub_array (glyph_length, bytes.length - glyph_length); in drop_hints_bytes() 698 void drop_hints_bytes (hb_bytes_t &dest_start, hb_bytes_t &dest_end) const in drop_hints_bytes() 702 case SIMPLE: SimpleGlyph (*header, bytes).drop_hints_bytes (dest_start, dest_end); return; in drop_hints_bytes() 1203 hb_bytes_t dest_end; /* region of source_glyph to copy second */ member 1211 dest_glyph = hb_bytes_t (&dest_glyph, dest_glyph.length + dest_end.copy (c).length); in serialize() 1239 { source_glyph.drop_hints_bytes (dest_start, dest_end); } in drop_hints_bytes() 1241 unsigned int length () const { return dest_start.length + dest_end.length; } in length()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-glyf-table.hh | 578 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/ |
D | compress.c | 476 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()
|
/third_party/ffmpeg/libavformat/ |
D | utils.c | 5019 char *dest = NULL, *dest_end; local 5036 dest_end = dest + dest_len - 1; 5044 if (dest && dest < dest_end) 5048 if (dest && dest < dest_end) 5057 if (dest && dest < dest_end)
|