HomeSort by relevance Sort by last modified time
    Searched refs:counter (Results 276 - 300 of 1106) sorted by null

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetString.java 78 int counter = 0;
82 return counter < octs.length;
87 return octs[counter++];
  /external/eigen/test/
schur_complex.cpp 20 for(int counter = 0; counter < g_repeat; ++counter) {
schur_real.cpp 43 for(int counter = 0; counter < g_repeat; ++counter) {
  /external/guava/guava-tests/test/com/google/common/io/
MultiInputStreamTest.java 50 final int[] counter = new int[1]; local
54 if (counter[0]++ != 0) {
60 counter[0]--;
MultiReaderTest.java 36 final int[] counter = new int[1]; local
40 if (counter[0]++ != 0) {
46 counter[0]--;
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 111 int counter = 0;
113 ASSERT_EQ(counter, (*data).one);
114 ++counter;
120 int counter = 0; local
125 pointer->one = counter;
127 ++counter;
132 counter = 0;
134 ASSERT_EQ(counter, (*data).one);
135 ++counter;
RTLinearAllocatorTest.cpp 112 int counter = 0;
114 ASSERT_EQ(counter, (*data).one);
115 ++counter;
121 int counter = 0; local
126 pointer->one = counter;
128 ++counter;
133 counter = 0;
135 ASSERT_EQ(counter, (*data).one);
136 ++counter;
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 133 public void createChainedFinalizer(final AtomicInteger counter, final AtomicBoolean keepGoing) {
136 int count = counter.incrementAndGet();
139 createChainedFinalizer(counter, keepGoing); // recursive!
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketImplFactoryTest.java 66 int counter = 0; local
69 counter++;
74 if(counter == 1) {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerFactoryTest.java 93 int counter = 0; local
96 counter++;
101 if(counter == 1) {
  /libcore/luni/src/test/java/tests/api/java/util/
StringTokenizerTest.java 115 for (int counter = 0; counter < 5; counter++) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
formatter.py 45 def add_label_data(self, format, counter, blankline=None): pass
115 def add_label_data(self, format, counter, blankline = None):
121 self.writer.send_label_data(self.format_counter(format, counter))
127 def format_counter(self, format, counter):
131 label = label + ('%d' % counter)
133 if counter > 0:
134 label = label + self.format_letter(c, counter)
136 if counter > 0:
137 label = label + self.format_roman(c, counter)
142 def format_letter(self, case, counter)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
formatter.py 45 def add_label_data(self, format, counter, blankline=None): pass
115 def add_label_data(self, format, counter, blankline = None):
121 self.writer.send_label_data(self.format_counter(format, counter))
127 def format_counter(self, format, counter):
131 label = label + ('%d' % counter)
133 if counter > 0:
134 label = label + self.format_letter(c, counter)
136 if counter > 0:
137 label = label + self.format_roman(c, counter)
142 def format_letter(self, case, counter)
    [all...]
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 60 // The name of the counter
64 // A counter.
106 public StatsCounterRate(StatsCounter counter, StatsTimer timer) {
107 counter_ = counter;
212 // Counter names table
366 /// Create a counter based on an entry
400 // Example: A counter + a timer == a rate!
401 private void UpgradeCounter(IStatsCounter old_counter, IStatsCounter counter)
403 if (old_counter is StatsCounter && counter is StatsTimer)
406 counter as StatsTimer);
    [all...]
  /external/opencv/cvaux/src/
cvhmm1d.cpp 322 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 we will use transP matrix *
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 42 unsigned int counter, counter_too_small; member in struct:eap_sim_data
453 unsigned int counter; local
466 counter = data->counter_too_small;
468 counter = data->counter;
470 wpa_printf(MSG_DEBUG, " *AT_COUNTER %d", counter);
471 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);
504 wpa_printf(MSG_DEBUG, " *AT_COUNTER %d", data->counter);
505 eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, data->counter,
710 /* RFC 4186 specifies that counter is initialized to one afte
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedHashSetTest.java 85 for (int counter = 0; counter < objArray.length; counter++)
87 .contains(objArray[counter]));
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
NamespaceSupport.java 275 private int counter = 0; field in class:NamespaceSupport.Prefixes
290 return (counter< size);
297 if (counter< size){
298 return fPrefixes[counter++];
  /external/chromium/chrome/browser/extensions/
extension_metrics_module.cc 78 Histogram* counter; local
80 counter = LinearHistogram::FactoryGet(full_name,
86 counter = Histogram::FactoryGet(full_name,
93 counter->Add(sample);
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store_unittest.cc 167 scoped_refptr<CallbackCounter> counter(new CallbackCounter());
170 ASSERT_EQ(0, counter->callback_count());
172 store_->Flush(NewRunnableMethod(counter.get(), &CallbackCounter::Callback));
178 ASSERT_EQ(1, counter->callback_count());
  /external/chromium_org/base/
bind_unittest.cc 186 int GetCopies(const CopyCounter& counter) {
187 return counter.copies();
662 CopyCounter counter(&copies, &assigns);
664 Bind(&GetCopies, ConstRef(counter));
688 DeleteCounter* counter = new DeleteCounter(&deletes); local
693 Bind(&PolymorphicIdentity<DeleteCounter*>, Owned(counter));
694 ASSERT_EQ(counter, no_capture_cb.Run());
695 ASSERT_EQ(counter, no_capture_cb.Run());
701 counter = new DeleteCounter(&deletes);
703 Bind(&DeleteCounter::VoidMethod0, Owned(counter));
732 DeleteCounter* counter = new DeleteCounter(&deletes); local
    [all...]
  /external/chromium_org/remoting/protocol/
authenticator_test_base.cc 29 ACTION_P(QuitThreadOnCounter, counter) {
30 --(*counter);
31 EXPECT_GE(*counter, 0);
32 if (*counter == 0)
ssl_hmac_channel_authenticator_unittest.cc 42 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/
lp_bld_depth.h 89 LLVMValueRef counter);
  /external/clang/test/SemaCXX/
nested-name-spec.cpp 196 class Counter { public: static int count; };
197 typedef Counter counter; typedef in namespace:test1::ns
199 using ns::counter;
203 counter c;
205 counter::count++;

Completed in 5130 milliseconds

<<11121314151617181920>>