/third_party/pcre2/pcre2/src/sljit/ |
D | sljitUtils.c | 206 …C_ATTRIBUTE sljit_u8 *SLJIT_FUNC sljit_stack_resize(struct sljit_stack *stack, sljit_u8 *new_start) in sljit_stack_resize() argument 208 if ((new_start < stack->min_start) || (new_start >= stack->end)) in sljit_stack_resize() 210 stack->start = new_start; in sljit_stack_resize() 211 return new_start; in sljit_stack_resize() 293 …C_ATTRIBUTE sljit_u8 *SLJIT_FUNC sljit_stack_resize(struct sljit_stack *stack, sljit_u8 *new_start) in sljit_stack_resize() argument 301 if ((new_start < stack->min_start) || (new_start >= stack->end)) in sljit_stack_resize() 307 aligned_new_start = (sljit_uw)new_start & ~page_align; in sljit_stack_resize() 320 if (stack->start < new_start) { in sljit_stack_resize() 323 aligned_new_start = (sljit_uw)new_start & ~page_align; in sljit_stack_resize() 335 stack->start = new_start; in sljit_stack_resize() [all …]
|
D | sljitLir.h | 1451 …_ATTRIBUTE sljit_u8 *SLJIT_FUNC sljit_stack_resize(struct sljit_stack *stack, sljit_u8 *new_start);
|
/third_party/gstreamer/gstplugins_bad/ext/fluidsynth/ |
D | gstfluiddec.c | 260 guint64 new_start, new_stop; 270 start, stop, &new_start, &new_stop)) { 275 if (start == new_start && stop == new_stop) 278 offset = new_start - start; 279 length = new_stop - new_start; 284 GST_BUFFER_OFFSET (buffer) = new_start; 287 gst_util_uint64_scale_int (new_start, GST_SECOND, FLUID_DEC_RATE);
|
/third_party/boost/boost/graph/ |
D | sloan_ordering.hpp | 120 bool new_start = true; in sloan_start_end_vertices() local 164 new_start = false; // Setting the loop repetition status to false in sloan_start_end_vertices() 238 new_start = true; in sloan_start_end_vertices() 248 } while (new_start); in sloan_start_end_vertices()
|
/third_party/boost/boost/container/ |
D | deque.hpp | 1766 iterator new_start = this->members_.m_start + n; in erase() local 1767 this->priv_destroy_range(this->members_.m_start, new_start); in erase() 1768 this->priv_destroy_nodes(this->members_.m_start.m_node, new_start.m_node); in erase() 1769 this->members_.m_start = new_start; in erase() 2011 const iterator new_start = this->priv_reserve_elements_at_front(n); in priv_insert_aux_impl() local 2014 proxy.uninitialized_copy_n_and_update(this->alloc(), new_start, n); in priv_insert_aux_impl() 2015 this->members_.m_start = new_start; in priv_insert_aux_impl() 2022 (this->alloc(), this->members_.m_start, start_n, new_start); in priv_insert_aux_impl() 2023 this->members_.m_start = new_start; in priv_insert_aux_impl() 2033 (this->alloc(), old_start, pos, new_start); in priv_insert_aux_impl() [all …]
|
D | vector.hpp | 2973 …(T* const new_start, size_type new_cap, T* const pos, const size_type n, InsertionProxy insert_ran… in priv_forward_range_insert_new_allocation() argument 2976 T *new_finish = new_start; in priv_forward_range_insert_new_allocation() 2979 …typename value_traits::ArrayDeallocator new_buffer_deallocator(new_start, this->m_holder.alloc(), … in priv_forward_range_insert_new_allocation() 2980 …typename value_traits::ArrayDestructor new_values_destroyer(new_start, this->m_holder.alloc(), 0u… in priv_forward_range_insert_new_allocation() 3006 this->m_holder.start(new_start); in priv_forward_range_insert_new_allocation() 3007 this->m_holder.m_size = size_type(new_finish - new_start); in priv_forward_range_insert_new_allocation() 3016 (T* const new_start, const size_type new_capacity, in priv_forward_range_insert_expand_backwards() argument 3027 const size_type s_before = static_cast<size_type>(old_start - new_start); in priv_forward_range_insert_expand_backwards() 3031 this->m_holder.start(new_start); in priv_forward_range_insert_expand_backwards() 3042 … ::boost::container::uninitialized_move_alloc(this->m_holder.alloc(), old_start, pos, new_start); in priv_forward_range_insert_expand_backwards() [all …]
|
D | string.hpp | 1796 pointer new_start = allocation_ret; in insert() local 1802 (const_iterator(old_start), p, new_start); in insert() 1804 (first, last, new_start + new_length); in insert() 1807 new_start + new_length); in insert() 1808 this->priv_construct_null(new_start + new_length); in insert() 1812 this->priv_long_addr(new_start); in insert() 1820 value_type * const newbuf = boost::movelib::to_raw_pointer(new_start); in insert() 1828 priv_uninitialized_copy(first, last, new_start + before); in insert() 1829 this->priv_construct_null(new_start + (old_size + n)); in insert() 1831 this->priv_long_addr(new_start); in insert() [all …]
|
/third_party/toybox/toys/pending/ |
D | fdisk.c | 575 sector_t new_start; in delete_partition() local 612 new_start = partitions[i + 1].start_offset + swap_le32toh(q->start4) - extended_offset; in delete_partition() 613 new_start = SWAP_LE32(new_start); in delete_partition() 614 memcpy(p->start4, (void *)&new_start, 4); in delete_partition() 1146 sector_t start, num, new_start, end; in move_begning() local 1162 new_start = ask_value(mesg, 0, end, start); in move_begning() 1163 if (new_start != start) { in move_begning() 1164 set_levalue(p->start4, new_start - pe->start_offset); in move_begning() 1165 set_levalue(p->size4, end - new_start +1); in move_begning() 1167 set_hsc(p, new_start, end); in move_begning()
|
/third_party/grpc/test/core/iomgr/ |
D | timer_list_test.cc | 242 gpr_timespec new_start = in main() local 246 grpc_core::ExecCtx::TestOnlyGlobalInit(new_start); in main()
|
/third_party/gstreamer/gstplugins_base/gst/playback/ |
D | gststreamsynchronizer.c | 877 gint64 new_start; in gst_stream_synchronizer_sink_chain() local 879 new_start = timestamp_end - GST_SECOND; in gst_stream_synchronizer_sink_chain() 884 GST_TIME_ARGS (new_start)); in gst_stream_synchronizer_sink_chain() 886 ostream->segment.position = new_start; in gst_stream_synchronizer_sink_chain() 889 ostream->gap_duration = new_start - position; in gst_stream_synchronizer_sink_chain()
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | blkmap64_rb.c | 501 __u64 new_start, new_count; in rb_remove_extent() local 521 new_start = start + count; in rb_remove_extent() 522 new_count = (ext->start + ext->count) - new_start; in rb_remove_extent() 526 rb_insert_extent(new_start, new_count, bp); in rb_remove_extent()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-shape-complex-arabic.cc | 685 unsigned int new_start = start + j - i; in reorder_marks_arabic() local 687 while (start < new_start) in reorder_marks_arabic()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-shape-complex-arabic.cc | 684 unsigned int new_start = start + j - i; in reorder_marks_arabic() local 686 while (start < new_start) in reorder_marks_arabic()
|
/third_party/harfbuzz/src/ |
D | hb-ot-shape-complex-arabic.cc | 685 unsigned int new_start = start + j - i; in reorder_marks_arabic() local 687 while (start < new_start) in reorder_marks_arabic()
|
/third_party/python/Objects/ |
D | rangeobject.c | 1124 long lstart, lstop, lstep, new_start, new_stop; in range_reverse() local 1185 new_start = (long)(new_stop + ulen * lstep); in range_reverse() 1186 return fast_range_iter(new_start, new_stop, -lstep); in range_reverse()
|
/third_party/gstreamer/gstplugins_bad/gst/mpegdemux/ |
D | gstmpegdemux.c | 934 gst_ps_demux_send_gap_updates (GstPsDemux * demux, GstClockTime new_start) in gst_ps_demux_send_gap_updates() argument 948 if (new_start > stop) in gst_ps_demux_send_gap_updates() 960 if (stream->last_ts + stream->segment_thresh < new_start) { in gst_ps_demux_send_gap_updates() 966 GST_PAD_NAME (stream->pad), GST_TIME_ARGS (new_start)); in gst_ps_demux_send_gap_updates() 968 gst_event_new_gap (stream->last_ts, new_start - stream->last_ts); in gst_ps_demux_send_gap_updates() 970 stream->last_ts = new_start; in gst_ps_demux_send_gap_updates()
|
/third_party/ffmpeg/libavformat/ |
D | hlsenc.c | 132 int new_start; member 836 vs->new_start = 1; in hls_mux_init() 2333 if (vs->new_start) { 2334 vs->new_start = 0;
|
/third_party/python/Lib/ |
D | mailbox.py | 684 new_start = new_file.tell() 691 new_toc[key] = (new_start, new_file.tell())
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 103487 mpegdemux: check base_time before calculating new_start
|