HomeSort by relevance Sort by last modified time
    Searched refs:counter (Results 76 - 100 of 375) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/optimize/peephole/
ClassMerger.java 405 MemberCounter counter = new MemberCounter(); local
414 counter)));
416 return counter.getCount() > 0;
438 MemberCounter counter = new MemberCounter(); local
446 counter,
452 return targetSet.size() < counter.getCount();
462 MemberCounter counter = new MemberCounter(); local
471 counter))))));
473 return counter.getCount() > 0;
483 MemberCounter counter = new MemberCounter() local
    [all...]
  /external/dropbear/
random.c 33 static uint32_t counter = 0; variable
34 /* the max value for the counter, so it won't integer overflow */
45 * and a counter. We feed more data in by hashing the current pool and new
48 * It is important to ensure that counter doesn't wrap around before we
151 counter = 0;
192 sha1_process(&hs, (void*)&counter, sizeof(counter));
195 counter++;
196 if (counter > MAX_COUNTER) {
  /external/stlport/test/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /ndk/tests/device/test-gnustl-full/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /ndk/tests/device/test-stlport/unit/
iter_test.cpp 49 unsigned counter = 0; local
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
51 switch (counter) {
70 unsigned counter = 0; local
71 for (it = v.rbegin(); it != v.rend(); ++it, ++counter) {
72 switch (counter) {
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim_db.h 55 size_t identity_len, char *reauth_id, u16 counter,
59 u16 counter, const u8 *k_encr, const u8 *k_aut,
70 u16 counter; member in struct:eap_sim_reauth
  /libcore/luni/src/test/java/libcore/java/net/
OldURLStreamHandlerFactoryTest.java 81 int counter = 0; local
84 counter++;
89 if(counter == 1) {
  /external/chromium/base/
histogram.h 61 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
63 counter->Add(sample); \
72 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
74 counter->AddTime(sample); \
79 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
81 if ((sample) < (max)) counter->AddTime(sample); \
88 static scoped_refptr<Histogram> counter = LinearHistogram::FactoryGet( \
90 counter->Add(sample); \
146 static scoped_refptr<Histogram> counter = Histogram::FactoryGet( \
148 counter->AddTime(sample);
    [all...]
  /external/oprofile/daemon/
opd_extended.h 78 * @param counter: counter index
80 * Get event struct opd_event from the counter index value.
82 extern struct opd_event * opd_ext_find_counter_event(unsigned long counter);
  /external/oprofile/libop/
op_interface.h 35 u32 counter; /**< counter nr */ member in struct:op_sample
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 25 var counter = 0;
26 eval( "for ( counter = 0;\ncounter <= 1\ncounter++ ) {\nresult += \": got inside for loop\")");
  /external/proguard/src/proguard/optimize/
MethodDescriptorShrinker.java 271 for (int counter = 0; counter < count; counter++)
286 for (int counter = 0; counter < count; counter++)
304 for (int counter = 0; counter < count; counter++)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
set_operations.h 110 difference_type counter = 0; local
117 ++counter;
122 ++counter;
131 return counter + (b - a) + (d - c);
184 difference_type counter = 0; local
191 ++counter;
199 return counter + (b - a);
251 difference_type counter = 0; local
263 ++counter;
267 return counter;
320 difference_type counter = 0; local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CollectionsTest.java 127 for (int counter = 0; counter < colSize; counter++)
128 normalCountingList.add(new Integer(counter));
129 for (int counter = 0; counter < colSize; counter++)
130 offsetCountingList.add(new Integer(counter + colSize));
210 for (int counter = 0; counter < mapSize; counter++)
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
msr.h 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /development/ndk/platforms/android-5/arch-x86/include/asm/
msr.h 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
OAEPEncoding.java 319 int counter = 0; local
325 ItoOSP(counter, C);
331 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, hashBuf.length);
333 while (++counter < (length / hashBuf.length));
335 if ((counter * hashBuf.length) < length)
337 ItoOSP(counter, C);
343 System.arraycopy(hashBuf, 0, mask, counter * hashBuf.length, mask.length - (counter * hashBuf.length));
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 109 for (int counter = 0; counter < 4096; ++counter)
139 return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter));
212 // 11. For counter = 0 to (4L ? 1) do
214 for (int counter = 0; counter < counterLimit; ++counter)
255 // (optionally) the values of domain_parameter_seed and counter.
262 // return new DSAParameters(p, q, g, new DSAValidationParameters(seed, counter));
    [all...]
  /external/chromium/net/disk_cache/
stats.cc 82 // counter; just reset them to zero.
229 // We keep a counter of the data block size on an array where each entry is
248 void Stats::SetCounter(Counters counter, int64 value) {
249 DCHECK(counter > MIN_COUNTER || counter < MAX_COUNTER);
250 counters_[counter] = value;
253 int64 Stats::GetCounter(Counters counter) const {
254 DCHECK(counter > MIN_COUNTER || counter < MAX_COUNTER);
255 return counters_[counter];
    [all...]
stats.h 60 void SetCounter(Counters counter, int64 value);
61 int64 GetCounter(Counters counter) const;
  /external/dbus/dbus/
dbus-message-internal.h 43 DBusCounter *counter);
47 DBusCounter *counter,
  /external/openssl/crypto/dsa/
dsagen.c 99 int counter,h; local
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 53 for (int counter = 0; counter < objArray.length; counter++)
55 .contains(objArray[counter]));
263 for (int counter = startPos; counter < endPos; counter++)
265 aSubSet.contains(objArray[counter]));
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 44 for (int counter = 0; counter < 100; counter++) {
46 elem = list.get(counter);
49 .equals(new Integer(counter)));
120 for (int counter = 0; li.hasNext(); counter++) {
124 .equals(new Integer(counter)));
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
msr.h 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))

Completed in 2629 milliseconds

1 2 34 5 6 7 8 91011>>