Home
last modified time | relevance | path

Searched refs:stop (Results 251 - 275 of 3055) sorted by relevance

1...<<11121314151617181920>>...123

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java296 stop(); in next()
347 stop(); in next()
366 stop(); in next()
375 stop(); in next()
383 stop(); in next()
758 private void stop() { in stop() method in BytesTrie
903 stop(); in branchNext()
936 stop(); in nextImpl()
H A DCharsTrie.java243 stop(); in next()
309 stop(); in next()
328 stop(); in next()
338 stop(); in next()
346 stop(); in next()
696 private void stop() { in stop() method in CharsTrie
836 stop(); in branchNext()
868 stop(); in nextImpl()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DBytesTrie.java277 stop(); in next()
327 stop(); in next()
346 stop(); in next()
355 stop(); in next()
363 stop(); in next()
723 private void stop() { in stop() method in BytesTrie
863 stop(); in branchNext()
896 stop(); in nextImpl()
H A DCharsTrie.java230 stop(); in next()
294 stop(); in next()
313 stop(); in next()
323 stop(); in next()
331 stop(); in next()
669 private void stop() { in stop() method in CharsTrie
809 stop(); in branchNext()
841 stop(); in nextImpl()
/third_party/skia/src/core/
H A DSkScan_AntiPath.cpp233 int stop = x + width;
235 SkASSERT(start >= 0 && stop > start);
238 int fe = stop & MASK;
239 int n = (stop >> SHIFT) - (start >> SHIFT) - 1;
563 int stop = x + width;
565 SkASSERT(start >= 0 && stop > start);
567 int fe = stop & MASK;
568 int n = (stop >> SHIFT) - (start >> SHIFT) - 1;
H A DSkBigPicture.cpp44 int stop, in partialPlayback()
52 stop, in partialPlayback()
42 partialPlayback(SkCanvas* canvas, int start, int stop, const SkM44& initialCTM) const partialPlayback() argument
H A DSkPtrRecorder.cpp12 Pair* stop = fList.end(); in reset() local
13 while (p < stop) { in reset()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-aat-layout-common.hh578 const HBUSHORT *stop = &states[min_state * num_classes]; in sanitize() local
579 if (unlikely (stop > states)) in sanitize()
581 for (const HBUSHORT *p = states; stop < p; p--) in sanitize()
599 const HBUSHORT *stop = &states[(max_state + 1) * num_classes]; in sanitize() local
600 if (unlikely (stop < states)) in sanitize()
602 for (const HBUSHORT *p = &states[state_pos * num_classes]; p < stop; p++) in sanitize()
613 const Entry<Extra> *stop = &entries[num_entries]; in sanitize() local
614 for (const Entry<Extra> *p = &entries[entry]; p < stop; p++) in sanitize()
/kernel/linux/linux-5.10/drivers/char/tpm/
H A Dtpm_tis_core.c52 unsigned long stop; in wait_for_tpm_stat() local
62 stop = jiffies + timeout; in wait_for_tpm_stat()
66 timeout = stop - jiffies; in wait_for_tpm_stat()
89 } while (time_before(jiffies, stop)); in wait_for_tpm_stat()
102 unsigned long stop = jiffies + chip->timeout_a; in wait_startup() local
115 } while (time_before(jiffies, stop)); in wait_startup()
162 unsigned long stop, timeout; in __tpm_tis_request_locality() local
172 stop = jiffies + chip->timeout_a; in __tpm_tis_request_locality()
176 timeout = stop - jiffies; in __tpm_tis_request_locality()
195 } while (time_before(jiffies, stop)); in __tpm_tis_request_locality()
260 unsigned long stop; get_burstcount() local
[all...]
H A Dtpm_nsc.c73 unsigned long stop; in wait_for_stat() local
81 stop = jiffies + 10 * HZ; in wait_for_stat()
88 while (time_before(jiffies, stop)); in wait_for_stat()
97 unsigned long stop; in nsc_wait_for_ready() local
107 stop = jiffies + 100; in nsc_wait_for_ready()
116 while (time_before(jiffies, stop)); in nsc_wait_for_ready()
/kernel/linux/linux-6.6/drivers/char/tpm/
H A Dtpm_tis_core.c69 unsigned long stop; in wait_for_tpm_stat() local
86 stop = jiffies + timeout; in wait_for_tpm_stat()
91 timeout = stop - jiffies; in wait_for_tpm_stat()
122 } while (time_before(jiffies, stop)); in wait_for_tpm_stat()
134 unsigned long stop = jiffies + chip->timeout_a; in wait_startup() local
147 } while (time_before(jiffies, stop)); in wait_startup()
194 unsigned long stop, timeout; in __tpm_tis_request_locality() local
204 stop = jiffies + chip->timeout_a; in __tpm_tis_request_locality()
208 timeout = stop - jiffies; in __tpm_tis_request_locality()
227 } while (time_before(jiffies, stop)); in __tpm_tis_request_locality()
292 unsigned long stop; get_burstcount() local
[all...]
H A Dtpm_nsc.c73 unsigned long stop; in wait_for_stat() local
81 stop = jiffies + 10 * HZ; in wait_for_stat()
88 while (time_before(jiffies, stop)); in wait_for_stat()
97 unsigned long stop; in nsc_wait_for_ready() local
107 stop = jiffies + 100; in nsc_wait_for_ready()
116 while (time_before(jiffies, stop)); in nsc_wait_for_ready()
/kernel/linux/linux-5.10/drivers/mmc/core/
H A Dmmc_test.c214 if (WARN_ON(!mrq || !mrq->cmd || !mrq->data || !mrq->stop)) in mmc_test_prepare_mrq()
232 mrq->stop = NULL; in mmc_test_prepare_mrq()
234 mrq->stop->opcode = MMC_STOP_TRANSMISSION; in mmc_test_prepare_mrq()
235 mrq->stop->arg = 0; in mmc_test_prepare_mrq()
236 mrq->stop->flags = MMC_RSP_R1B | MMC_CMD_AC; in mmc_test_prepare_mrq()
295 struct mmc_command stop = {}; in mmc_test_buffer_transfer() local
302 mrq.stop = &stop; in mmc_test_buffer_transfer()
696 mrq->stop = NULL; in mmc_test_prepare_broken_mrq()
722 if (!ret && mrq->stop in mmc_test_check_result()
773 struct mmc_command stop; global() member
894 struct mmc_command stop = {}; mmc_test_simple_transfer() local
919 struct mmc_command stop = {}; mmc_test_broken_transfer() local
[all...]
/kernel/linux/linux-6.6/drivers/mmc/core/
H A Dmmc_test.c213 if (WARN_ON(!mrq || !mrq->cmd || !mrq->data || !mrq->stop)) in mmc_test_prepare_mrq()
231 mrq->stop = NULL; in mmc_test_prepare_mrq()
233 mrq->stop->opcode = MMC_STOP_TRANSMISSION; in mmc_test_prepare_mrq()
234 mrq->stop->arg = 0; in mmc_test_prepare_mrq()
235 mrq->stop->flags = MMC_RSP_R1B | MMC_CMD_AC; in mmc_test_prepare_mrq()
294 struct mmc_command stop = {}; in mmc_test_buffer_transfer() local
301 mrq.stop = &stop; in mmc_test_buffer_transfer()
681 mrq->stop = NULL; in mmc_test_prepare_broken_mrq()
707 if (!ret && mrq->stop in mmc_test_check_result()
758 struct mmc_command stop; global() member
879 struct mmc_command stop = {}; mmc_test_simple_transfer() local
904 struct mmc_command stop = {}; mmc_test_broken_transfer() local
[all...]
/kernel/linux/linux-5.10/drivers/mmc/host/
H A Ddw_mmc.c112 struct mmc_command *stop; in dw_mci_req_show() local
122 stop = mrq->stop; in dw_mci_req_show()
134 if (stop) in dw_mci_req_show()
137 stop->opcode, stop->arg, stop->flags, in dw_mci_req_show()
138 stop->resp[0], stop->resp[1], stop in dw_mci_req_show()
318 struct mmc_command *stop; dw_mci_prep_stop_abort() local
414 struct mmc_command *stop = &host->stop_abort; send_stop_abort() local
[all...]
/kernel/linux/linux-6.6/drivers/mmc/host/
H A Ddw_mmc.c114 struct mmc_command *stop; in dw_mci_req_show() local
124 stop = mrq->stop; in dw_mci_req_show()
136 if (stop) in dw_mci_req_show()
139 stop->opcode, stop->arg, stop->flags, in dw_mci_req_show()
140 stop->resp[0], stop->resp[1], stop in dw_mci_req_show()
323 struct mmc_command *stop; dw_mci_prep_stop_abort() local
419 struct mmc_command *stop = &host->stop_abort; send_stop_abort() local
[all...]
/kernel/linux/linux-5.10/net/netfilter/ipvs/
H A Dip_vs_rr.c75 goto stop; in ip_vs_rr_schedule()
83 stop: in ip_vs_rr_schedule()
/kernel/linux/linux-6.6/net/netfilter/ipvs/
H A Dip_vs_rr.c75 goto stop; in ip_vs_rr_schedule()
83 stop: in ip_vs_rr_schedule()
/third_party/libuv/test/
H A Dbenchmark-async-pummel.c35 static const char stop[] = "stop"; variable
41 /* Tell the pummel thread to stop. */ in async_cb()
42 ACCESS_ONCE(const char*, handle->data) = stop; in async_cb()
/third_party/node/test/parallel/
H A Dtest-promise-hook-create-hook.js26 const stop = promiseHooks.createHook({
77 stop();
/third_party/python/Lib/test/
H A Dtest_colorsys.py4 def frange(start, stop, step):
5 while start <= stop:
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidExecService.hpp102 void stop (void);
115 void stop (void);
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_cmd.c191 uint32_t stop = vmw_fifo_mem_read(dev_priv, SVGA_FIFO_STOP); in vmw_fifo_is_full() local
193 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full()
301 uint32_t stop = vmw_fifo_mem_read(dev_priv, SVGA_FIFO_STOP); in vmw_local_fifo_reserve() local
305 if (next_cmd >= stop) { in vmw_local_fifo_reserve()
307 (next_cmd + bytes == max && stop > min)))) in vmw_local_fifo_reserve()
320 if (likely((next_cmd + bytes < stop))) in vmw_local_fifo_reserve()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dbpf_tcp_ca.c23 static int stop, duration; variable
56 while (bytes < total_bytes && !READ_ONCE(stop)) { in server()
75 WRITE_ONCE(stop, 1); in server()
92 WRITE_ONCE(stop, 0); in do_test()
149 while (bytes < total_bytes && !READ_ONCE(stop)) { in do_test()
162 WRITE_ONCE(stop, 1); in do_test()
/third_party/python/Lib/test/libregrtest/
H A Druntest_mp.py117 def stop(self): member in MultiprocessIterator
196 def stop(self) -> None: member in TestWorkerProcess
197 # Method called from a different thread to stop this thread
335 # bpo-38207: MultiprocessTestRunner.stop_workers() called self.stop()
403 worker.stop()
450 """Returns True if test runner must stop."""
480 stop = self._process_result(item)
481 if stop:
492 self.pending.stop()

Completed in 26 milliseconds

1...<<11121314151617181920>>...123