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

  /libcore/luni/src/main/java/java/util/concurrent/
Exchanger.java 222 private static final int SPINS = (NCPU == 1) ? 0 : 2000;
231 private static final int TIMED_SPINS = SPINS / 20;
433 int spins = SPINS; local
438 else if (spins > 0)
439 --spins;
464 int spins = SPINS; local
469 else if (spins > 0) // Spin-wait phase
470 --spins;
490 int spins = TIMED_SPINS; local
    [all...]
SynchronousQueue.java 372 * Spins/blocks until node s is matched by a fulfill operation.
389 * preceded by spins to avoid blocking when producers and
405 int spins = (shouldSpin(s)? local
422 if (spins > 0)
423 spins = shouldSpin(s)? (spins-1) : 0;
685 * Spins/blocks until node s is fulfilled.
697 int spins = ((head.next == s) ? local
714 if (spins > 0)
715 --spins;
    [all...]
  /external/webkit/WebCore/loader/
NetscapePlugInStreamLoader.cpp 122 // If calling didFail spins the run loop the stream loader can reach the terminal state.
SubresourceLoader.cpp 231 // The only way the subresource loader can reach the terminal state here is if the run loop spins when calling
  /external/openssl/crypto/
x86cpuid.pl 164 # to obtain the number of spins till closest timer interrupt.
  /external/chromium/base/
message_pump_mac.mm 733 // -performClick: spins a nested run loop. If the pool created in DoWork was a
  /external/openssl/crypto/bn/asm/
ia64.S 317 // This loop spins in 2*(n+12) ticks. It's scheduled for data in Itanium
363 // The loop therefore spins at the latency of xma minus 1, or in other
423 // This loop spins in 3*(n+10) ticks on Itanium and in 2*(n+10) on
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 145 * spins when exclusive synchronization is only briefly held, without
    [all...]

Completed in 324 milliseconds