Searched refs:counter (Results 76 - 100 of 809) sorted by relevance

1234567891011>>

/external/valgrind/coregrind/m_debuginfo/
H A Dtinfl.c269 tinfl_status status = TINFL_STATUS_FAILED; mz_uint32 num_bits, dist, counter, num_extra; tinfl_bit_buf_t bit_buf; local
277 num_bits = r->m_num_bits; bit_buf = r->m_bit_buf; dist = r->m_dist; counter = r->m_counter; num_extra = r->m_num_extra; dist_from_out_buf_start = r->m_dist_from_out_buf_start;
280 bit_buf = num_bits = dist = counter = num_extra = r->m_zhdr0 = r->m_zhdr1 = 0; r->m_z_adler32 = r->m_check_adler32 = 1;
284 counter = (((r->m_zhdr0 * 256 + r->m_zhdr1) % 31 != 0) || (r->m_zhdr1 & 32) || ((r->m_zhdr0 & 15) != 8));
285 if (!(decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF)) counter |= (((1U << (8U + (r->m_zhdr0 >> 4))) > 32768U) || ((out_buf_size_mask + 1) < (SizeT)(1U << (8U + (r->m_zhdr0 >> 4)))));
286 if (counter) { TINFL_CR_RETURN_FOREVER(36, TINFL_STATUS_FAILED); }
295 for (counter = 0; counter < 4; ++counter) { if (num_bits) TINFL_GET_BITS(6, r->m_raw_header[counter],
[all...]
/external/boringssl/include/openssl/
H A Dchacha.h31 // equal. The initial block counter is specified by |counter|.
34 const uint8_t nonce[12], uint32_t counter);
/external/boringssl/src/include/openssl/
H A Dchacha.h31 // equal. The initial block counter is specified by |counter|.
34 const uint8_t nonce[12], uint32_t counter);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h30 BlockCounter counter; member in class:clang::ento::WorkListUnit
38 counter(C),
44 counter(C),
51 /// Returns the block counter map associated with the worklist unit.
52 BlockCounter getBlockCounter() const { return counter; }
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DDM.java62 for (int counter = 0; counter < cnt; counter++) {
64 attributeContainer.getAttributeInfo(counter, attributeInfo);
/external/libopus/silk/
H A Dresampler_down2_3.c46 opus_int32 nSamplesIn, counter, res_Q6; local
66 counter = nSamplesIn;
67 while( counter > 2 ) {
86 counter -= 3;
/external/ltp/include/old/
H A Dusctest.h103 int usc_test_looping(int counter);
/external/proguard/src/proguard/obfuscate/
H A DAttributeShrinker.java104 int counter = 0;
111 array[counter++] = array[index];
116 Arrays.fill(array, counter, length, null);
118 return counter;
/external/tensorflow/tensorflow/core/util/
H A Dwork_sharder.cc63 BlockingCounter counter(num_shards_used - 1);
66 workers->Schedule([&work, &counter, start, limit]() {
68 counter.DecrementCount(); // The shard is done.
74 counter.Wait();
/external/tpm2/
H A DEC_Ephemeral.c36 out->counter = CryptCommit();
H A DRSAKeySieve_fp.h20 UINT32 *counter // IN/OUT: Counter value to allow KDF iteration to be
/external/webrtc/talk/app/webrtc/
H A Dfakemetricsobserver.cc45 int counter,
52 ++counters[counter];
63 int counter) const {
66 const auto& it = counters_[type].find(counter);
43 IncrementEnumCounter( PeerConnectionEnumCounterType type, int counter, int counter_max) argument
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
H A DLooperExecutorTest.java27 final int counter[] = new int[1];
34 counter[0]++;
35 Log.d(TAG, "Run " + counter[0]);
40 // Try to execute a counter increment task before starting an executor.
43 // Start the executor and run expected amount of counter increment task.
59 // Wait for final looper task and make sure the counter increment task
63 assertTrue (counter[0] == expectedCounter);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_peap_common.c19 unsigned char counter = 0; local
46 addr[3] = &counter;
64 addr[4] = &counter;
70 counter++;
/external/wpa_supplicant_8/src/eap_common/
H A Deap_peap_common.c19 unsigned char counter = 0; local
46 addr[3] = &counter;
64 addr[4] = &counter;
70 counter++;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_peap_common.c19 unsigned char counter = 0; local
46 addr[3] = &counter;
64 addr[4] = &counter;
70 counter++;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
H A DCounterColumn.java30 * Column that prints the counter values of entities for each item and a summary
40 * counter entity for this column
50 protected int getValue(final ICounter counter) {
51 return counter.getTotalCount();
60 * counter entity for this column
70 protected int getValue(final ICounter counter) {
71 return counter.getMissedCount();
80 * counter entity for this column
90 protected int getValue(final ICounter counter) {
91 return counter
159 getValue(ICounter counter) argument
[all...]
H A DBarColumn.java51 * counter entity for visualization
78 final ICounter counter = total.getCounter(entity);
79 td.text(integerFormat.format(counter.getMissedCount())).text(" of ")
80 .text(integerFormat.format(counter.getTotalCount()));
87 final ICounter counter = item.getNode().getCounter(entity);
88 final int missed = counter.getMissedCount();
90 final int covered = counter.getCoveredCount();
/external/javassist/sample/rmi/
H A DCountApplet.java13 private Counter counter; field in class:CountApplet
32 paramName = "counter";
53 counter = (Counter)importer.lookupObject(paramName);
54 message = Integer.toString(counter.get());
62 counter.increase();
63 message = Integer.toString(counter.get());
/external/ltp/testcases/kernel/syscalls/mincore/
H A Dmincore02.c101 int lock_pages, counter; local
119 for (counter = 0; counter < num_pages; counter++) {
120 if (vec[counter] & 1)
/external/proguard/src/proguard/io/
H A DManifestRewriter.java161 private int counter = 0; field in class:ManifestRewriter.SplitLineWriter
178 counter = 0;
180 else if (counter == 70)
186 counter = 2;
190 counter++;
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java370 int counter = 1;
376 constantIndexMap[index] = counter;
390 constantIndexMap[index] = counter;
393 constantPool[counter++] = constant;
403 Arrays.fill(constantPool, counter, length, null);
405 return counter;
438 int counter = 0;
445 array[counter++] = array[index];
450 Arrays.fill(array, counter, length, 0);
452 return counter;
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_UnmodifiableMapTest.java145 for (int counter = 0; it.hasNext(); counter++) {
148 objArray[counter] == it.next());
154 for (int counter = 0; it.hasNext(); counter++) {
157 objArray[counter] == it.next());
/external/fio/os/windows/
H A Ddobuild.cmd3 set /a counter=1
5 if "!counter!"=="1" set FIO_VERSION=%%i
6 set /a counter+=1
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DCounterImpl.java18 * share counter instances.
22 /** Max counter value for which singletons are created */
46 * Mutable version of the counter.
62 * Immutable version of the counter.
76 * Factory method to retrieve a counter with the given number of items.
82 * @return counter instance
93 * Factory method to retrieve a clone of the given counter.
95 * @param counter
96 * counter to copy
97 * @return counter instanc
99 getInstance(final ICounter counter) argument
131 increment(final ICounter counter) argument
[all...]

Completed in 1549 milliseconds

1234567891011>>