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

  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Exchanger.java 220 private static final int SPINS = (NCPU == 1) ? 0 : 2000;
229 private static final int TIMED_SPINS = SPINS / 20;
431 int spins = SPINS; local
436 else if (spins > 0)
437 --spins;
462 int spins = SPINS; local
467 else if (spins > 0) // Spin-wait phase
468 --spins;
488 int spins = TIMED_SPINS; local
    [all...]
SynchronousQueue.java 367 * Spins/blocks until node s is matched by a fulfill operation.
384 * preceded by spins to avoid blocking when producers and
400 int spins = (shouldSpin(s)? local
417 if (spins > 0)
418 spins = shouldSpin(s)? (spins-1) : 0;
680 * Spins/blocks until node s is fulfilled.
692 int spins = ((head.next == s) ? local
709 if (spins > 0)
710 --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 111 # to obtain the number of spins till closest timer interrupt.
  /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...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 135 * spins when exclusive synchronization is only briefly held, without
    [all...]

Completed in 180 milliseconds