/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/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/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/icu/icu4c/source/i18n/ |
D | number_fluent.cpp | 430 auto* callCount = reinterpret_cast<u_atomic_int32_t*>(fUnsafeCallCount); in clear() local 431 umtx_storeRelease(*callCount, 0); in clear() 440 auto* callCount = reinterpret_cast<u_atomic_int32_t*>(fUnsafeCallCount); in lnfMoveHelper() local 441 umtx_storeRelease(*callCount, INT32_MIN); in lnfMoveHelper() 703 auto* callCount = reinterpret_cast<u_atomic_int32_t*>( in computeCompiled() local 711 int32_t currentCount = umtx_loadAcquire(*callCount); in computeCompiled() 713 currentCount = umtx_atomic_inc(callCount); in computeCompiled() 725 umtx_storeRelease(*callCount, INT32_MIN); in computeCompiled() 742 auto* callCount = reinterpret_cast<u_atomic_int32_t*>( in getCallCount() local 744 return umtx_loadAcquire(*callCount); in getCallCount()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/ |
D | LocalizedNumberFormatter.java | 31 static final AtomicLongFieldUpdater<LocalizedNumberFormatter> callCount = AtomicLongFieldUpdater field in LocalizedNumberFormatter 191 long currentCount = callCount.incrementAndGet(this); in computeCompiled()
|
/external/icu/android_icu4j/src/main/java/android/icu/number/ |
D | LocalizedNumberFormatter.java | 32 static final AtomicLongFieldUpdater<LocalizedNumberFormatter> callCount = AtomicLongFieldUpdater field in LocalizedNumberFormatter 187 long currentCount = callCount.incrementAndGet(this); in computeCompiled()
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheLoadingTest.java | 1940 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingDefault() local 1947 callCount.incrementAndGet(); in testConcurrentLoadingDefault() 1955 assertEquals(1, callCount.get()); in testConcurrentLoadingDefault() 1970 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingNull() local 1976 callCount.incrementAndGet(); in testConcurrentLoadingNull() 1984 assertEquals(1, callCount.get()); in testConcurrentLoadingNull() 1995 assertEquals(2, callCount.get()); in testConcurrentLoadingNull() 2007 final AtomicInteger callCount = new AtomicInteger(); in testConcurrentLoadingUncheckedException() local 2014 callCount.incrementAndGet(); in testConcurrentLoadingUncheckedException() 2022 assertEquals(1, callCount.get()); in testConcurrentLoadingUncheckedException() [all …]
|
/external/v8/src/inspector/ |
D | v8-profiler-agent-impl.cc | 258 bool callCount = m_state->booleanProperty( in restore() local 262 startPreciseCoverage(Maybe<bool>(callCount), Maybe<bool>(detailed)); in restore() 293 Response V8ProfilerAgentImpl::startPreciseCoverage(Maybe<bool> callCount, in startPreciseCoverage() argument 296 bool callCountValue = callCount.fromMaybe(false); in startPreciseCoverage()
|
D | js_protocol.pdl | 779 optional boolean callCount
|
/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()
|