/cts/tests/tests/opengl/src/android/opengl/cts/ |
OpenGLES20NativeActivityOne.java | 88 public OpenGLES20View(Context context, int category, int testCase, CountDownLatch latch) { 91 mRenderer = new GL2Renderer(category, testCase, latch); 114 public GL2Renderer(int category, int testcase, CountDownLatch latch) { 117 mLatch = latch;
|
RendererBase.java | 42 public RendererBase(CountDownLatch latch) { 43 mLatch = latch;
|
RendererTwoShaderTest.java | 33 public RendererTwoShaderTest(CountDownLatch latch) { 34 super(latch);
|
OpenGLES20ActivityTwo.java | 92 CountDownLatch latch) { 97 mRenderer = new RendererOneColorBufferTest(context, rgba, latch);
|
OpenGLES20NativeActivityTwo.java | 101 CountDownLatch latch) { 106 mRenderer = new NativeRendererOneColorBufferTest(context, rgba, latch);
|
RendererOneShaderTest.java | 41 public RendererOneShaderTest(CountDownLatch latch) { 42 super(latch);
|
RendererThreeShaderTest.java | 40 public RendererThreeShaderTest(CountDownLatch latch) { 41 super(latch);
|
RendererOneColorBufferTest.java | 64 public RendererOneColorBufferTest(Context context, CountDownLatch latch) { 65 super(latch); 81 public RendererOneColorBufferTest(Context context, float[] colors, CountDownLatch latch) { 82 super(latch);
|
/external/grub/netboot/ |
timer.c | 32 /* LATCH is used in the interval timer and ftape setup. */ 33 #define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) /* For divider */ 45 #define CALIBRATE_LATCH (5 * LATCH) 57 * load 5 * LATCH count, (LSB and MSB) to begin countdown.
|
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/ |
AbstractCheckedFutureTest.java | 71 createCheckedFuture(Boolean.TRUE, null, latch); 98 createCheckedFuture(Boolean.TRUE, null, latch); 135 createCheckedFuture(Boolean.TRUE, new Exception("Error"), latch); 143 latch.countDown();
|
/external/llvm/test/Other/ |
2003-02-19-LoopInfoNestingBug.ll | 6 ; RUN: grep " Loop at depth 3 containing: %Inner<header><latch><exiting>"
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
SensorManagerTestVerifier.java | 220 CountDownLatch latch = mFlushLatch; local 222 if(latch != null) { 223 latch.countDown(); 229 CountDownLatch latch = mFlushLatch; local 230 if(latch != null) { 235 Assert.assertTrue(message, latch.await(WAIT_TIMEOUT_IN_SECONDS, TimeUnit.SECONDS));
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Uninterruptibles.java | 47 * Invokes {@code latch.}{@link CountDownLatch#await() await()} 50 public static void awaitUninterruptibly(CountDownLatch latch) { 55 latch.await(); 70 * {@code latch.}{@link CountDownLatch#await(long, TimeUnit) 73 public static boolean awaitUninterruptibly(CountDownLatch latch, 83 return latch.await(remainingNanos, NANOSECONDS);
|
/external/guava/guava-tests/test/com/google/common/testing/ |
GcFinalizationTest.java | 29 final CountDownLatch latch = new CountDownLatch(1); local 31 protected void finalize() { latch.countDown(); } 34 GcFinalization.await(latch); 35 assertEquals(0, latch.getCount()); 114 final CountDownLatch latch = new CountDownLatch(1); local 116 GcFinalization.await(latch);
|
/external/e2fsprogs/e2fsck/ |
problem.h | 27 * We define a set of "latch groups"; these are problems which are 28 * handled as a set. The user answers once for a particular latch 31 #define PR_LATCH_MASK 0x0ff0 /* Latch mask */ 32 #define PR_LATCH_BLOCK 0x0010 /* Latch for illegal blocks (pass 1) */ 33 #define PR_LATCH_BBLOCK 0x0020 /* Latch for bad block inode blocks (pass 1) */ 34 #define PR_LATCH_IBITMAP 0x0030 /* Latch for pass 5 inode bitmap proc. */ 35 #define PR_LATCH_BBITMAP 0x0040 /* Latch for pass 5 inode bitmap proc. */ 36 #define PR_LATCH_RELOC 0x0050 /* Latch for superblock relocate hint */ 37 #define PR_LATCH_DBLOCK 0x0060 /* Latch for pass 1b dup block headers */ 38 #define PR_LATCH_LOW_DTIME 0x0070 /* Latch for pass1 orphaned list refugees * [all...] |
problemP.h | 38 #define PR_NOCOLLATE 0x008000 /* Don't collate answers for this latch */
|
/external/llvm/lib/Transforms/Utils/ |
LoopUnrollRuntime.cpp | 60 BasicBlock *Latch = L->getLoopLatch(); 61 assert(Latch != 0 && "Loop must have a latch"); 68 for (succ_iterator SBI = succ_begin(Latch), SBE = succ_end(Latch); 85 Value *V = PN->getIncomingValueForBlock(Latch); 148 BasicBlock *Latch = L->getLoopLatch(); 177 unsigned idx = NewPHI->getBasicBlockIndex(Latch); 188 if (Latch == *BB) { 270 BasicBlock *Latch = L->getLoopLatch() [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonHardwareLoops.cpp | 193 /// The desired flow is: phi ---> bump -+-> comparison-in-latch. 202 /// +-> comparison-in-latch (against upper_bound-bump), 209 /// couldn't be identified, or if the value in the latch's comparison 326 MachineBasicBlock *Latch = L->getLoopLatch(); 327 if (!Header || !Preheader || !Latch) 348 // latch block, and see if is a result of an addition of form "reg+imm", 351 if (Phi->getOperand(i+1).getMBB() != Latch) 374 bool NotAnalyzed = TII->AnalyzeBranch(*Latch, TB, FB, Cond, false); 455 MachineBasicBlock *Latch = L->getLoopLatch(); 456 if (!Latch) [all...] |
/external/llvm/test/Analysis/LoopInfo/ |
2003-05-15-NestingProblem.ll | 5 ; RUN: grep "^ Loop at depth 4 containing: %loopentry.7<header><latch><exiting>"
|
/external/llvm/test/Transforms/InstCombine/ |
fold-phi.ll | 29 %add5 = fadd float %sum.057, 1.0 ;; Should be moved to the latch!
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CountDownLatch.java | 25 * simple on/off latch, or gate: all threads invoking {@link #await await} 82 * counts down on the latch, and queue all the Runnables to an 175 * Causes the current thread to wait until the latch has counted down to 206 * Causes the current thread to wait until the latch has counted down to 252 * Decrements the count of the latch, releasing all waiting threads if 277 * Returns a string identifying this latch, as well as its state. 281 * @return a string identifying this latch, as well as its state
|
/external/llvm/test/Analysis/ScalarEvolution/ |
scev-aa.ll | 53 %j = phi i64 [ 0, %guard ], [ %j.next, %outer.latch ] 77 br i1 %exitcond, label %outer.latch, label %bb 79 outer.latch: 110 %j = phi i64 [ 0, %guard ], [ %j.next, %outer.latch ] 134 br i1 %exitcond, label %outer.latch, label %bb 136 outer.latch:
|
/external/llvm/test/Transforms/LoopUnroll/ |
scevunroll.ll | 35 ; latch block. Canonical unrolling incorrectly unrolls it, but SCEV 101 ; SCEV should not unroll a multi-exit loops unless the latch block has 103 ; LoopUnroll utility uses this assumption to optimize the latch 179 ; The loop latch is assumed to exit after the first iteration because 180 ; of the induction variable's NSW flag. However, the loop latch's 183 ; the loop latch's exit count of zero is an upper bound on the number
|
/development/ndk/platforms/android-3/include/linux/ |
jiffies.h | 40 #define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) 46 #define ACTHZ (SH_DIV (CLOCK_TICK_RATE, LATCH, 8))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
scc.h | 148 io_port vector_latch; /* INTACK-Latch (#) */ 159 /* (#) only one INTACK latch allowed. */
|