Searched defs:counter (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/external/compiler-rt/BlocksRuntime/tests/
H A Ddispatch_async.c20 __block CFIndex counter; local
25 counter = 0;
31 counter++;
34 counter--;
35 if(counter == 0) {
40 if(counter == 0) {
/external/qemu/hw/
H A Dgoldfish_nand.h21 uint64_t counter; member in struct:__anon11559
/external/qemu/telephony/
H A Dtest1.c17 static int counter = 0; variable
25 ++counter;
26 printf( "tick %d/%d a %.2fs\n", counter, MAX_COUNTER, now/1000. );
27 if (counter < MAX_COUNTER)
/external/srtp/crypto/include/
H A Daes_icm.h18 v128_t counter; /* holds the counter value */ member in struct:__anon13087
/external/valgrind/main/none/tests/s390x/
H A Dex_sig.c16 static int counter; local
19 counter++;
27 if (counter == 2) {
/external/chromium/chrome/browser/content_settings/
H A Dstub_settings_observer.h29 int counter; member in class:StubSettingsObserver
/external/oprofile/daemon/
H A Dopd_events.h3 * Event details for each counter
23 unsigned long counter; member in struct:opd_event
36 /** Find the event for the given counter */
37 struct opd_event * find_counter_event(unsigned long counter);
42 void fill_header(struct opd_header * header, unsigned long counter,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java8 private int counter; field in class:DHValidationParameters
12 int counter)
15 this.counter = counter;
20 return counter;
38 if (other.counter != this.counter)
48 return counter ^ Arrays.hashCode(seed);
10 DHValidationParameters( byte[] seed, int counter) argument
H A DDSAValidationParameters.java8 private int counter; field in class:DSAValidationParameters
12 int counter)
15 this.counter = counter;
20 return counter;
30 return counter ^ Arrays.hashCode(seed);
43 if (other.counter != this.counter)
10 DSAValidationParameters( byte[] seed, int counter) argument
/external/chromium/chrome/browser/chromeos/cros/
H A Dcros_library_loader.cc25 base::Histogram* counter = base::Histogram::FactoryTimeGet( local
31 counter->AddTime(delta);
/external/chromium/chrome/common/
H A Dworker_thread_ticker_unittest.cc25 int counter() const { return counter_; } function in class:__anon2719::TestCallback
74 EXPECT_TRUE(callback.counter() > 0);
77 const int counter_value = callback.counter();
79 EXPECT_EQ(counter_value, callback.counter());
92 EXPECT_TRUE(callback.counter() > 0);
94 const int counter_value = callback.counter();
96 EXPECT_EQ(counter_value, callback.counter());
/external/dropbear/libtomcrypt/src/pk/pkcs1/
H A Dpkcs_1_mgf1.c34 ulong32 counter; local
63 /* start counter */
64 counter = 0;
67 /* handle counter */
68 STORE32H(counter, buf);
69 ++counter;
71 /* get hash of seed || counter */
/external/javassist/src/test/test/javassist/proxy/
H A DProxyCacheGCTest.java61 public void createProxy(int counter) argument
67 String targetName = "test.javassist.MyTarget_" + counter;
68 String targetConstructorName = "MyTarget_" + counter;
76 String handlerName = "test.javassist.MyHandler_" + counter;
83 String filterName = "test.javassist.MyFilter" + counter;
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestThroughput.java42 private static long counter = 0; field in class:TestThroughput
65 counter++;
68 //System.out.println( "total:" + total + " counter:" + counter + " lastTime:" + lastTime + " time:" + time );
74 double pps = counter / scale;
76 counter = 0;
/external/openssl/crypto/dsa/
H A Ddsagen.c99 int counter,h; local
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
/external/skia/tests/
H A DClipStackTest.cpp93 int counter = 0; local
95 counter += 1;
97 REPORTER_ASSERT(reporter, count == counter);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dregress-192226.js53 var counter = 0; variable
76 ++counter;
81 ++counter;
86 f(); // sets |counter|
87 actual = counter;
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc148 int counter = 0; local
151 FailTest(counter++ > kNumberOfElements);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
H A Deap_psk_common.c44 u8 counter = 1; local
50 hash[aes_block_size - 1] ^= counter;
53 hash[aes_block_size - 1] ^= counter;
54 counter++;
57 hash[aes_block_size - 1] ^= counter;
60 hash[aes_block_size - 1] ^= counter;
61 counter++;
65 hash[aes_block_size - 1] ^= counter;
69 hash[aes_block_size - 1] ^= counter;
70 counter
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-ctr.c19 * @nonce: Nonce for counter mode (16 bytes)
31 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local
36 os_memcpy(counter, nonce, AES_BLOCK_SIZE);
39 aes_encrypt(ctx, counter, buf);
48 counter[i]++;
49 if (counter[i])
H A Dsha1-prf.c33 u8 counter = 0; local
44 addr[2] = &counter;
62 counter++;
H A Dsha1-tprf.c32 unsigned char counter = 0; local
48 addr[4] = &counter;
55 counter++;
H A Dsha256-prf.c32 u16 counter = 1; local
52 WPA_PUT_LE16(counter_le, counter);
62 counter++;
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_psk_common.c38 u8 counter = 1; local
44 hash[aes_block_size - 1] ^= counter;
47 hash[aes_block_size - 1] ^= counter;
48 counter++;
51 hash[aes_block_size - 1] ^= counter;
54 hash[aes_block_size - 1] ^= counter;
55 counter++;
59 hash[aes_block_size - 1] ^= counter;
63 hash[aes_block_size - 1] ^= counter;
64 counter
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-ctr.c19 * @nonce: Nonce for counter mode (16 bytes)
31 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local
36 os_memcpy(counter, nonce, AES_BLOCK_SIZE);
39 aes_encrypt(ctx, counter, buf);
48 counter[i]++;
49 if (counter[i])

Completed in 1866 milliseconds

1234567891011>>