/third_party/ffmpeg/tests/checkasm/ |
D | pixblockdsp.c | 55 int dst_offset = i * 64; /* dst must be aligned */ \ 57 call_ref(dst0 + dst_offset, src10 + src_offset, 8); \ 58 call_new(dst1 + dst_offset, src11 + src_offset, 8); \ 61 bench_new(dst1 + dst_offset, src11 + src_offset, 8); \ 72 int dst_offset = i * 64; /* dst must be aligned */ \ 74 call_ref(dst0 + dst_offset, src10 + src_offset, src20 + src_offset, 8); \ 75 call_new(dst1 + dst_offset, src11 + src_offset, src21 + src_offset, 8); \ 78 bench_new(dst1 + dst_offset, src11 + src_offset, src21 + src_offset, 8); \
|
/third_party/boost/boost/date_time/local_time/ |
D | custom_time_zone.hpp | 93 virtual time_duration_type dst_offset() const in dst_offset() function in boost::local_time::custom_time_zone_base 124 if(dst_offset().is_negative()) { in to_posix_string() 126 ss << '-' << std::setw(2) << dst_offset().invert_sign().hours(); in to_posix_string() 129 ss << '+' << std::setw(2) << dst_offset().hours(); in to_posix_string() 131 if(dst_offset().minutes() != 0 || dst_offset().seconds() != 0) { in to_posix_string() 132 ss << ':' << std::setw(2) << dst_offset().minutes(); in to_posix_string() 133 if(dst_offset().seconds() != 0) { in to_posix_string() 134 ss << ':' << std::setw(2) << dst_offset().seconds(); in to_posix_string()
|
D | posix_time_zone.hpp | 177 virtual time_duration_type dst_offset()const in dst_offset() function in boost::local_time::posix_time_zone_base 209 if(dst_offset().is_negative()) { in to_posix_string() 211 ss << '-' << std::setw(2) << dst_offset().invert_sign().hours(); in to_posix_string() 214 ss << '+' << std::setw(2) << dst_offset().hours(); in to_posix_string() 216 if(dst_offset().minutes() != 0 || dst_offset().seconds() != 0) { in to_posix_string() 217 ss << ':' << std::setw(2) << dst_offset().minutes(); in to_posix_string() 218 if(dst_offset().seconds() != 0) { in to_posix_string() 219 ss << ':' << std::setw(2) << dst_offset().seconds(); in to_posix_string()
|
D | local_date_time.hpp | 203 tz->dst_offset() in check_dst() 248 if(lt + zone_->dst_offset() < zone_->dst_local_end_time(lt.date().year())) { in is_dst() 272 lt += zone_->dst_offset(); in local_time() 297 lt += zone_->dst_offset(); in to_string() 333 td += zone_->dst_offset(); in zone_name() 367 td += zone_->dst_offset(); in zone_abbrev() 492 t -= z->dst_offset(); in construction_adjustment()
|
/third_party/boost/libs/date_time/test/local_time/ |
D | testlocal_time_iterator.cpp | 49 time_duration dst_offset(1,59,59); in main() local 50 local_date_time start(d, dst_offset, ny_tz, false); in main() 54 local_date_time(d,dst_offset, ny_tz, false), in main() 74 { local_date_time(d,dst_offset, ny_tz, false), in main() 75 local_date_time(d,dst_offset+hours(2), ny_tz, true), in main() 76 local_date_time(d,dst_offset+hours(3), ny_tz, true), in main() 77 local_date_time(d,dst_offset+hours(4), ny_tz, true) in main()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pt_fetch.c | 63 unsigned dst_offset = 0; in draw_pt_fetch_prepare() local 72 dst_offset = offsetof(struct vertex_header, data); in draw_pt_fetch_prepare() 87 key.element[nr].output_offset = dst_offset; in draw_pt_fetch_prepare() 89 dst_offset += sizeof(uint); in draw_pt_fetch_prepare() 97 key.element[nr].output_offset = dst_offset; in draw_pt_fetch_prepare() 100 dst_offset += 4 * sizeof(int); in draw_pt_fetch_prepare() 108 key.element[nr].output_offset = dst_offset; in draw_pt_fetch_prepare() 111 dst_offset += 4 * sizeof(unsigned); in draw_pt_fetch_prepare() 119 key.element[nr].output_offset = dst_offset; in draw_pt_fetch_prepare() 122 dst_offset += 4 * sizeof(float); in draw_pt_fetch_prepare() [all …]
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | evergreen_hw_context.c | 34 uint64_t dst_offset, in evergreen_dma_copy_buffer() argument 46 util_range_add(&rdst->b.b, &rdst->valid_buffer_range, dst_offset, in evergreen_dma_copy_buffer() 47 dst_offset + size); in evergreen_dma_copy_buffer() 49 dst_offset += rdst->gpu_address; in evergreen_dma_copy_buffer() 53 if (!(dst_offset % 4) && !(src_offset % 4) && !(size % 4)) { in evergreen_dma_copy_buffer() 70 radeon_emit(cs, dst_offset & 0xffffffff); in evergreen_dma_copy_buffer() 72 radeon_emit(cs, (dst_offset >> 32UL) & 0xff); in evergreen_dma_copy_buffer() 74 dst_offset += csize << shift; in evergreen_dma_copy_buffer()
|
D | r600_hw_context.c | 501 struct pipe_resource *dst, uint64_t dst_offset, in r600_cp_dma_copy_buffer() argument 513 util_range_add(dst, &r600_resource(dst)->valid_buffer_range, dst_offset, in r600_cp_dma_copy_buffer() 514 dst_offset + size); in r600_cp_dma_copy_buffer() 516 dst_offset += r600_resource(dst)->gpu_address; in r600_cp_dma_copy_buffer() 553 radeon_emit(cs, dst_offset); /* DST_ADDR_LO [31:0] */ in r600_cp_dma_copy_buffer() 554 radeon_emit(cs, (dst_offset >> 32) & 0xff); /* DST_ADDR_HI [7:0] */ in r600_cp_dma_copy_buffer() 564 dst_offset += byte_count; in r600_cp_dma_copy_buffer() 583 uint64_t dst_offset, in r600_dma_copy_buffer() argument 595 util_range_add(&rdst->b.b, &rdst->valid_buffer_range, dst_offset, in r600_dma_copy_buffer() 596 dst_offset + size); in r600_dma_copy_buffer() [all …]
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_plugin.h | 104 void snd_pcm_linear_convert(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, 108 void snd_pcm_linear_getput(const snd_pcm_channel_area_t *dst_areas, snd_pcm_uframes_t dst_offset, 113 snd_pcm_uframes_t dst_offset, 119 snd_pcm_uframes_t dst_offset, 125 snd_pcm_uframes_t dst_offset, 131 snd_pcm_uframes_t dst_offset, 143 snd_pcm_uframes_t dst_offset, 150 snd_pcm_uframes_t dst_offset,
|
D | pcm_rate_linear.c | 45 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, 70 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, in linear_expand() argument 98 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in linear_expand() 141 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, in linear_expand_s16() argument 161 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in linear_expand_s16() 192 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, in linear_shrink() argument 221 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in linear_shrink() 262 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, in linear_shrink_s16() argument 283 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in linear_shrink_s16() 313 snd_pcm_uframes_t dst_offset, unsigned int dst_frames, in linear_convert() argument [all …]
|
D | pcm_route.c | 77 snd_pcm_uframes_t dst_offset, 113 snd_pcm_uframes_t dst_offset, in snd_pcm_route_convert1_zero() argument 121 snd_pcm_area_silence(dst_area, dst_offset, frames, params->dst_sfmt); in snd_pcm_route_convert1_zero() 127 snd_pcm_uframes_t dst_offset, in snd_pcm_route_convert1_one() argument 153 snd_pcm_route_convert1_zero(dst_area, dst_offset, in snd_pcm_route_convert1_one() 162 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in snd_pcm_route_convert1_one() 177 snd_pcm_uframes_t dst_offset, in snd_pcm_route_convert1_one_getput() argument 204 snd_pcm_route_convert1_zero(dst_area, dst_offset, in snd_pcm_route_convert1_one_getput() 214 dst = snd_pcm_channel_area_addr(dst_area, dst_offset); in snd_pcm_route_convert1_one_getput() 229 snd_pcm_uframes_t dst_offset, in snd_pcm_route_convert1_many() argument [all …]
|
/third_party/boost/boost/date_time/ |
D | local_time_adjustor.hpp | 63 return utc_offset_ + this->dst_offset(); in utc_offset() 116 …se is_in_dst: return utc_offset_rules::utc_to_local_base_offset() + dst_rules::dst_offset(); in utc_to_local_offset() 118 …e invalid_time_label:return utc_offset_rules::utc_to_local_base_offset() + dst_rules::dst_offset(); in utc_to_local_offset() 120 time_type retry = initial + dst_rules::dst_offset(); in utc_to_local_offset() 124 return utc_offset_rules::utc_to_local_base_offset() + dst_rules::dst_offset(); in utc_to_local_offset() 143 return utc_offset_rules::local_to_utc_base_offset() - dst_rules::dst_offset(); in local_to_utc_offset() 150 …case is_in_dst: return utc_offset_rules::local_to_utc_base_offset() - dst_rules::dst_offset(); in local_to_utc_offset()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_blit.c | 36 unsigned dst_offset, short x, short y, short w, short h, in i915_fill_blit() argument 42 dst_buffer, dst_pitch, dst_offset, x, y, w, h); in i915_fill_blit() 72 OUT_RELOC_FENCED(dst_buffer, I915_USAGE_2D_TARGET, dst_offset); in i915_fill_blit() 82 struct i915_winsys_buffer *dst_buffer, unsigned dst_offset, in i915_copy_blit() argument 94 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in i915_copy_blit() 135 OUT_RELOC_FENCED(dst_buffer, I915_USAGE_2D_TARGET, dst_offset); in i915_copy_blit()
|
D | i915_blit.h | 38 unsigned dst_offset, short srcx, short srcy, 44 unsigned dst_offset, short x, short y, short w,
|
/third_party/ffmpeg/libavcodec/ |
D | proresdsp.c | 42 int x, y, src_offset, dst_offset; in put_pixel() local 44 for (y = 0, dst_offset = 0; y < 8; y++, dst_offset += linesize) { in put_pixel() 49 dst[dst_offset + x] = CLIP_10(in[src_offset]); in put_pixel() 51 dst[dst_offset + x] = CLIP_12(in[src_offset]); in put_pixel()
|
D | bfi.c | 58 uint8_t *src, *dst_offset, colour1, colour2; in bfi_decode_frame() local 138 dst_offset = dst - offset; in bfi_decode_frame() 140 if (dst_offset < bfi->dst) in bfi_decode_frame() 143 *dst++ = *dst_offset++; in bfi_decode_frame()
|
/third_party/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_blit.c | 86 GLuint dst_offset, in emit_copy_blit() argument 102 if (dst_offset & 4095) in emit_copy_blit() 132 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in emit_copy_blit() 138 dst_pitch % 4 != 0 || dst_offset % cpp != 0) in emit_copy_blit() 188 dst_offset); in emit_copy_blit() 503 GLuint dst_offset, in intelEmitImmediateColorExpandBlit() argument 513 if (dst_offset & 4095) in intelEmitImmediateColorExpandBlit() 527 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords); in intelEmitImmediateColorExpandBlit() 552 dst_offset); in intelEmitImmediateColorExpandBlit() 576 unsigned int dst_offset, in intel_emit_linear_blit() argument [all …]
|
D | intel_pixel_read.c | 80 GLuint dst_offset; in do_blit_readpixels() local 114 dst_offset = (GLintptr)pixels; in do_blit_readpixels() 115 dst_offset += _mesa_image_offset(2, pack, width, height, in do_blit_readpixels() 135 dst_offset, in do_blit_readpixels()
|
/third_party/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_blit.c | 260 GLuint dst_offset, in emit_copy_blit() argument 294 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in emit_copy_blit() 324 if (!alignment_valid(brw, dst_offset, dst_tiling)) in emit_copy_blit() 333 dst_pitch % 4 != 0 || dst_offset % cpp != 0) in emit_copy_blit() 362 OUT_RELOC64(dst_buffer, RELOC_WRITE, dst_offset); in emit_copy_blit() 364 OUT_RELOC(dst_buffer, RELOC_WRITE, dst_offset); in emit_copy_blit() 430 uint64_t dst_offset; in emit_miptree_blit() local 434 &dst_offset, &dst_tile_x, &dst_tile_y); in emit_miptree_blit() 443 dst_mt->bo, dst_mt->offset + dst_offset, in emit_miptree_blit() 635 GLuint dst_offset, in brw_emit_immediate_color_expand_blit() argument [all …]
|
/third_party/ffmpeg/libavresample/ |
D | audio_data.c | 278 int ff_audio_data_combine(AudioData *dst, int dst_offset, AudioData *src, in ff_audio_data_combine() argument 290 if (dst_offset < 0 || dst_offset > dst->nb_samples || in ff_audio_data_combine() 293 src_offset, dst_offset); in ff_audio_data_combine() 316 dst_offset2 = dst_offset + nb_samples; in ff_audio_data_combine() 317 dst_move_size = dst->nb_samples - dst_offset; in ff_audio_data_combine() 322 dst->data[p] + dst_offset * dst->stride, in ff_audio_data_combine() 325 memcpy(dst->data[p] + dst_offset * dst->stride, in ff_audio_data_combine()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_cp_dma.c | 281 struct pipe_resource *src, uint64_t dst_offset, uint64_t src_offset, in si_cp_dma_copy_buffer() argument 295 if (dst != src || dst_offset != src_offset) { in si_cp_dma_copy_buffer() 299 util_range_add(dst, &si_resource(dst)->valid_buffer_range, dst_offset, dst_offset + size); in si_cp_dma_copy_buffer() 302 dst_offset += si_resource(dst)->gpu_address; in si_cp_dma_copy_buffer() 350 main_dst_offset = dst_offset + skipped_size; in si_cp_dma_copy_buffer() 375 si_emit_cp_dma(sctx, &sctx->gfx_cs, dst_offset, src_offset, skipped_size, dma_flags, in si_cp_dma_copy_buffer() 388 if (dst && src && (dst != src || dst_offset != src_offset)) in si_cp_dma_copy_buffer() 503 struct si_resource *dst, unsigned dst_offset, unsigned src_sel, in si_cp_copy_data() argument 514 uint64_t dst_va = (dst ? dst->gpu_address : 0ull) + dst_offset; in si_cp_copy_data()
|
D | si_compute_blit.c | 164 unsigned dst_offset, unsigned size, in si_compute_clear_buffer_rmw() argument 168 assert(dst_offset % 4 == 0); in si_compute_clear_buffer_rmw() 171 assert(dst->target != PIPE_BUFFER || dst_offset + size <= dst->width0); in si_compute_clear_buffer_rmw() 191 sb.buffer_offset = dst_offset; in si_compute_clear_buffer_rmw() 205 unsigned dst_offset, unsigned size, in si_compute_clear_12bytes_buffer() argument 211 assert(dst_offset % 4 == 0); in si_compute_clear_12bytes_buffer() 217 sb.buffer_offset = dst_offset; in si_compute_clear_12bytes_buffer() 240 unsigned dst_offset, struct pipe_resource *src, in si_compute_do_clear_or_copy() argument 246 assert(dst_offset % 4 == 0); in si_compute_do_clear_or_copy() 249 assert(dst->target != PIPE_BUFFER || dst_offset + size <= dst->width0); in si_compute_do_clear_or_copy() [all …]
|
/third_party/python/Lib/zoneinfo/ |
D | _zoneinfo.py | 433 self, std_abbr, std_offset, dst_abbr, dst_offset, start=None, end=None argument 435 self.dst_diff = dst_offset - std_offset 444 dst_offset = _load_timedelta(dst_offset) 446 self.dst = _ttinfo(utcoff=dst_offset, dstoff=delta, tzname=dst_abbr) 655 dst_offset = None 671 if dst_offset := m.group("dstoff"): 673 dst_offset = _parse_tz_delta(dst_offset) 677 dst_offset = std_offset + 3600 688 return _TZStr(std_abbr, std_offset, dst_abbr, dst_offset, start, end)
|
/third_party/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_pixel_read.c | 101 intptr_t dst_offset; in do_blit_readpixels() local 143 dst_offset = 0; in do_blit_readpixels() 148 dst_offset = (intptr_t)pixels; in do_blit_readpixels() 168 dst_offset, in do_blit_readpixels()
|
/third_party/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_pixel_read.c | 101 intptr_t dst_offset; in do_blit_readpixels() local 143 dst_offset = 0; in do_blit_readpixels() 148 dst_offset = (intptr_t)pixels; in do_blit_readpixels() 168 dst_offset, in do_blit_readpixels()
|