Searched refs:counter (Results 201 - 225 of 809) sorted by relevance

1234567891011>>

/external/tpm2/
H A Dstubs_hash.c90 // counter for incremental operations to
96 UINT32 counter = 0; // counter value local
107 counter = *counterInOut;
129 counter++;
138 // Adding counter
139 UINT32_TO_BYTE_ARRAY(counter, marshaledUint32);
162 *counterInOut = counter;
176 UINT32 counter = 0; // counter valu local
[all...]
H A DCommit_fp.h23 UINT16 counter; member in struct:__anon27003
H A DZGen_2Phase_fp.h17 UINT16 counter; member in struct:__anon27196
/external/valgrind/drd/tests/
H A Dannotate_smart_pointer.cpp262 class counter class
265 counter() function in class:counter
268 ~counter()
300 smart_ptr<counter>* pp = reinterpret_cast<smart_ptr<counter>*>(arg);
316 smart_ptr<counter> p(new counter);
319 q->Create(thread_func, new smart_ptr<counter>(p));
321 // Avoid that counter.m_mutex introduces a false ordering on the
322 // counter
[all...]
/external/boringssl/src/crypto/chacha/
H A Dchacha.c37 const uint32_t key[8], const uint32_t counter[4]);
41 uint32_t counter) {
44 uint32_t counter_nonce[4]; counter_nonce[0] = counter;
121 uint32_t counter) {
143 input[12] = counter;
39 CRYPTO_chacha_20(uint8_t *out, const uint8_t *in, size_t in_len, const uint8_t key[32], const uint8_t nonce[12], uint32_t counter) argument
119 CRYPTO_chacha_20(uint8_t *out, const uint8_t *in, size_t in_len, const uint8_t key[32], const uint8_t nonce[12], uint32_t counter) argument
/external/boringssl/src/crypto/fipsmodule/rsa/
H A Dblinding.c126 unsigned counter; member in struct:bn_blinding_st
151 ret->counter = BN_BLINDING_COUNTER - 1;
172 if (++b->counter == BN_BLINDING_COUNTER) {
177 b->counter = 0;
192 b->counter = BN_BLINDING_COUNTER - 1;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stoptheworld_test.cc31 volatile int counter; member in struct:__sanitizer::CallbackArgument
35 : counter(0),
43 __sync_fetch_and_add(&callback_argument->counter, 1);
59 int counter_at_init = __sync_fetch_and_add(&callback_argument->counter, 0);
62 if (__sync_fetch_and_add(&callback_argument->counter, 0) !=
/external/tensorflow/tensorflow/core/kernels/batching_util/
H A Dperiodic_function_test.cc111 int counter = 0; local
119 [&mu, &counter, &listener]() {
121 counter++;
131 EXPECT_EQ(1, counter);
140 EXPECT_EQ(2, counter);
/external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_impl/
H A Dgraph_functions_wrapper.c295 unsigned long long int counter = 0; local
310 counter = GetCounter(info[i]);
311 cum_cycles += counter;
317 counter, 100 * ((double)counter) / total_cycles, cum_cycles,
331 unsigned long long int counter = 0; local
346 counter = GetCounter(info[i]);
347 cum_cycles += counter;
353 counter, 100 * ((double)counter) / total_cycle
[all...]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimators_test.cc96 RateCounterFilter counter(&uplink_, 0, "", "");
127 RateCounterFilter counter(&uplink_, 0, "", "");
216 RateCounterFilter counter(&uplink_, 0, "", "");
234 RateCounterFilter counter(&uplink_, 0, "", "");
275 RateCounterFilter counter(&uplink_, 0, "Receiver", bwe_names[GetParam()]);
281 PrintResults(kCapacityKbps, counter.GetBitrateStats(), 0,
282 receiver.GetDelayStats(), counter.GetBitrateStats());
289 RateCounterFilter counter(&uplink_, 0, "Receiver", bwe_names[GetParam()]);
301 counter.GetBitrateStats(), 0, receiver.GetDelayStats(),
302 counter
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java167 for (int counter = 0; counter < 4096; ++counter)
199 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter));
273 // 11. For counter = 0 to (4L – 1) do
275 for (int counter = 0; counter < counterLimit; ++counter)
314 // (optionally) the values of domain_parameter_seed and counter.
320 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter, usageInde
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBEROctetString.java78 int counter = 0;
82 return counter < octs.length;
87 return octs[counter++];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DGCMBlockCipher.java28 // 2^36-32 : limitation imposed by NIST GCM as otherwise the counter is wrapped and it can leak
52 private byte[] counter; field in class:GCMBlockCipher
209 this.counter = Arrays.clone(J0);
531 counter = Arrays.clone(J0);
613 c += counter[15] & 0xFF; counter[15] = (byte)c; c >>>= 8;
614 c += counter[14] & 0xFF; counter[14] = (byte)c; c >>>= 8;
615 c += counter[13] & 0xFF; counter[1
[all...]
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A DTryWithResourcesRewriterTest.java234 DesugaredThrowableMethodCallCounter counter =
236 reader.accept(counter, 0);
237 return counter;
248 DesugaredThrowableMethodCallCounter counter = new DesugaredThrowableMethodCallCounter(loader);
249 reader.accept(counter, 0);
250 return counter;
256 final AtomicInteger counter = new AtomicInteger();
264 counter.incrementAndGet();
271 return counter.get() > 0;
329 AtomicInteger counter
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DMultiInputStreamTest.java50 final int[] counter = new int[1];
54 if (counter[0]++ != 0) {
60 counter[0]--;
H A DMultiReaderTest.java36 final int[] counter = new int[1];
40 if (counter[0]++ != 0) {
46 counter[0]--;
/external/opencv/cvaux/src/
H A Dcvhmm1d.cpp322 int* counter; /* array of counters for every state */
339 /* integer counter is allocated for every state */
340 counter = (int*)icvAlloc( total * sizeof(int) );
347 memset( counter, 0 , total*sizeof(int) );
383 samples[state][counter[state]] = vector;
384 samples_mix[state][counter[state]] = &(obs->mix[i]);
385 counter[state]++;
390 memset( counter, 0, total*sizeof(int) );
430 icvFree( &counter );
835 /* as a counter w
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DNamespaceSupport.java275 private int counter = 0; field in class:NamespaceSupport.Prefixes
290 return (counter< size);
297 if (counter< size){
298 return fPrefixes[counter++];
/external/boringssl/src/crypto/fipsmodule/rand/
H A Dinternal.h50 } counter; member in struct:__anon964
/external/llvm/utils/
H A Dfindoptdiff75 #counter=0
80 diffs="diffs."$((counter++))
/external/ltp/testcases/kernel/controllers/cpuctl/
H A Dcpuctl_def_task02.c97 int counter = 0; /* To take n number of readings */ local
230 counter++;
232 if (counter >= NUM_INTERVALS) {
239 counter = 0;
/external/ltp/testcases/realtime/func/prio-wake/
H A Dprio-wake.c100 int counter; member in struct:array
158 wakeup.arr[wakeup.counter++] = mypri;
183 wakeup.counter = 0;
222 for (i = 0; i < (wakeup.counter - 1); i++) {
/external/ltp/testcases/realtime/include/
H A Dlibrttest.h93 typedef struct { volatile int counter; } atomic_t; member in struct:__anon15279
119 return __sync_add_and_fetch(&v->counter, i);
135 //#define atomic_get(v) ((v)->counter)
138 return v->counter;
143 //#define atomic_set(i,v) ((v)->counter = (i))
146 v->counter = i;
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dquery9.h43 unsigned counter; /* Number of pending Begin/End (0 if internal multithreading off) */ member in struct:NineQuery9
/external/pdfium/fxbarcode/oned/
H A DBC_OnedCodaBarWriter.cpp173 int32_t counter = 0;
178 if (((code >> (6 - bit)) & 1) == 0 || counter == m_iWideNarrRatio - 1) {
181 counter = 0;
183 counter++;

Completed in 2136 milliseconds

1234567891011>>