Searched refs:counter (Results 176 - 200 of 810) sorted by relevance

1234567891011>>

/external/valgrind/main/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/chromium_org/base/win/
H A Dobject_watcher_unittest.cc27 explicit DecrementCountDelegate(int* counter) : counter_(counter) { argument
80 int counter = 1; local
81 DecrementCountDelegate delegate(&counter);
99 EXPECT_EQ(1, counter);
/external/chromium_org/content/browser/gpu/
H A Dgpu_ipc_browsertests.cc90 void OnContextLost(const base::Closure callback, int* counter) { argument
91 (*counter)++;
178 int counter = 0; local
181 base::Unretained(this), run_loop.QuitClosure(), &counter));
189 EXPECT_EQ(1, counter);
/external/chromium_org/third_party/boringssl/src/crypto/chacha/
H A Dchacha_generic.c54 size_t counter);
85 size_t counter) {
93 CRYPTO_chacha_20_neon(out, in, in_len, key, nonce, counter);
113 input[12] = counter;
114 input[13] = ((uint64_t)counter) >> 32;
83 CRYPTO_chacha_20(uint8_t *out, const uint8_t *in, size_t in_len, const uint8_t key[32], const uint8_t nonce[8], size_t counter) argument
/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/oprofile/daemon/
H A Dopd_mangling.c69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg) argument
73 struct opd_event * event = find_counter_event(counter);
142 struct sfile * sf, int counter, int cg)
150 mangled = mangle_filename(last, sf, counter, cg);
193 fill_header(odb_get_data(file), counter, local
141 opd_open_sample_file(odb_t *file, struct sfile *last, struct sfile * sf, int counter, int cg) argument
/external/oprofile/libop/
H A Dop_alloc_counter.c3 * hardware counter allocation
23 /** the head of allowed counter for this event */
29 /** counter nr */
30 int counter; member in struct:counter_arc
31 /** the next counter allowed for this event */
40 * build an array of counter list allowed for each events
41 * counter_arc_head[i] is the list of allowed counter for pev[i] events
61 arc->counter = j;
62 /* we are looping by increasing counter number,
64 * so we add at end to ensure counter wil
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DStatusBarButton.js88 this.element.className = "status-bar-item status-bar-counter hidden";
92 /** @type {!Array.<!{element: !Element, counter: string, value: number, title: string}>} */
95 var element = this.element.createChild("span", "status-bar-counter-item");
98 this._counters.push({counter: counters[i], element: element, value: 0, title: ""});
105 * @param {string} counter
109 setCounter: function(counter, value, title)
112 if (this._counters[i].counter === counter) {
126 var counter = this._counters[i];
127 var value = counter
[all...]
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_bind_uniform_location_unittest.cc147 int counter = 0; local
148 int matrix_location = counter++;
149 int color_a_location = counter++;
150 int color_b_location = counter++;
151 int alpha_location = counter++;
152 int multiplier_location = counter++;
153 int color_c_location = counter++;
/external/openssl/crypto/dsa/
H A Ddsa_gen.c145 int counter=0; local
254 counter=0;
261 if ((counter != 0) && !BN_GENCB_call(cb, 0, counter))
312 counter++;
316 if (counter >= 4096) break;
358 if (counter_ret != NULL) *counter_ret=counter;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java163 for (int counter = 0; counter < 4096; ++counter)
193 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter));
267 // 11. For counter = 0 to (4L – 1) do
269 for (int counter = 0; counter < counterLimit; ++counter)
310 // (optionally) the values of domain_parameter_seed and counter.
316 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter, usageInde
[all...]
/external/chromium_org/media/cast/test/
H A Dend2end_unittest.cc116 int counter[kNumOfLoggingEvents+1]; member in struct:media::cast::__anon8630::__anon8631
132 ++(new_counter.counter[it->type]);
136 ++(map_it->second.counter[it->type]);
155 ++(new_counter.counter[it->type]);
159 ++(map_it->second.counter[it->type]);
1157 total_event_count_for_frame += map_it->second.counter[i];
1162 EXPECT_EQ(1, map_it->second.counter[FRAME_CAPTURE_BEGIN]);
1164 map_it->second.counter[FRAME_CAPTURE_BEGIN];
1166 EXPECT_EQ(1, map_it->second.counter[FRAME_CAPTURE_END]);
1168 map_it->second.counter[FRAME_CAPTURE_EN
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Dblinding.c125 int counter; member in struct:bn_blinding_st
163 /* Set the counter to the special value -1
166 ret->counter = -1;
201 if (b->counter == -1) {
202 b->counter = 0;
205 if (++b->counter == BN_BLINDING_COUNTER && b->e != NULL &&
223 if (b->counter == BN_BLINDING_COUNTER) {
224 b->counter = 0;
241 if (b->counter == -1) {
243 b->counter
[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/chromium-trace/trace-viewer/src/tracing/importer/
H A Dtimeline_stream_importer_test.js210 var counter = model.processes[1].counters['streamed.Allocator'];
211 assertNotUndefined(counter.series);
213 assertEquals(1, counter.series.length);
214 assertEquals(5, counter.series[0].length);
216 assertEquals(48, counter.series[0].getSample(2).value);
217 assertEquals(64, counter.timestamps[4]);
/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/chromium_org/base/
H A Dbind_unittest.cc182 int GetCopies(const CopyCounter& counter) { argument
183 return counter.copies();
658 CopyCounter counter(&copies, &assigns);
660 Bind(&GetCopies, ConstRef(counter));
684 DeleteCounter* counter = new DeleteCounter(&deletes); local
689 Bind(&PolymorphicIdentity<DeleteCounter*>, Owned(counter));
690 ASSERT_EQ(counter, no_capture_cb.Run());
691 ASSERT_EQ(counter, no_capture_cb.Run());
697 counter = new DeleteCounter(&deletes);
699 Bind(&DeleteCounter::VoidMethod0, Owned(counter));
728 DeleteCounter* counter = new DeleteCounter(&deletes); local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_pool.h33 void Setup(int counter, WorkFunction work, void* data);
/external/chromium_org/remoting/protocol/
H A Dauthenticator_test_base.cc30 ACTION_P(QuitThreadOnCounter, counter) {
31 --(*counter);
32 EXPECT_GE(*counter, 0);
33 if (*counter == 0)
H A Dssl_hmac_channel_authenticator_unittest.cc42 ACTION_P(QuitThreadOnCounter, counter) {
43 --(*counter);
44 EXPECT_GE(*counter, 0);
45 if (*counter == 0)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_bld_depth.h89 LLVMValueRef counter);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice_armv7.S22 @ r4: out loop counter
24 @ r9: inner loop counter
39 sub r4, #1 @ Outer loop counter = HALF_SUBFRAMELEN - 1
43 ldr r9, [sp, #32] @ Restore the inner loop counter to order_coef

Completed in 784 milliseconds

1234567891011>>