Home
last modified time | relevance | path

Searched refs:start (Results 1326 - 1350 of 18955) sorted by relevance

1...<<51525354555657585960>>...759

/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DElapsedTimer.java38 public static String elapsedTime(long start, long end) { in elapsedTime() argument
39 return diffTime(getFormat(), start, end); in elapsedTime()
42 public static String elapsedTime(long start) { in elapsedTime() argument
43 return diffTime(getFormat(), start, System.currentTimeMillis()); in elapsedTime()
100 private static String diffTime(NumberFormat fmt, long start, long end) { in diffTime() argument
105 long age = end - start; in diffTime()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DHoliday.java66 * @param start Only holidays on or after this date are returned.
69 * does not occur on or after the start date.
75 public Date firstAfter(Date start) { in firstAfter() argument
76 return rule.firstAfter(start); in firstAfter()
81 * the given start date and before the given end date.
83 * @param start Only occurrences on or after this date are returned.
87 * does not occur between the start and end dates.
93 public Date firstBetween(Date start, Date end) { in firstBetween() argument
94 return rule.firstBetween(start, end); in firstBetween()
118 public boolean isBetween(Date start, Dat argument
[all...]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-arraybuffer-prototype.c110 ecma_length_t start = 0, end = len; in ecma_builtin_arraybuffer_prototype_object_slice() local
116 &start))) in ecma_builtin_arraybuffer_prototype_object_slice()
136 JERRY_ASSERT (start <= len && end <= len); in ecma_builtin_arraybuffer_prototype_object_slice()
137 ecma_length_t new_len = (end >= start) ? (end - start) : 0; in ecma_builtin_arraybuffer_prototype_object_slice()
142 memcpy (new_buf, old_buf + start, new_len); in ecma_builtin_arraybuffer_prototype_object_slice()
/third_party/node/lib/internal/perf/
H A Dtimerify.js37 function processComplete(name, start, args, histogram) {
38 const duration = now() - start;
45 start,
73 const start = now();
83 start,
87 processComplete(fn.name, start, args, histogram);
/third_party/nghttp2/contrib/
H A Dnghttpx-init.in49 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
51 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
69 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE
79 #start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
87 start)
126 log_progress_msg "New binary failed to start"
149 *) log_end_msg 1 ;; # Failed to start
159 echo "Usage: $SCRIPTNAME {start|sto
[all...]
/third_party/node/benchmark/timers/
H A Dimmediate.js35 bench.start();
49 bench.start();
63 bench.start();
77 bench.start();
92 bench.start();
105 bench.start();
/third_party/node/deps/v8/src/debug/
H A Ddebug-coverage.h22 CoverageBlock(int s, int e, uint32_t c) : start(s), end(e), count(c) {} in CoverageBlock()
25 int start; member
32 : start(s), end(e), count(c), name(n), has_block_coverage(false) {} in CoverageFunction()
34 bool HasNonEmptySourceRange() const { return start < end && start >= 0; } in HasNonEmptySourceRange()
37 int start; member
41 // Blocks are sorted by start position, from outer to inner blocks.
50 // Functions are sorted by start position, from outer to inner function.
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_index_modify.c33 unsigned start, in util_shorten_ubyte_elts_to_userptr()
50 in_map += start; in util_shorten_ubyte_elts_to_userptr()
68 unsigned start, unsigned count, in util_rebuild_ushort_elts_to_userptr()
84 in_map += start; in util_rebuild_ushort_elts_to_userptr()
102 unsigned start, unsigned count, in util_rebuild_uint_elts_to_userptr()
118 in_map += start; in util_rebuild_uint_elts_to_userptr()
29 util_shorten_ubyte_elts_to_userptr(struct pipe_context *context, const struct pipe_draw_info *info, unsigned add_transfer_flags, int index_bias, unsigned start, unsigned count, void *out) util_shorten_ubyte_elts_to_userptr() argument
64 util_rebuild_ushort_elts_to_userptr(struct pipe_context *context, const struct pipe_draw_info *info, unsigned add_transfer_flags, int index_bias, unsigned start, unsigned count, void *out) util_rebuild_ushort_elts_to_userptr() argument
98 util_rebuild_uint_elts_to_userptr(struct pipe_context *context, const struct pipe_draw_info *info, unsigned add_transfer_flags, int index_bias, unsigned start, unsigned count, void *out) util_rebuild_uint_elts_to_userptr() argument
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-emoji-table.py29 start, end = rang
31 start = end = rang[0]
35 if ranges[typ] and ranges[typ][-1][1] == start - 1:
38 ranges[typ].append((start, end))
64 for start,end in s:
65 for i in range(start, end + 1):
/third_party/python/Lib/test/
H A Dtime_hashlib.py17 start = time.perf_counter()
22 print(('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name)
25 start = time.perf_counter()
30 print(('%2.2f' % (end-start)), "seconds", '[20000 creations]')
33 start = time.perf_counter()
38 print(('%2.2f' % (end-start)), "seconds", '[20000 "" digests]')
/third_party/skia/tools/perf-canvaskit-puppeteer/
H A Dbenchmark.js45 let start, afterDraw, end;
47 start = performance.now();
69 totalFrame[idx] = start - previousFrame;
71 previousFrame = start;
93 withFlush[idx] = end - start;
94 withoutFlush[idx] = afterDraw - start;
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dct.c105 matchkey(const char *start, const char *end, const char *key) { in matchkey() argument
106 if (! start) in matchkey()
108 for (; start != end; start++, key++) in matchkey()
109 if (*start != *key && *start != 'A' + (*key - 'a')) in matchkey()
H A Dxmlmime.c110 matchkey(const char *start, const char *end, const char *key) { in matchkey() argument
111 if (! start) in matchkey()
113 for (; start != end; start++, key++) in matchkey()
114 if (*start != *key && *start != 'A' + (*key - 'a')) in matchkey()
/third_party/protobuf/php/src/Google/Protobuf/Internal/DescriptorProto/
H A DExtensionRange.php21 * Generated from protobuf field <code>optional int32 start = 1;</code>
23 protected $start = null; variable
41 * @type int $start
56 * Generated from protobuf field <code>optional int32 start = 1;</code>
61 return isset($this->start) ? $this->start : 0;
66 return isset($this->start);
71 unset($this->start);
77 * Generated from protobuf field <code>optional int32 start = 1;</code>
84 $this->start variable
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/checkable/
H A Drosen_render_checkbox.cpp155 const Offset start = in DrawPartSelect() local
160 path.MoveTo(originX + start.GetX(), originY + start.GetY()); in DrawPartSelect()
203 const Offset start = in DrawCheck() local
210 path.MoveTo(originX + start.GetX(), originY + start.GetY()); in DrawCheck()
250 const Offset start = in DrawAnimationOffToOn() local
257 double deltaX = middle.GetX() - start.GetX(); in DrawAnimationOffToOn()
258 double deltaY = middle.GetY() - start.GetY(); in DrawAnimationOffToOn()
259 path.MoveTo(originX + start in DrawAnimationOffToOn()
304 const Offset start = DrawAnimationOnToOff() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Drepeat_virtual_scroll_node.cpp65 void RepeatVirtualScrollNode::DoSetActiveChildRange(int32_t start, int32_t end, int32_t cacheStart, int32_t cacheEnd) in DoSetActiveChildRange() argument
68 "DoSetActiveChildRange: Repeat(nodeId): %{public}d: start: %{public}d - end: %{public}d; cacheStart: " in DoSetActiveChildRange()
70 GetId(), start, end, cacheStart, cacheEnd, start - cacheStart, end + cacheEnd); in DoSetActiveChildRange()
72 ACE_SCOPED_TRACE("Repeat.DoSetActiveChildRange start [%d] - end [%d; cacheStart: [%d], cacheEnd: [%d]", in DoSetActiveChildRange()
73 start, end, cacheStart, cacheEnd); in DoSetActiveChildRange()
76 int32_t nStart = start - cacheStart; in DoSetActiveChildRange()
92 bool needSync = caches_.RebuildL1([start, end, cacheStart, cacheEnd, weak = WeakClaim(this)]( in DoSetActiveChildRange()
103 if (repeatNode->CheckNode4IndexInL1(index, start, end, cacheStart, cacheEnd, frameNode)) { in DoSetActiveChildRange()
129 bool RepeatVirtualScrollNode::CheckNode4IndexInL1(int32_t index, int32_t start, int32_ argument
418 SetNodeIndexOffset(int32_t start, int32_t ) SetNodeIndexOffset() argument
[all...]
/kernel/linux/linux-5.10/arch/mips/alchemy/devboards/
H A Ddb1550.c186 .start = 0x20000000,
239 .start = AU1550_PSC0_PHYS_ADDR,
244 .start = AU1550_PSC0_INT,
249 .start = AU1550_DSCR_CMD0_PSC0_TX,
254 .start = AU1550_DSCR_CMD0_PSC0_RX,
291 .start = AU1550_PSC1_PHYS_ADDR,
296 .start = AU1550_PSC1_INT,
301 .start = AU1550_DSCR_CMD0_PSC1_TX,
306 .start = AU1550_DSCR_CMD0_PSC1_RX,
322 .start
[all...]
/kernel/linux/linux-5.10/arch/sh/boards/
H A Dboard-sh7757lcr.c27 .start = 0xffec005c, /* PUDR */
64 .start = 0xfef00000,
68 .start = evt2irq(0xc80),
91 .start = 0xfef00800,
95 .start = evt2irq(0xc80),
129 .start = 0xfee00000,
134 .start = 0xfee01800,
138 .start = evt2irq(0x2960),
162 .start = 0xfee00800,
167 .start
[all...]
/kernel/linux/linux-5.10/arch/sh/drivers/pci/
H A Dpcie-sh7786.c46 .start = 0xfd000000,
51 .start = 0xc0000000,
56 .start = 0x10000000,
61 .start = 0xfe100000,
70 .start = 0xfd800000,
75 .start = 0xa0000000,
80 .start = 0x30000000,
85 .start = 0xfe300000,
94 .start = 0xfc800000,
99 .start
[all...]
/kernel/linux/linux-6.6/arch/mips/alchemy/devboards/
H A Ddb1550.c187 .start = 0x20000000,
240 .start = AU1550_PSC0_PHYS_ADDR,
245 .start = AU1550_PSC0_INT,
250 .start = AU1550_DSCR_CMD0_PSC0_TX,
255 .start = AU1550_DSCR_CMD0_PSC0_RX,
292 .start = AU1550_PSC1_PHYS_ADDR,
297 .start = AU1550_PSC1_INT,
302 .start = AU1550_DSCR_CMD0_PSC1_TX,
307 .start = AU1550_DSCR_CMD0_PSC1_RX,
323 .start
[all...]
/kernel/linux/linux-6.6/arch/sh/boards/
H A Dboard-sh7757lcr.c27 .start = 0xffec005c, /* PUDR */
64 .start = 0xfef00000,
68 .start = evt2irq(0xc80),
91 .start = 0xfef00800,
95 .start = evt2irq(0xc80),
129 .start = 0xfee00000,
134 .start = 0xfee01800,
138 .start = evt2irq(0x2960),
162 .start = 0xfee00800,
167 .start
[all...]
/kernel/linux/linux-6.6/arch/sh/drivers/pci/
H A Dpcie-sh7786.c45 .start = 0xfd000000,
50 .start = 0xc0000000,
55 .start = 0x10000000,
60 .start = 0xfe100000,
69 .start = 0xfd800000,
74 .start = 0xa0000000,
79 .start = 0x30000000,
84 .start = 0xfe300000,
93 .start = 0xfc800000,
98 .start
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/hw/qib/
H A Dqib_tx.c90 * Clear at start in case more interrupts set bits while we in qib_disarm_piobufs_ifneeded()
298 * start out by doing the update; continue and do scan even in qib_getsendbuf_range()
377 * @start: the starting send buffer number
381 void qib_chg_pioavailkernel(struct qib_devdata *dd, unsigned start, in qib_chg_pioavailkernel() argument
386 unsigned ostart = start; in qib_chg_pioavailkernel()
389 start *= 2; in qib_chg_pioavailkernel()
390 end = start + len * 2; in qib_chg_pioavailkernel()
394 while (start < end) { in qib_chg_pioavailkernel()
412 i = start / BITS_PER_LONG; in qib_chg_pioavailkernel()
413 __clear_bit(QLOGIC_IB_SENDPIOAVAIL_BUSY_SHIFT + start, in qib_chg_pioavailkernel()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_ring_mux.c55 u64 start, end; in amdgpu_ring_mux_copy_pkt_from_sw_ring() local
58 start = s_start & ring->buf_mask; in amdgpu_ring_mux_copy_pkt_from_sw_ring()
61 if (start == end) { in amdgpu_ring_mux_copy_pkt_from_sw_ring()
65 if (start > end) { in amdgpu_ring_mux_copy_pkt_from_sw_ring()
66 amdgpu_ring_alloc(real_ring, (ring->ring_size >> 2) + end - start); in amdgpu_ring_mux_copy_pkt_from_sw_ring()
67 amdgpu_ring_write_multiple(real_ring, (void *)&ring->ring[start], in amdgpu_ring_mux_copy_pkt_from_sw_ring()
68 (ring->ring_size >> 2) - start); in amdgpu_ring_mux_copy_pkt_from_sw_ring()
71 amdgpu_ring_alloc(real_ring, end - start); in amdgpu_ring_mux_copy_pkt_from_sw_ring()
72 amdgpu_ring_write_multiple(real_ring, (void *)&ring->ring[start], end - start); in amdgpu_ring_mux_copy_pkt_from_sw_ring()
286 u64 readp, offset, start, end; amdgpu_ring_mux_get_rptr() local
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/hw/qib/
H A Dqib_tx.c89 * Clear at start in case more interrupts set bits while we in qib_disarm_piobufs_ifneeded()
295 * start out by doing the update; continue and do scan even in qib_getsendbuf_range()
374 * @start: the starting send buffer number
379 void qib_chg_pioavailkernel(struct qib_devdata *dd, unsigned start, in qib_chg_pioavailkernel() argument
384 unsigned ostart = start; in qib_chg_pioavailkernel()
387 start *= 2; in qib_chg_pioavailkernel()
388 end = start + len * 2; in qib_chg_pioavailkernel()
392 while (start < end) { in qib_chg_pioavailkernel()
410 i = start / BITS_PER_LONG; in qib_chg_pioavailkernel()
411 __clear_bit(QLOGIC_IB_SENDPIOAVAIL_BUSY_SHIFT + start, in qib_chg_pioavailkernel()
[all...]

Completed in 16 milliseconds

1...<<51525354555657585960>>...759