/third_party/ffmpeg/libavcodec/ |
D | tiertexseqv.c | 40 const unsigned char *src_end, in seq_unpack_rle_block() argument 48 init_get_bits(&gb, src, (src_end - src) * 8); in seq_unpack_rle_block() 62 if (src_end - src < 1) in seq_unpack_rle_block() 66 if (src_end - src < len) in seq_unpack_rle_block() 79 const unsigned char *src_end, in seq_decode_op1() argument 87 if (src_end - src < 1) in seq_decode_op1() 93 src = seq_unpack_rle_block(src, src_end, block, sizeof(block)); in seq_decode_op1() 100 src = seq_unpack_rle_block(src, src_end, block, sizeof(block)); in seq_decode_op1() 112 if (src_end - src < len + 8 * bits) in seq_decode_op1() 129 const unsigned char *src_end, in seq_decode_op2() argument [all …]
|
D | dsicinvideo.c | 100 const unsigned char *src_end = src + src_size; in cin_decode_huffman() local 105 while (src < src_end) { in cin_decode_huffman() 134 const unsigned char *src_end = src + src_size; in cin_decode_lzss() local 136 while (src < src_end && dst < dst_end) { in cin_decode_lzss() 138 for (i = 0; i < 8 && src < src_end && dst < dst_end; ++i) { in cin_decode_lzss() 171 const unsigned char *src_end = src + src_size; in cin_decode_rle() local 173 while (src + 1 < src_end && dst < dst_end) { in cin_decode_rle() 180 if (len > src_end-src) { in cin_decode_rle() 184 memcpy(dst, src, FFMIN3(len, dst_end - dst, src_end - src)); in cin_decode_rle()
|
D | sgirledec.c | 69 const uint8_t *src_end = src + src_size; in decode_sgirle8() local 81 while (src_end - src >= 2) { in decode_sgirle8() 96 int length = FFMIN3(v, width - x, src_end - src); in decode_sgirle8() 97 if (src_end - src < length || length <= 0) in decode_sgirle8()
|
D | yop.c | 44 uint8_t *src_end; member 136 if (s->src_end - s->srcptr < paint_lut[tag][3]) { in yop_paint_block() 216 s->src_end = avpkt->data + avpkt->size; in yop_decode_frame()
|
D | eatgv.c | 73 static int unpack(const uint8_t *src, const uint8_t *src_end, in unpack() argument 85 if (src_end - src < 3) in unpack() 90 while (size > 0 && src < src_end) { in unpack() 120 if (size1 > src_end - src) in unpack()
|
/third_party/boost/libs/iostreams/test/ |
D | symmetric_filter_test.cpp | 40 bool filter( const char*& src_begin, const char* src_end, in filter() 43 while ( can_read(src_begin, src_end) || in filter() 46 if (can_read(src_begin, src_end)) in filter() 47 read(src_begin, src_end); in filter() 55 void read(const char*& src_begin, const char* src_end) in read() 58 (std::min) ( src_end - src_begin, in read() 74 bool can_read(const char*& src_begin, const char* src_end) in can_read() 75 { return src_begin != src_end && buf_.eptr() != buf_.end(); } in can_read() 139 bool filter( const wchar_t*& src_begin, const wchar_t* src_end, in filter() 142 if(src_begin != src_end && dest_begin != dest_end) { in filter()
|
/third_party/harfbuzz/src/ |
D | hb-ot-name.cc | 76 const typename in_utf_t::codepoint_t *src_end = src + src_len; in hb_ot_name_convert_utf() local 88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf() 90 …const typename in_utf_t::codepoint_t *src_next = in_utf_t::next (src, src_end, &unicode, replaceme… in hb_ot_name_convert_utf() 105 while (src < src_end) in hb_ot_name_convert_utf() 107 src = in_utf_t::next (src, src_end, &unicode, replacement); in hb_ot_name_convert_utf()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-name.cc | 76 const typename in_utf_t::codepoint_t *src_end = src + src_len; in hb_ot_name_convert_utf() local 88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf() 90 …const typename in_utf_t::codepoint_t *src_next = in_utf_t::next (src, src_end, &unicode, replaceme… in hb_ot_name_convert_utf() 105 while (src < src_end) in hb_ot_name_convert_utf() 107 src = in_utf_t::next (src, src_end, &unicode, replacement); in hb_ot_name_convert_utf()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-name.cc | 80 const typename in_utf_t::codepoint_t *src_end = src + src_len; in hb_ot_name_convert_utf() local 92 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf() 94 …const typename in_utf_t::codepoint_t *src_next = in_utf_t::next (src, src_end, &unicode, replaceme… in hb_ot_name_convert_utf() 109 while (src < src_end) in hb_ot_name_convert_utf() 111 src = in_utf_t::next (src, src_end, &unicode, replacement); in hb_ot_name_convert_utf()
|
/third_party/boost/boost/iostreams/filter/ |
D | bzip2.hpp | 172 void before( const char*& src_begin, const char* src_end, 206 bool filter( const char*& src_begin, const char* src_end, 325 ( const char*& src_begin, const char* src_end, in filter() argument 330 before(src_begin, src_end, dest_begin, dest_end); in filter() 365 ( const char*& src_begin, const char* src_end, in filter() argument 371 if(src_begin == src_end) in filter() 378 before(src_begin, src_end, dest_begin, dest_end); in filter() 385 } while (eof_ && src_begin != src_end && dest_begin != dest_end); in filter()
|
D | zstd.hpp | 150 void before( const char*& src_begin, const char* src_end, 180 bool filter( const char*& src_begin, const char* src_end, 290 ( const char*& src_begin, const char* src_end, in filter() argument 293 before(src_begin, src_end, dest_begin, dest_end); in filter() 321 ( const char*& src_begin, const char* src_end, in filter() argument 324 before(src_begin, src_end, dest_begin, dest_end); in filter()
|
D | lzma.hpp | 163 void before( const char*& src_begin, const char* src_end, 191 bool filter( const char*& src_begin, const char* src_end, 301 ( const char*& src_begin, const char* src_end, in filter() argument 304 before(src_begin, src_end, dest_begin, dest_end); in filter() 333 ( const char*& src_begin, const char* src_end, in filter() argument 336 before(src_begin, src_end, dest_begin, dest_end); in filter()
|
D | zlib.hpp | 198 void before( const char*& src_begin, const char* src_end, 232 bool filter( const char*& src_begin, const char* src_end, 351 ( const char*& src_begin, const char* src_end, in filter() argument 354 before(src_begin, src_end, dest_begin, dest_end); in filter() 385 ( const char*& src_begin, const char* src_end, in filter() argument 388 before(src_begin, src_end, dest_begin, dest_end); in filter()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | fmtconvert_mips.c | 65 const int *src_end = src + len; in int32_to_float_fmul_scalar_mips() local 130 : [mul]"f"(mul), [src_end]"r"(src_end) in int32_to_float_fmul_scalar_mips()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | lossless.c | 309 const uint32_t* const src_end = src + width; in ColorSpaceInverseTransform_C() local 316 if (src < src_end) { // Left-overs using C-version. in ColorSpaceInverseTransform_C() 432 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB_C() local 433 while (src < src_end) { in VP8LConvertBGRAToRGB_C() 443 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA_C() local 444 while (src < src_end) { in VP8LConvertBGRAToRGBA_C() 455 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA4444_C() local 456 while (src < src_end) { in VP8LConvertBGRAToRGBA4444_C() 472 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB565_C() local 473 while (src < src_end) { in VP8LConvertBGRAToRGB565_C() [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | lossless.c | 304 const uint32_t* const src_end = src + width; in ColorSpaceInverseTransform_C() local 311 if (src < src_end) { // Left-overs using C-version. in ColorSpaceInverseTransform_C() 427 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB_C() local 428 while (src < src_end) { in VP8LConvertBGRAToRGB_C() 438 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA_C() local 439 while (src < src_end) { in VP8LConvertBGRAToRGBA_C() 450 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGBA4444_C() local 451 while (src < src_end) { in VP8LConvertBGRAToRGBA4444_C() 467 const uint32_t* const src_end = src + num_pixels; in VP8LConvertBGRAToRGB565_C() local 468 while (src < src_end) { in VP8LConvertBGRAToRGB565_C() [all …]
|
/third_party/boost/boost/gil/extension/numeric/ |
D | algorithm.hpp | 45 auto assign_pixels(SrcIterator src, SrcIterator src_end, DstIterator dst) -> DstIterator in assign_pixels() argument 47 for_each(src, src_end, dst, in assign_pixels() 53 return dst + (src_end - src); in assign_pixels() 139 SrcIterator src_end, in correlate_pixels_n() argument 157 while (src_begin != src_end) in correlate_pixels_n() 187 SrcIterator src_end, in correlate_pixels_k() argument 204 while (src_begin != src_end) in correlate_pixels_k()
|
/third_party/ffmpeg/libavutil/ |
D | aes_ctr.c | 113 const uint8_t* src_end = src + count; in av_aes_ctr_crypt() local 117 while (src < src_end) { in av_aes_ctr_crypt() 126 cur_end_pos = FFMIN(cur_end_pos, src_end); in av_aes_ctr_crypt()
|
/third_party/ffmpeg/libavfilter/ |
D | af_atempo.c | 348 const uint8_t *src_end = src + \ 355 for (; src < src_end; xdat++) { \ 365 for (; src < src_end; xdat++) { \ 426 const uint8_t *src_end, in yae_load_data() argument 440 while (atempo->position[0] < stop_here && src < src_end) { in yae_load_data() 441 int src_samples = (src_end - src) / atempo->stride; in yae_load_data() 501 const uint8_t *src_end) in yae_load_frag() argument 512 if (src_ref && yae_load_data(atempo, src_ref, src_end, stop_here) != 0) { in yae_load_frag() 821 const uint8_t *src_end, in yae_apply() argument 828 if (yae_load_frag(atempo, src_ref, src_end) != 0) { in yae_apply() [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_fs_register_coalesce.cpp | 110 int src_end = live.end[src_var]; in can_coalesce_vars() local 113 if ((dst_end > src_end && src_start < dst_start) || in can_coalesce_vars() 114 (src_end > dst_end && dst_start < src_start)) in can_coalesce_vars() 121 int end_ip = MIN2(dst_end, src_end); in can_coalesce_vars()
|
/third_party/boost/boost/graph/detail/ |
D | indexed_properties.hpp | 212 std::size_t src_begin, std::size_t src_end, std::size_t dest_begin) in move_range() argument 215 m_edge_properties.begin() + src_end, in move_range() 216 m_edge_properties.begin() + dest_begin + (src_end - src_begin)); in move_range()
|
/third_party/re2/util/ |
D | strutil.cc | 26 const char* src_end = src + src_len; in CEscapeString() local 29 for (; src < src_end; src++) { in CEscapeString()
|
/third_party/boost/libs/iostreams/src/ |
D | lzma.cpp | 90 void lzma_base::before( const char*& src_begin, const char* src_end, in before() argument 95 s->avail_in = static_cast<size_t>(src_end - src_begin); in before()
|
D | bzip2.cpp | 85 void bzip2_base::before( const char*& src_begin, const char* src_end, in before() argument 90 s->avail_in = static_cast<unsigned>(src_end - src_begin); in before()
|
/third_party/gstreamer/gstplugins_bad/gst/gaudieffects/ |
D | gstdilate.c | 280 guint32 *src_end = src + video_area; in transform() local 286 while (src != src_end) { in transform() 302 if (down >= src_end) { in transform()
|