/cts/tests/src/android/opengl/cts/ |
OpenGlEsVersionStubActivity.java | 44 /** Latch that is unlocked when the activity is done finding the version. */
|
/pdk/apps/CameraITS/tests/ |
test_latching.py | 26 """Test that settings latch on the right frame.
|
/bionic/libc/kernel/common/linux/ |
jiffies.h | 50 #define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) 54 #define ACTHZ (SH_DIV (CLOCK_TICK_RATE, LATCH, 8))
|
/external/llvm/lib/Analysis/ |
ProfileEstimatorPass.cpp | 173 // latch to prevent the flow from building up in the loop. 203 BasicBlock *Latch = BBLoop->getLoopLatch(); 204 if (Latch) { 205 Edge edge = getEdge(Latch,0); 208 edge = getEdge(Latch, BB);
|
/external/llvm/include/llvm/Analysis/ |
LoopInfoImpl.h | 166 /// getLoopLatch - If there is a single latch block for this loop, return it. 167 /// A latch block is a block that contains a branch back to the header. 176 BlockT *Latch = 0; 180 if (Latch) return 0; 181 Latch = N; 185 return Latch; 347 if (BB == getLoopLatch()) OS << "<latch>";
|
/cts/tests/tests/media/src/android/media/cts/ |
OutputSurface.java | 34 * MediaCodec.configure() to receive decoder output. When a frame arrives, we latch the 247 // Latch the data. 275 // Latch the data.
|
MediaRecorderTest.java | 83 final CountDownLatch latch = new CountDownLatch(1); local 88 latch.countDown(); 93 assertTrue(latch.await(10, TimeUnit.SECONDS));
|
/cts/tests/tests/net/src/android/net/cts/ |
TrafficStatsTest.java | 59 final CountDownLatch latch = new CountDownLatch(1); local 67 latch.countDown(); 71 latch.await(5, TimeUnit.SECONDS);
|
/external/chromium_org/net/quic/ |
quic_crypto_client_stream.cc | 227 true /* latch once used */); 374 // TODO(agl): we don't currently latch this decrypter because the idea 379 crypters->decrypter.release(), false /* don't latch */);
|
quic_crypto_server_stream.cc | 120 false /* don't latch */);
|
/frameworks/base/core/java/android/inputmethodservice/ |
IInputMethodWrapper.java | 229 CountDownLatch latch = new CountDownLatch(1); local 231 fd, fout, args, latch)); 233 if (!latch.await(5, TimeUnit.SECONDS)) {
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/ |
AwTestTouchUtils.java | 62 * @param completionLatch The .countDown method is called on this latch once the drag finishes.
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
vhdl.php | 64 'mod','info','latch','rising_edge','falling_edge'
|
/external/llvm/test/Transforms/IndVarSimplify/ |
no-iv-rewrite.ll | 340 %ptr.iv = phi %structIF* [ %ptr.inc, %latch ], [ %base, %entry ] 341 %next = phi i32* [ %next.inc, %latch ], [ %first, %entry ] 343 br i1 undef, label %latch, label %exit 345 latch: ; preds = %for.inc50.i
|
/external/llvm/lib/Transforms/Scalar/ |
LoopUnswitch.cpp | 592 // latch block or exit through a one exit block without having any 708 /// condition in it (a cond branch from its header block to its latch block, [all...] |
LoopUnrollPass.cpp | 162 // Find "latch trip count". UnrollLoop assumes that control cannot exit 163 // via the loop latch on any iteration prior to TripCount. The loop may exit
|
/frameworks/base/core/java/android/view/ |
ViewDebug.java | 602 final CountDownLatch latch = new CountDownLatch(1); local 616 latch.countDown(); 622 if (!latch.await(CAPTURE_TIMEOUT, TimeUnit.MILLISECONDS)) { 753 final CountDownLatch latch = new CountDownLatch(1); local 764 latch.countDown(); 770 latch.await(CAPTURE_TIMEOUT, TimeUnit.MILLISECONDS); 1465 final CountDownLatch latch = new CountDownLatch(1); local [all...] |
/external/kernel-headers/original/linux/ |
jiffies.h | 36 /* LATCH is used in the interval timer and ftape setup. */ 37 #define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) /* For divider */ 54 #define ACTHZ (SH_DIV (CLOCK_TICK_RATE, LATCH, 8))
|
serial_reg.h | 89 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ 136 #define UART_DLL 0 /* Out: Divisor Latch Low */ 137 #define UART_DLM 1 /* Out: Divisor Latch High */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
serial_reg.h | 91 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ 139 #define UART_DLL 0 /* Out: Divisor Latch Low */ 140 #define UART_DLM 1 /* Out: Divisor Latch High */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
serial_reg.h | 91 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ 139 #define UART_DLL 0 /* Out: Divisor Latch Low */ 140 #define UART_DLM 1 /* Out: Divisor Latch High */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
serial_reg.h | 91 #define UART_LCR_DLAB 0x80 /* Divisor latch access bit */ 139 #define UART_DLL 0 /* Out: Divisor Latch Low */ 140 #define UART_DLM 1 /* Out: Divisor Latch High */
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
JSR166TestCase.java | 910 public Callable<String> latchAwaitingStringTask(final CountDownLatch latch) { 914 latch.await(); 920 public Runnable awaiter(final CountDownLatch latch) { 923 await(latch); 927 public void await(CountDownLatch latch) { 929 assertTrue(latch.await(LONG_DELAY_MS, MILLISECONDS)); [all...] |
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/ |
VariableSpeed.java | 154 private void waitForLatch(CountDownLatch latch) { 156 boolean success = latch.await(1, TimeUnit.SECONDS);
|
/frameworks/native/libs/gui/tests/ |
SurfaceTexture_test.cpp | [all...] |