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

1 2 3

  /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 294 * spins a bit before blocking. In either case, before blocking
301 * of less-contended queues. During spins threads check their
306 * systems. We also use smaller (1/2) spins for nodes that are
308 * blocked -- these "chained" spins avoid artifacts of
313 * chained spins, reflecting longer paths typically required to
399 * base average frequency for yielding during spins. Must be a
657 * Spins/yields/blocks until node s is matched or caller gives up.
671 int spins = -1; // initialized after first item and cancel checks local
    [all...]
Phaser.java 1012 int spins = SPINS_PER_ARRIVAL; local
    [all...]
  /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/gfx/test/
ui_cocoa_test_helper.mm 112 // one to two spins through the event loop to see a change.
138 int spins = 0;
140 (spins < kCloseSpins || one_more_time)) {
149 ++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.
  /external/chromium_org/content/common/gpu/
image_transport_surface_mac.mm 54 // Content shell in DRT mode spins up a gpu process which needs an
  /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/ui/views/
elevation_icon_setter.cc 40 // TODO(pkasting): Run on a background thread since this call spins a nested
  /external/fio/
goptions.c 56 GtkWidget *spins[GOPT_RANGE_SPIN]; member in struct:gopt_range
662 if (GTK_SPIN_BUTTON(r->spins[i]) == spin) {
674 GtkWidget *mspin = r->spins[changed + 1];
676 val = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(r->spins[changed]));
681 GtkWidget *mspin = r->spins[changed - 1];
683 val = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(r->spins[changed]));
703 gtk_spin_button_set_value(GTK_SPIN_BUTTON(r->spins[i]), vals[i]);
743 r->spins[i] = gtk_spin_button_new_with_range(o->minval, maxval, interval);
744 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(r->spins[i]), GTK_UPDATE_IF_VALID);
745 gtk_box_pack_start(GTK_BOX(r->gopt.box), r->spins[i], FALSE, FALSE, 0)
    [all...]
  /external/chromium_org/build/android/pylib/utils/
parallelizer.py 50 Note that this class spins up a thread for each object. Using this class
  /external/chromium_org/components/storage_monitor/
portable_device_watcher_win.h 31 // tasks it spins off to a SequencedTaskRunner.
  /external/chromium_org/content/public/test/
render_view_test.h 59 // 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)
  /art/runtime/
monitor.h 50 // The default number of spins that are done before thread suspension is used to forcibly inflate
  /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_org/third_party/openssl/openssl/crypto/
x86cpuid.pl 195 # to obtain the number of spins till closest timer interrupt.
  /external/fio/lib/
lfsr.c 173 * themselves after their 2^n iteration. The introduction of spins however, is

Completed in 941 milliseconds

1 2 3