HomeSort by relevance Sort by last modified time
    Searched defs:counter (Results 226 - 250 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
json2.js 72 var counter = 0; variable
74 counter++;
78 assertEquals(2, counter);
82 counter++;
87 assertEquals(4, counter);
92 counter++;
100 counter++;
  /external/chromium_org/webkit/child/
webkitplatformsupport_impl.cc 403 base::HistogramBase* counter = local
406 DCHECK_EQ(name, counter->histogram_name());
407 counter->Add(sample);
414 base::HistogramBase* counter = local
417 DCHECK_EQ(name, counter->histogram_name());
418 counter->Add(sample);
    [all...]
  /external/dropbear/
progressmeter.c 61 static volatile off_t *counter; /* progress counter */ variable
122 transferred = *counter - cur_pos;
123 cur_pos = *counter;
245 counter = ctr;
  /external/freetype/include/freetype/internal/
pshints.h 191 * counter-controlled horizontal or vertical stems at once.
202 * pairs for the counter-controlled stems.
209 * counter-controlled).
333 * The function to set counter-controlled stems.
520 * A method of the @T2_Hints class used to set a given counter mask
649 * counter ::
650 * The function to set counter masks.
663 T2_Hints_CounterFunc counter; member in struct:T2_Hints_FuncsRec_
  /external/icu4c/test/intltest/
tufmtts.cpp 255 int counter = 0; local
310 u_strToUTF8(tmp1, 128, &len, expected[counter].unescape().getTerminatedBuffer(), expected[counter].unescape().length(), &status);
313 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
320 ++counter;
  /external/kernel-headers/original/asm-mips/
atomic.h 23 typedef struct { volatile int counter; } atomic_t; member in struct:__anon21508
33 #define atomic_read(v) ((v)->counter)
42 #define atomic_set(v, i) ((v)->counter = (i))
63 : "=&r" (temp), "=m" (v->counter)
64 : "Ir" (i), "m" (v->counter));
78 : "=&r" (temp), "=m" (v->counter)
79 : "Ir" (i), "m" (v->counter));
84 v->counter += i;
108 : "=&r" (temp), "=m" (v->counter)
109 : "Ir" (i), "m" (v->counter));
407 typedef struct { volatile long counter; } atomic64_t; member in struct:__anon21509
    [all...]
  /external/libnfc-nxp/src/
phHal4Nfc_Reader.c 255 uint16_t counter= 0; local
328 for (counter = 2; counter < psTransceiveInfo->sSendData.length;
329 counter++)
331 psTransceiveInfo->sSendData.buffer[counter - 2] =
332 psTransceiveInfo->sSendData.buffer[counter];
354 uint16_t counter; local
384 for (counter = 2; counter < psTransceiveInfo->sSendData.length;
385 counter++
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_stipple.c 50 float counter; member in struct:stipple_stage
112 stipple_test(int counter, ushort pattern, int factor)
114 int b = (counter / factor) & 0xf;
143 stipple->counter = 0;
149 int result = stipple_test( (int) stipple->counter+i,
170 stipple->counter += length;
178 stipple->counter = 0;
186 stipple->counter = 0;
194 stipple->counter = 0;
  /external/mesa3d/src/gallium/auxiliary/os/
os_thread.h 398 int counter; member in struct:__anon24817
407 sema->counter = init_val;
417 /** Signal/increment semaphore counter */
422 sema->counter++;
427 /** Wait for semaphore counter to be greater than zero */
432 while (sema->counter <= 0) {
435 sema->counter--;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 127 /* XXX: Give up if the counter is modified within an IF block. We
134 /* Find the index of the counter register. */
192 struct rc_src_register * counter; local
197 /* Find the counter and the upper limit */
202 counter = &loop->Cond->U.I.SrcReg[1];
207 counter = &loop->Cond->U.I.SrcReg[0];
214 /* Find the initial value of the counter */
215 counter_value.Src = counter;
224 DBG("Initial counter value cannot be determined.\n");
227 DBG("Initial counter value is %f\n", counter_value.Value)
    [all...]
  /external/opencv/cv/src/
cvgeometry.cpp 176 int i, total, counter = 0; local
235 counter += dist > 0;
238 result = counter % 2 == 0 ? -100 : 100;
286 counter += dist > 0;
289 result = counter % 2 == 0 ? -100 : 100;
339 counter += dist_num > 0;
343 if( counter % 2 == 0 )
  /external/openssh/
progressmeter.c 71 static volatile off_t *counter; /* progress counter */ variable
132 transferred = *counter - cur_pos;
133 cur_pos = *counter;
256 counter = ctr;
  /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/proguard/src/proguard/shrink/
ClassShrinker.java 262 for (int counter = 0; counter < classCount; counter++)
329 int counter = 1; local
335 constantIndexMap[index] = counter;
347 constantPool[counter++] = constant;
352 for (int index = counter; index < length; index++)
357 return counter;
368 int counter = 0; local
375 array[counter++] = array[index]
429 int counter = 0; local
    [all...]
  /external/qemu/hw/
i8254.c 67 int counter; local
75 counter = (s->count - d) & 0xffff;
79 counter = s->count - ((2 * d) % s->count);
82 counter = s->count - (d % s->count);
85 return counter;
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 728 arcID j, counter = 0; local
747 counter++;
751 if (counter == 0) break;
  /external/srec/srec/Recognizer/src/
Recognizer.c 247 static int counter = 0; local
256 if ( ( counter % COUNT_INTERVAL ) == 0 )
257 PLogMessage ( "Entering Recognizer Put Audio %d Times\n", counter );
258 counter++;
268 static int counter = 0; local
277 if ( ( counter % COUNT_INTERVAL ) == 0 )
278 PLogMessage ( "Entering Recognizer Advance %d Times\n", counter );
279 counter++;
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 79 static int counter = 0; local
100 counter++;
105 (int) getpid(), counter);
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.c 114 u8 counter[2]; local
125 addr[1] = counter;
132 WPA_PUT_BE16(counter, _counter);
137 wpa_hexdump(MSG_DEBUG, "EAP-SIM: counter", counter, 2);
142 /* XKEY' = SHA1(Identity|counter|NONCE_S|MK) */
325 int eap_aka_prime_derive_keys_reauth(const u8 *k_re, u16 counter,
334 * MK = PRF'(K_re,"EAP-AKA' re-auth"|Identity|counter|NONCE_S)
339 WPA_PUT_BE16(seed3, counter);
506 attr->counter = -1
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 62 // MASK - mask to select counter's bytes after shift to right
85 // COUNTER_BASE - initial value to set to "counter" before computing "nextBytes(..)";
142 private transient long counter; field in class:SHA1PRNG_SecureRandomImpl
181 counter = COUNTER_BASE;
271 * the current seed with a 64-bit counter appended is used to compute new bits.
272 * The counter is incremented by 1 for each 20-byte output. <BR>
315 // seed bytes < 48 - remaining bytes are enough for all, 8 counter bytes,
317 // 48 < seed bytes < 56 - remaining 9 bytes are for 0x80 and 8 counter bytes
319 // seed bytes > 55 - extra frame contains both counter's bytes
370 seed[lastWord] = (int) (counter >>> 32)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 85 int counter = 0; local
88 counter++;
93 if(counter == 1) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
NfcImportVCardActivity.java 88 VCardEntryCounter counter = null; local
96 counter = new VCardEntryCounter();
98 parser.addInterpreter(counter);
106 counter = new VCardEntryCounter();
108 parser.addInterpreter(counter);
134 detector.getEstimatedCharset(), vcardVersion, counter.getCount());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
iatomic.h 18 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39024
29 #define atomic_read(v) ((v)->counter)
39 #define atomic_set(v,i) (((v)->counter) = (i))
53 :"=m" (v->counter)
54 :"ir" (i), "m" (v->counter));
69 :"=m" (v->counter)
70 :"ir" (i), "m" (v->counter));
89 :"=m" (v->counter), "=qm" (c)
90 :"ir" (i), "m" (v->counter) : "memory");
105 :"=m" (v->counter)
231 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39025
393 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39026
499 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39027
687 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39028
927 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39029
1019 typedef struct { volatile int counter; } atomic_t; member in struct:__anon39030
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
iatomic.h 18 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40614
29 #define atomic_read(v) ((v)->counter)
39 #define atomic_set(v,i) (((v)->counter) = (i))
53 :"=m" (v->counter)
54 :"ir" (i), "m" (v->counter));
69 :"=m" (v->counter)
70 :"ir" (i), "m" (v->counter));
89 :"=m" (v->counter), "=qm" (c)
90 :"ir" (i), "m" (v->counter) : "memory");
105 :"=m" (v->counter)
231 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40615
393 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40616
499 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40617
687 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40618
927 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40619
1019 typedef struct { volatile int counter; } atomic_t; member in struct:__anon40620
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soundfont.h 39 int counter; member in struct:snd_sf_zone
49 int counter; member in struct:snd_sf_sample

Completed in 1007 milliseconds

1 2 3 4 5 6 7 8 91011>>