Home
last modified time | relevance | path

Searched refs:dst_start (Results 1 – 25 of 30) sorted by relevance

12

/third_party/boost/libs/date_time/test/posix_time/
Dtestlocal_adjustor.cpp19 date dst_start(2002,Apr, 7); in main() local
58 ptime l_not_dst(dst_start, time_duration(1,59,59)); //2002-Apr-07 01:59:59 in main()
61 ptime u_not_dst(dst_start, time_duration(6,59,59)); in main()
64 ptime l_in_dst(dst_start, hours(3)); //2002-Apr-07 03:00:00 1st sec of dst in main()
67 ptime u_in_dst(dst_start, hours(7)); in main()
161 check("dst start", lta::local_dst_start_day(2002) == dst_start); in main()
163 check("dst boundary", lta::is_dst_boundary_day(dst_start)); in main()
Dtestdst_rules.cpp59 date dst_start(2002,Apr, 7); in main() local
62 ptime t3a(dst_start, time_duration(2,0,0)); //invalid time label in main()
63 ptime t3b(dst_start, time_duration(2,59,59)); //invalid time label in main()
64 ptime t4(dst_start, time_duration(1,59,59)); //not ds in main()
65 ptime t5(dst_start, time_duration(3,0,0)); //always dst in main()
71 check("dst start", us_dst_local::local_dst_start_day(2002) == dst_start); in main()
73 check("dst boundary", us_dst_local::is_dst_boundary_day(dst_start)); in main()
194 check("dst start", us_dst_calc2::local_dst_start_day(2002) == dst_start); in main()
197 check("dst boundary", us_dst_calc2::is_dst_boundary_day(dst_start)); in main()
/third_party/ffmpeg/libavcodec/
Dmvcdec.c61 uint8_t *dst_start, int width, int height, int linesize) in decode_mvc1() argument
93 dst = dst_start + (y + row) * linesize + x * 2; \ in decode_mvc1()
121 dst = dst_start + (y + row) * linesize + x * 4; \
134 uint8_t *dst_start, int width, int height, in decode_mvc2() argument
163 dst_start += (height - 1) * linesize; in decode_mvc2()
173 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2()
183 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2()
192 set_4x4_block(dst_start + y * linesize + x * 4, linesize, in decode_mvc2()
Dmidivid.c156 uint8_t *dst_start = dst; in lzss_uncompress() local
170 dst - offset < dst_start) in lzss_uncompress()
187 return dst - dst_start; in lzss_uncompress()
Dpcxenc.c62 const uint8_t *dst_start = dst; in pcx_rle_encode() local
95 return dst - dst_start; in pcx_rle_encode()
Ddsicinvideo.c133 unsigned char *dst_end = dst + dst_size, *dst_start = dst; in cin_decode_lzss() local
145 if ((int)(dst - dst_start) < offset + 1) in cin_decode_lzss()
Deatgv.c78 uint8_t *dst_start = dst; in unpack() local
132 if (dst - dst_start < offset) in unpack()
Dvideotoolboxenc.c1633 uint8_t* dst_start; in copy_emulation_prev() local
1646 dst_start = dst; in copy_emulation_prev()
1668 wrote_bytes = dst - dst_start; in copy_emulation_prev()
/third_party/boost/boost/date_time/
Ddst_rules.hpp228 date_type dst_start = local_dst_start_day(y); in local_is_dst() local
231 dst_start, in local_is_dst()
296 date_type dst_start = local_dst_start_day(y); in local_is_dst() local
299 dst_start,dst_start_offset_minutes, in local_is_dst()
Ddst_transition_generators.hpp44 day_calc_dst_rule(start_rule dst_start, in day_calc_dst_rule() argument
46 dst_start_(dst_start), in day_calc_dst_rule()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_delay.c229 unsigned dst_start = post_ra_reg_num(dst) * reg_elem_size(dst); in delay_calc_srcn_postra() local
230 unsigned dst_end = dst_start + post_ra_reg_elems(dst) * reg_elem_size(dst); in delay_calc_srcn_postra()
232 if (dst_start >= src_end || src_start >= dst_end) in delay_calc_srcn_postra()
265 unsigned first_num = MAX2(src_start, dst_start) / reg_elem_size(dst); in delay_calc_srcn_postra()
/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_register_coalesce.cpp107 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()
Dbrw_vec4.cpp2282 unsigned dst_start = inst->dst.offset; in dst_src_regions_overlap() local
2283 unsigned dst_end = dst_start + inst->size_written - 1; in dst_src_regions_overlap()
2295 if ((dst_start >= src_start && dst_start <= src_end) || in dst_src_regions_overlap()
2297 (dst_start <= src_start && dst_end >= src_end)) { in dst_src_regions_overlap()
/third_party/mesa3d/src/amd/vulkan/
Dradv_meta_blit.c508 unsigned dst_start, dst_end; in blit_image() local
511 dst_start = region->dstOffsets[0].z; in blit_image()
514 dst_start = dst_res->baseArrayLayer; in blit_image()
515 dst_end = dst_start + dst_res->layerCount; in blit_image()
528 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end); in blit_image()
529 float src_z_step = (float)(src_end - src_start) / (float)(dst_end - dst_start); in blit_image()
535 depth_center_offset = 0.5 / (dst_end - dst_start) * (src_end - src_start); in blit_image()
559 const unsigned num_layers = dst_end - dst_start; in blit_image()
582 const uint32_t dst_array_slice = dst_start + i; in blit_image()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_dx9.cpp322 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/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h117 PosixTransition dst_start; member
Dtime_zone_posix.cc150 p = ParseDateTime(p, &res->dst_start); in ParsePosixSpec()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
Dtime_zone_posix.h117 PosixTransition dst_start; member
Dtime_zone_posix.cc150 p = ParseDateTime(p, &res->dst_start); in ParsePosixSpec()
/third_party/gstreamer/gstplugins_good/ext/dv/
Dgstdvdemux.c840 GstFormat dst_format, gint64 * dst_start, gint64 * dst_stop) in gst_dvdemux_convert_src_pair() argument
847 src_format, src_start, dst_format, dst_start))) { in gst_dvdemux_convert_src_pair()
850 GST_INFO ("Finished conversion of start: %" G_GINT64_FORMAT, *dst_start); in gst_dvdemux_convert_src_pair()
868 GstFormat dst_format, gint64 * dst_start, gint64 * dst_stop) in gst_dvdemux_convert_sink_pair() argument
875 src_format, src_start, dst_format, dst_start))) { in gst_dvdemux_convert_sink_pair()
878 GST_INFO ("Finished conversion of start: %" G_GINT64_FORMAT, *dst_start); in gst_dvdemux_convert_sink_pair()
898 GstFormat dst_format, gint64 * dst_start, gint64 * dst_stop) in gst_dvdemux_convert_src_to_sink() argument
906 src_format, src_start, src_stop, conv, dst_start, dst_stop))) { in gst_dvdemux_convert_src_to_sink()
912 conv, *dst_start, *dst_stop, dst_format, dst_start, dst_stop))) { in gst_dvdemux_convert_src_to_sink()
/third_party/mesa3d/src/intel/vulkan/
Danv_blorp.c718 unsigned dst_start, dst_end; in blit_image() local
721 dst_start = region->dstOffsets[0].z; in blit_image()
724 dst_start = dst_res->baseArrayLayer; in blit_image()
725 dst_end = dst_start + in blit_image()
740 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end); in blit_image()
741 const unsigned num_layers = dst_end - dst_start; in blit_image()
772 dst_start, num_layers); in blit_image()
775 unsigned dst_z = dst_start + i; in blit_image()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/
Ddeconv_winograd_fp32.c603 float *dst_start = nc4hw4_output + h_start * conv_param->output_w_ * C4NUM + w_start * C4NUM; in DeconvWgPost() local
613 float *dst = dst_start + (hi * conv_param->output_w_ + wi) * C4NUM; in DeconvWgPost()
/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
215 *dst_start = start; in gst_rtp_ulpfec_enc_stream_ctx_get_protection_parameters()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp16/
Ddeconv_winograd_fp16.c422 … float16_t *dst_start = nc4hw4_output + h_start * conv_param->output_w_ * C4NUM + w_start * C4NUM; in DeconvWgPostFp16() local
432 float16_t *dst = dst_start + (hi * conv_param->output_w_ + wi) * C4NUM; in DeconvWgPostFp16()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/lite_cv/
Dimage_process.cc884 uint32_t dst_start = h * dst.width_; in Split() local
887 uint32_t dst_index = dst_start + w; in Split()
902 uint32_t dst_start = h * dst.width_; in Split() local
905 uint32_t dst_index = dst_start + w; in Split()

12