HomeSort by relevance Sort by last modified time
    Searched full:spins (Results 1 - 25 of 50) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 162 * range of test machines. Spins and yields entail some limited
169 * mean time it cannot cancel the offer, so instead spins/yields.
258 * The bound for spins while waiting for a match. The actual
262 private static final int SPINS = 1 << 10;
286 int hash; // Pseudo-random for spins
353 for (int h = p.hash, spins = SPINS;;) {
361 else if (spins > 0) {
364 h = SPINS | (int)t.getId();
366 (--spins & ((SPINS >>> 1) - 1)) == 0
461 int spins = (NCPU > 1) ? SPINS : 1; local
    [all...]
SynchronousQueue.java 375 * Spins/blocks until node s is matched by a fulfill operation.
392 * preceded by spins to avoid blocking when producers and
407 int spins = (shouldSpin(s) ? local
422 if (spins > 0)
423 spins = shouldSpin(s) ? (spins-1) : 0;
699 * Spins/blocks until node s is fulfilled.
711 int spins = ((head.next == s) ? local
726 if (spins > 0)
727 --spins;
    [all...]
LinkedTransferQueue.java 295 * spins a bit before blocking. In either case, before blocking
302 * of less-contended queues. During spins threads check their
307 * systems. We also use smaller (1/2) spins for nodes that are
309 * blocked -- these "chained" spins avoid artifacts of
314 * chained spins, reflecting longer paths typically required to
400 * base average frequency for yielding during spins. Must be a
658 * Spins/yields/blocks until node s is matched or caller gives up.
672 int spins = -1; // initialized after first item and cancel checks local
    [all...]
Phaser.java 1013 int spins = SPINS_PER_ARRIVAL; local
    [all...]
  /external/chromium/chrome/browser/
browser_process_sub_thread.h 18 // BrowserProcess spins up.
  /external/chromium/chrome/browser/ui/cocoa/
cocoa_test_helper.mm 104 // one to two spins through the event loop to see a change.
130 int spins = 0;
132 (spins < kCloseSpins || one_more_time)) {
141 ++spins;
  /external/chromium_org/chrome/browser/ui/cocoa/
draggable_button.mm 39 // The impl spins an event loop to distinguish clicks from drags,
  /external/chromium_org/net/proxy/
mock_proxy_script_fetcher.h 36 // Spins the message loop until this->Fetch() is invoked.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_fence.c 187 uint32_t spins = 0; local
206 spins++;
208 if (!(spins % 8)) /* donate a few cycles */
211 } while (spins < NOUVEAU_FENCE_MAX_SPINS);
  /external/chromium_org/ui/base/test/
ui_cocoa_test_helper.mm 96 // one to two spins through the event loop to see a change.
122 int spins = 0;
124 (spins < kCloseSpins || one_more_time)) {
133 ++spins;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_fence.c 187 uint32_t spins = 0; local
206 spins++;
208 if (!(spins % 8)) /* donate a few cycles */
211 } while (spins < NOUVEAU_FENCE_MAX_SPINS);
  /external/chromium_org/content/browser/
browser_process_sub_thread.h 30 // BrowserProcess spins up.
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
linecnt.inp 44 A spider spins its web.
linecnt.good 88 A spider spins its web.
  /external/chromium_org/chrome/browser/storage_monitor/
portable_device_watcher_win.h 33 // tasks it spins off to a SequencedTaskRunner.
  /external/chromium_org/chrome_frame/test/net/
fake_external_tab.h 67 // The "master class" that spins the UI and test threads.
  /external/chromium_org/chrome/test/functional/media/
media_constrained_network_perf.py 8 Spins up a Constrained Network Server (CNS) and runs through a test matrix of
194 """Starts CNS, spins up worker threads to run through _TEST_CONSTRAINTS."""
  /external/chromium_org/chrome/browser/ui/gtk/
first_run_dialog.cc 92 // but that spins a nested message loop and hoses us. :(
  /external/chromium_org/content/public/test/
render_view_test.h 55 // Spins the message loop to process all messages that are currently pending.
  /external/replicaisland/
README.TXT 18 AndouKun.java spins up the game, handles input events, deals with pausing and resuming, and also manages the progression across game levels.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
radeonsi_pipe.c 552 unsigned spins = 0; local
573 if (++spins % 256)
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pipe.c 552 unsigned spins = 0; local
573 if (++spins % 256)
  /external/chromium/chrome/browser/ui/cocoa/toolbar/
reload_button_unittest.mm 170 // When the event loop first spins, some delayed tracking-area setup
  /external/chromium_org/chrome/browser/ui/cocoa/toolbar/
reload_button_unittest.mm 181 // When the event loop first spins, some delayed tracking-area setup
  /external/chromium/chrome/browser/ui/gtk/
first_run_dialog.cc 137 // but that spins a nested message loop and hoses us. :(

Completed in 1232 milliseconds

1 2