Home
last modified time | relevance | path

Searched refs:dst_end (Results 1 – 25 of 29) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
Ddsicinvideo.c99 unsigned char *dst_end = dst + dst_size; in cin_decode_huffman() local
113 if (dst_cur >= dst_end) in cin_decode_huffman()
121 if (dst_cur >= dst_end) in cin_decode_huffman()
133 unsigned char *dst_end = dst + dst_size, *dst_start = dst; 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()
151 sz = FFMIN(sz, dst_end - dst); in cin_decode_lzss()
160 if (dst_end - dst > dst_size - dst_size/10) in cin_decode_lzss()
170 unsigned char *dst_end = dst + dst_size; in cin_decode_rle() local
173 while (src + 1 < src_end && dst < dst_end) { in cin_decode_rle()
[all …]
Danm.c75 static inline int op(uint8_t **dst, const uint8_t *dst_end, in op() argument
97 if (*dst >= dst_end) goto exhausted; in op()
99 if (*dst <= dst_end) goto exhausted; in op()
116 uint8_t *dst, *dst_end; in decode_frame() local
126 dst_end = s->frame->data[0] + s->frame->linesize[0]*avctx->height; in decode_frame()
143 op(&dst, dst_end, (gb), (pixel), (count), &x, avctx->width, s->frame->linesize[0]) in decode_frame()
Dbmvvideo.c62 uint8_t *dst, *dst_end; in decode_bmv_frame() local
76 dst_end = frame_end; in decode_bmv_frame()
80 dst_end = frame - 1; in decode_bmv_frame()
143 if (len <= 0 || FFABS(dst_end - dst) < len) in decode_bmv_frame()
193 if (dst == dst_end) in decode_bmv_frame()
Dmidivid.c157 uint8_t *dst_end = dst + size; in lzss_uncompress() local
169 if (dst + length > dst_end || in lzss_uncompress()
179 if (dst >= dst_end) in lzss_uncompress()
Deatgv.c76 uint8_t *dst_end = dst + width*height; in unpack() local
125 run = FFMIN(size1, dst_end - dst); in unpack()
135 run = FFMIN(size2, dst_end - dst); in unpack()
Dxxan.c90 const uint8_t *dst_end = dst + dst_size; in xan_unpack_luma() local
111 if (dst > dst_end) in xan_unpack_luma()
122 return dst != dst_end ? AVERROR_INVALIDDATA : 0; in xan_unpack_luma()
Dvideotoolboxenc.c1634 uint8_t* dst_end = dst + dst_size; in copy_emulation_prev() local
1651 if (dst < dst_end) in copy_emulation_prev()
1659 if (dst < dst_end) in copy_emulation_prev()
1670 if (dst > dst_end) in copy_emulation_prev()
Dbink.c507 int16_t *dst_end = (int16_t*)b->data_end; in read_dcs() local
517 if (dst_end - dst < 1) in read_dcs()
523 if (dst_end - dst < len2) in read_dcs()
/third_party/ffmpeg/libavfilter/
Daf_atempo.c150 uint8_t *dst_end; member
216 atempo->dst_end = NULL; in yae_clear()
733 scalar_type *out_end = (scalar_type *)dst_end; \
766 uint8_t *dst_end) in yae_overlap_add() argument
823 uint8_t *dst_end) in yae_apply() argument
875 if (yae_overlap_add(atempo, dst_ref, dst_end) != 0) { in yae_apply()
895 uint8_t *dst_end) in yae_flush() argument
947 if (yae_overlap_add(atempo, dst_ref, dst_end) != 0) { in yae_flush()
968 dst_size = dst_end - dst; in yae_flush()
1069 atempo->dst_end = NULL; in push_samples()
[all …]
/third_party/harfbuzz/src/
Dhb-ot-name.cc86 const typename out_utf_t::codepoint_t *dst_end = text + *text_size; in hb_ot_name_convert_utf() local
88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf()
91 typename out_utf_t::codepoint_t *dst_next = out_utf_t::encode (dst, dst_end, unicode); in hb_ot_name_convert_utf()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-name.cc86 const typename out_utf_t::codepoint_t *dst_end = text + *text_size; in hb_ot_name_convert_utf() local
88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf()
91 typename out_utf_t::codepoint_t *dst_next = out_utf_t::encode (dst, dst_end, unicode); in hb_ot_name_convert_utf()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-name.cc90 const typename out_utf_t::codepoint_t *dst_end = text + *text_size; in hb_ot_name_convert_utf() local
92 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf()
95 typename out_utf_t::codepoint_t *dst_next = out_utf_t::encode (dst, dst_end, unicode); in hb_ot_name_convert_utf()
/third_party/ffmpeg/libswresample/x86/
Dresample.asm279 src, dst_end, filter_bank
286 dst, dst_end, filter_bank
331 dst_incr_div, src_incr, src, dst_end, filter_bank
338 dst_incr_div, src_incr, dst, dst_end, filter_bank
525 dst_incr_div, src_incr, src, dst_end, filter_bank
529 dst_incr_div, src_incr, dst, dst_end, filter_bank
553 dst_incr_div, src_incr, src, dst_end, filter_bank
557 dst_incr_div, src_incr, dst, dst_end, filter_bank
/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_register_coalesce.cpp108 int dst_end = live.end[dst_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()
Dbrw_vec4.cpp1934 unsigned dst_end = dst_start + inst->size_written - 1; in dst_src_regions_overlap() local
1947 (dst_end >= src_start && dst_end <= src_end) || in dst_src_regions_overlap()
1948 (dst_start <= src_start && dst_end >= src_end)) { in dst_src_regions_overlap()
/third_party/cmsis/CMSIS/DSP/Include/dsp/
Dfiltering_functions.h2195 int32_t* dst_end; in arm_circularRead_f32() local
2200 dst_end = dst_base + dst_length; in arm_circularRead_f32()
2213 if (dst == dst_end) in arm_circularRead_f32()
2295 q15_t* dst_end; in arm_circularRead_q15() local
2301 dst_end = dst_base + dst_length; in arm_circularRead_q15()
2314 if (dst == dst_end) in arm_circularRead_q15()
2396 q7_t* dst_end; in arm_circularRead_q7() local
2402 dst_end = dst_base + dst_length; in arm_circularRead_q7()
2415 if (dst == dst_end) in arm_circularRead_q7()
/third_party/mesa3d/src/amd/vulkan/
Dradv_meta_blit.c495 unsigned dst_start, dst_end; in blit_image() local
499 dst_end = region->dstOffsets[1].z; in blit_image()
502 dst_end = dst_start + dst_res->layerCount; in blit_image()
515 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end); in blit_image()
516 float src_z_step = (float)(src_end - src_start) / (float)(dst_end - dst_start); in blit_image()
522 depth_center_offset = 0.5 / (dst_end - dst_start) * (src_end - src_start); in blit_image()
546 const unsigned num_layers = dst_end - dst_start; in blit_image()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_delay.c233 unsigned dst_end = dst_start + post_ra_reg_elems(dst) * reg_elem_size(dst); in delay_calc_srcn() local
235 if (dst_start >= src_end || src_start >= dst_end) in delay_calc_srcn()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h118 PosixTransition dst_end; member
Dtime_zone_posix.cc151 p = ParseDateTime(p, &res->dst_end); in ParsePosixSpec()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DGCOV.h360 EdgeIterator dst_end() const { return DstEdges.end(); } in dst_end() function
362 return make_range(dst_begin(), dst_end()); in dsts()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_dx9.cpp323 …mU32* src = (ImU32*)pixels, *dst = dst_start, *dst_end = dst_start + (size_t)width * height; dst <… in ImGui_ImplDX9_CreateFontsTexture() local
/third_party/mesa3d/src/intel/vulkan/
Danv_blorp.c687 unsigned dst_start, dst_end; in blit_image() local
691 dst_end = region->dstOffsets[1].z; in blit_image()
694 dst_end = dst_start + in blit_image()
709 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end); in blit_image()
710 const unsigned num_layers = dst_end - dst_start; in blit_image()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpulpfecenc.c183 guint * dst_start, guint * dst_end) in gst_rtp_ulpfec_enc_stream_ctx_get_protection_parameters() argument
216 *dst_end = end; in gst_rtp_ulpfec_enc_stream_ctx_get_protection_parameters()
/third_party/skia/third_party/externals/brotli/c/dec/
Ddecode.c1959 int dst_end = pos + i; in ProcessCommandsInternal() local
1969 if (src_end > pos && dst_end > src_start) { in ProcessCommandsInternal()
1973 if (dst_end >= s->ringbuffer_size || src_end >= s->ringbuffer_size) { in ProcessCommandsInternal()

12