/third_party/ffmpeg/libavcodec/ |
D | mvcdec.c | 64 uint8_t *dst_start, int width, int height, int linesize) in decode_mvc1() argument 96 dst = dst_start + (y + row) * linesize + x * 2; \ in decode_mvc1() 124 dst = dst_start + (y + row) * linesize + x * 4; \ 137 uint8_t *dst_start, int width, int height, in decode_mvc2() argument 166 dst_start += (height - 1) * linesize; in decode_mvc2() 176 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2() 186 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2() 195 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2()
|
D | midivid.c | 157 uint8_t *dst_start = dst; in lzss_uncompress() local 171 dst - offset < dst_start) in lzss_uncompress() 188 return dst - dst_start; in lzss_uncompress()
|
D | pcxenc.c | 51 const uint8_t *dst_start = dst; in pcx_rle_encode() local 84 return dst - dst_start; in pcx_rle_encode()
|
D | dsicinvideo.c | 134 unsigned char *dst_end = dst + dst_size, *dst_start = dst; in cin_decode_lzss() local 146 if ((int)(dst - dst_start) < offset + 1) in cin_decode_lzss()
|
D | eatgv.c | 79 uint8_t *dst_start = dst; in unpack() local 133 if (dst - dst_start < offset) in unpack()
|
D | videotoolboxenc.c | 1691 uint8_t* dst_start; in copy_emulation_prev() local 1704 dst_start = dst; in copy_emulation_prev() 1726 wrote_bytes = dst - dst_start; in copy_emulation_prev()
|
D | g2meet.c | 210 uint8_t *dst_start = dst; in jpg_unescape() local 220 *dst_size = dst - dst_start; in jpg_unescape()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_delay.c | 143 unsigned dst_start = post_ra_reg_num(dst) * reg_elem_size(dst); in ir3_delayslots_with_repeat() local 173 unsigned first_num = MAX2(src_start, dst_start) / reg_elem_size(dst); in ir3_delayslots_with_repeat() 232 unsigned dst_start = post_ra_reg_num(dst) * reg_elem_size(dst); in delay_calc_srcn() local 233 unsigned dst_end = dst_start + post_ra_reg_elems(dst) * reg_elem_size(dst); in delay_calc_srcn() 235 if (dst_start >= src_end || src_start >= dst_end) in delay_calc_srcn()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_fs_register_coalesce.cpp | 107 int dst_start = live.start[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() 120 int start_ip = MAX2(dst_start, src_start); in can_coalesce_vars()
|
D | brw_vec4.cpp | 1933 unsigned dst_start = inst->dst.offset; in dst_src_regions_overlap() local 1934 unsigned dst_end = dst_start + inst->size_written - 1; in dst_src_regions_overlap() 1946 if ((dst_start >= src_start && dst_start <= src_end) || in dst_src_regions_overlap() 1948 (dst_start <= src_start && dst_end >= src_end)) { in dst_src_regions_overlap()
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_blit.c | 495 unsigned dst_start, dst_end; in blit_image() local 498 dst_start = region->dstOffsets[0].z; in blit_image() 501 dst_start = dst_res->baseArrayLayer; 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() 569 const uint32_t dst_array_slice = dst_start + i; in blit_image()
|
/third_party/node/deps/v8/src/utils/ |
D | memcopy.h | 281 Address dst_start = reinterpret_cast<Address>(dst); in CopyChars() local 282 Address dst_end = dst_start + count * sizeof(DstType); in CopyChars() 283 DCHECK(src_end <= dst_start || dst_end <= src_start); in CopyChars()
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_dx9.cpp | 322 ImU32* dst_start = (ImU32*)ImGui::MemAlloc((size_t)width * height * bytes_per_pixel); in ImGui_ImplDX9_CreateFontsTexture() local 323 …for (ImU32* src = (ImU32*)pixels, *dst = dst_start, *dst_end = dst_start + (size_t)width * height;… in ImGui_ImplDX9_CreateFontsTexture() 325 pixels = (unsigned char*)dst_start; in ImGui_ImplDX9_CreateFontsTexture()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_posix.h | 117 PosixTransition dst_start; member
|
D | time_zone_posix.cc | 150 p = ParseDateTime(p, &res->dst_start); in ParsePosixSpec()
|
D | time_zone_info.cc | 372 auto dst_trans_off = TransOffset(leap_year, jan1_weekday, posix.dst_start); in ExtendTransitions()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_blorp.c | 687 unsigned dst_start, dst_end; in blit_image() local 690 dst_start = region->dstOffsets[0].z; in blit_image() 693 dst_start = dst_res->baseArrayLayer; 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() 741 dst_start, num_layers); in blit_image() 744 unsigned dst_z = dst_start + i; in blit_image()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm.c | 3355 const snd_pcm_channel_area_t *dst_start = dst_areas; in snd_pcm_areas_copy() local 3373 src_start->addr != dst_start->addr || in snd_pcm_areas_copy() 3374 src_start->first != dst_start->first) { in snd_pcm_areas_copy() 3380 d.addr = dst_start->addr; in snd_pcm_areas_copy() 3381 d.first = dst_start->first; in snd_pcm_areas_copy() 3389 snd_pcm_area_copy(dst_start, dst_offset, in snd_pcm_areas_copy() 3393 dst_areas = dst_start + 1; in snd_pcm_areas_copy()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dv_meta_copy.c | 1136 const VkOffset3D dst_start = { in copy_image_blit() local 1142 dst_start.x + region->extent.width * src_scale_w, in copy_image_blit() 1143 dst_start.y + region->extent.height * src_scale_h, in copy_image_blit() 1144 dst_start.z + region->extent.depth, in copy_image_blit() 1152 .dstOffsets = { dst_start, dst_end }, in copy_image_blit()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 66049 dma_addr_t dst_start; member
|