/external/dagger2/javatests/dagger/functional/cycle/ |
D | DoubleCheckCycleTest.java | 79 AtomicInteger callCount = new AtomicInteger(0); in testNonReentrant() local 87 callCount.getAndIncrement(); in testNonReentrant() 93 assertThat(callCount.get()).isEqualTo(0); in testNonReentrant() 95 assertThat(callCount.get()).isEqualTo(1); in testNonReentrant() 97 assertThat(callCount.get()).isEqualTo(1); in testNonReentrant() 103 AtomicInteger callCount = new AtomicInteger(0); in testReentrant() local 112 if (callCount.incrementAndGet() == 1) { in testReentrant() 120 assertThat(callCount.get()).isEqualTo(0); in testReentrant() 122 assertThat(callCount.get()).isEqualTo(2); in testReentrant() 124 assertThat(callCount.get()).isEqualTo(2); in testReentrant() [all …]
|
/external/oboe/src/flowgraph/ |
D | FlowGraphNode.cpp | 25 int32_t FlowGraphNode::pullData(int32_t numFrames, int64_t callCount) { in pullData() argument 28 if (callCount > mLastCallCount) { in pullData() 29 mLastCallCount = callCount; in pullData() 34 frameCount = port.get().pullData(callCount, frameCount); in pullData() 76 int32_t FlowGraphPortFloatOutput::pullData(int64_t callCount, int32_t numFrames) { in pullData() argument 78 return mContainingNode.pullData(numFrames, callCount); in pullData() 95 int32_t FlowGraphPortFloatInput::pullData(int64_t callCount, int32_t numFrames) { in pullData() argument 98 : mConnected->pullData(callCount, numFrames); in pullData()
|
D | FlowGraphNode.h | 96 int32_t pullData(int32_t numFrames, int64_t callCount);
|
/external/deqp/modules/gles31/functional/ |
D | es31fAtomicCounterTests.cpp | 92 , callCount (0) in TestSpec() 102 int callCount; member 122 deUint32 getInitialValue (void) const { return m_spec.callCount * m_spec.threadCount + 1; } in getInitialValue() 242 src << " uint preGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource() 245 …src << " uint increment[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource() 248 …src << " uint decrement[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource() 251 src << " uint postGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource() 254 src << " uint get[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource() 415 if (spec.callCount > 1) in generateShaderSource() 416 src << "\tfor (uint i = 0u; i < " << spec.callCount << "u; i++)\n"; in generateShaderSource() [all …]
|
/external/guice/jdk8-tests/test/com/google/inject/jdk8/ |
D | DefaultMethodInterceptionTest.java | 40 private static final AtomicInteger callCount = new AtomicInteger(0); field in DefaultMethodInterceptionTest 52 callCount.set(0); in setUp() 64 callCount.incrementAndGet(); in defaultMethod() 90 assertEquals(1, callCount.get()); in testInterceptedDefaultMethod() 107 assertEquals(1, callCount.get()); in testInterceptedDefaultMethod_calledByAnotherMethod() 115 callCount.incrementAndGet(); in defaultMethod() 138 assertEquals(1, callCount.get()); in testInterceptedDefaultMethod_whenParentClassDefinesNonInterceptedMethod() 149 callCount.incrementAndGet(); in defaultMethod() 174 assertEquals(1, callCount.get()); in testInterceptedDefaultMethod_whenParentClassDefinesInterceptedMethod()
|
/external/easymock/src/org/easymock/internal/ |
D | Results.java | 27 private int callCount; field in Results 50 callCount += 1; in next() 54 if (currentPosition > callCount) { in next() 55 callCount += 1; in next() 87 return callCount; in getCallCount()
|
/external/deqp/modules/gles3/performance/ |
D | es3pStateChangeCallTests.cpp | 58 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 61 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 63 const int baseNdx = iterNdx*callCount + callNdx;\ 81 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 85 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 87 const int baseNdx = iterNdx*callCount + callNdx;\ 106 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 111 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 113 const int baseNdx = iterNdx*callCount + callNdx;\ 133 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ [all …]
|
/external/deqp/modules/gles2/performance/ |
D | es2pStateChangeCallTests.cpp | 58 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 61 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 63 const int baseNdx = iterNdx*callCount + callNdx;\ 81 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 85 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 87 const int baseNdx = iterNdx*callCount + callNdx;\ 106 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ 111 for (int callNdx = 0; callNdx < callCount; callNdx++)\ 113 const int baseNdx = iterNdx*callCount + callNdx;\ 133 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount)\ [all …]
|
/external/icu/icu4c/source/i18n/ |
D | number_fluent.cpp | 445 auto* callCount = reinterpret_cast<u_atomic_int32_t*>(fUnsafeCallCount); in resetCompiled() local 446 umtx_storeRelease(*callCount, 0); in resetCompiled() 456 auto* callCount = reinterpret_cast<u_atomic_int32_t*>(fUnsafeCallCount); in lnfMoveHelper() local 457 umtx_storeRelease(*callCount, INT32_MIN); in lnfMoveHelper() 641 auto* callCount = reinterpret_cast<u_atomic_int32_t*>( in computeCompiled() local 649 int32_t currentCount = umtx_loadAcquire(*callCount); in computeCompiled() 651 currentCount = umtx_atomic_inc(callCount); in computeCompiled() 663 umtx_storeRelease(*callCount, INT32_MIN); in computeCompiled() 680 auto* callCount = reinterpret_cast<u_atomic_int32_t*>( in getCallCount() local 682 return umtx_loadAcquire(*callCount); in getCallCount()
|
/external/icu/android_icu4j/src/main/java/android/icu/number/ |
D | LocalizedNumberFormatter.java | 33 static final AtomicLongFieldUpdater<LocalizedNumberFormatter> callCount = AtomicLongFieldUpdater field in LocalizedNumberFormatter 204 long currentCount = callCount.incrementAndGet(this); in computeCompiled()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
D | LocalizedNumberFormatter.java | 33 static final AtomicLongFieldUpdater<LocalizedNumberFormatter> callCount = AtomicLongFieldUpdater field in LocalizedNumberFormatter 209 long currentCount = callCount.incrementAndGet(this); in computeCompiled()
|
/external/guava/android/guava-tests/test/com/google/common/cache/ |
D | CacheLoadingTest.java | 1967 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingDefault() local 1976 callCount.incrementAndGet(); in testConcurrentLoadingDefault() 1984 assertEquals(1, callCount.get()); in testConcurrentLoadingDefault() 1999 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingNull() local 2007 callCount.incrementAndGet(); in testConcurrentLoadingNull() 2015 assertEquals(1, callCount.get()); in testConcurrentLoadingNull() 2026 assertEquals(2, callCount.get()); in testConcurrentLoadingNull() 2038 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingUncheckedException() local 2047 callCount.incrementAndGet(); in testConcurrentLoadingUncheckedException() 2055 assertEquals(1, callCount.get()); in testConcurrentLoadingUncheckedException() [all …]
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheLoadingTest.java | 1967 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingDefault() local 1976 callCount.incrementAndGet(); in testConcurrentLoadingDefault() 1984 assertEquals(1, callCount.get()); in testConcurrentLoadingDefault() 1999 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingNull() local 2007 callCount.incrementAndGet(); in testConcurrentLoadingNull() 2015 assertEquals(1, callCount.get()); in testConcurrentLoadingNull() 2026 assertEquals(2, callCount.get()); in testConcurrentLoadingNull() 2038 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingUncheckedException() local 2047 callCount.incrementAndGet(); in testConcurrentLoadingUncheckedException() 2055 assertEquals(1, callCount.get()); in testConcurrentLoadingUncheckedException() [all …]
|
/external/deqp/modules/glshared/ |
D | glsStateChangePerfTestCases.hpp | 117 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount) = 0;
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowContentResolverTest.java | 328 AtomicInteger callCount = new AtomicInteger(); in openOutputStream_shouldReturnRegisteredStream() local 334 callCount.incrementAndGet(); in openOutputStream_shouldReturnRegisteredStream() 345 assertThat(callCount.get()).isEqualTo(0); in openOutputStream_shouldReturnRegisteredStream() 347 assertThat(callCount.get()).isEqualTo(1); in openOutputStream_shouldReturnRegisteredStream() 350 assertThat(callCount.get()).isEqualTo(1); in openOutputStream_shouldReturnRegisteredStream()
|
/external/guice/lib/build/ |
D | easymock.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/easymock/
org/ ... |
/external/guice/extensions/persist/lib/ |
D | easymock.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/easymock/
org/ ... |
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 1027 int callCount = 0; in WriteCppReplayFunctionWithParts() local 1045 if (partCount > 0 && ++callCount % kFunctionSizeLimit == 0) in WriteCppReplayFunctionWithParts()
|
/external/guice/extensions/struts2/lib/ |
D | freemarker-2.3.16.jar | META-INF/
META-INF/MANIFEST.MF
freemarker/
freemarker/cache/
freemarker/ ... |
D | core-3.1.1.jar | META-INF/
org/
org/eclipse/
org/eclipse/jdt/
org/eclipse ... |
/external/cldr/tools/java/libs/ |
D | icu4j.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/kotlinc/lib/ |
D | kotlin-compiler.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/backend-common. ... |