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

1 2 3 4 5 6 78 91011>>

  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes_wrap.c 290 * @nonce: Nonce for counter mode (16 bytes)
302 u8 counter[BLOCK_SIZE], buf[BLOCK_SIZE]; local
307 os_memcpy(counter, nonce, BLOCK_SIZE);
310 aes_encrypt(ctx, counter, buf);
319 counter[i]++;
320 if (counter[i])
336 * @nonce: Nonce for counter mode
399 * @nonce: Nonce for counter mode
sha256.c 125 u16 counter = 1; local
145 WPA_PUT_LE16(counter_le, counter);
155 counter++;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 510 for (int counter = 100; counter < 109; counter++) {
512 objArray[counter].toString()).equals(objArray[counter]));
  /external/dbus/dbus/
dbus-transport.c 57 live_messages_size_notify (DBusCounter *counter,
65 _dbus_verbose ("Counter value is now %d\n",
66 (int) _dbus_counter_get_value (counter));
99 DBusCounter *counter; local
116 counter = _dbus_counter_new ();
117 if (counter == NULL)
135 _dbus_counter_unref (counter);
146 transport->live_messages_size = counter;
    [all...]
  /external/wpa_supplicant/
eap_sim_common.c 117 u8 counter[2]; local
128 addr[1] = counter;
135 WPA_PUT_BE16(counter, _counter);
140 wpa_hexdump(MSG_DEBUG, "EAP-SIM: counter", counter, 2);
145 /* XKEY' = SHA1(Identity|counter|NONCE_S|MK) */
241 attr->counter = -1;
407 attr->counter = apos[0] * 256 + apos[1];
409 attr->counter);
sha256.c 125 u16 counter = 0; local
142 WPA_PUT_LE16(counter_le, counter);
152 counter++;
  /external/freetype/src/pshinter/
pshrec.c 495 /* all counter masks into independent counter "paths". */
712 /* add a "hstem3/vstem3" counter to our dimension table */
722 PS_Mask counter = dim->counters.masks; local
725 /* try to find an existing counter mask that already uses */
727 for ( ; count > 0; count--, counter++ )
729 if ( ps_mask_test_bit( counter, hint1 ) ||
730 ps_mask_test_bit( counter, hint2 ) ||
731 ps_mask_test_bit( counter, hint3 ) )
735 /* create a new counter when needed *
    [all...]
  /external/kernel-headers/original/asm-x86/
msr.h 134 #define rdpmc(counter,low,high) \
223 #define rdpmc(counter,low,high) \
226 : "c" (counter))
  /external/v8/src/arm/
macro-assembler-arm.h 370 void SetCounter(StatsCounter* counter, int value,
372 void IncrementCounter(StatsCounter* counter, int value,
374 void DecrementCounter(StatsCounter* counter, int value,
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sake_common.c 219 u8 counter = 0; local
232 addr[3] = &counter; /* Length */
248 counter++;
eap_sim_common.c 119 u8 counter[2]; local
130 addr[1] = counter;
137 WPA_PUT_BE16(counter, _counter);
142 wpa_hexdump(MSG_DEBUG, "EAP-SIM: counter", counter, 2);
147 /* XKEY' = SHA1(Identity|counter|NONCE_S|MK) */
330 int eap_aka_prime_derive_keys_reauth(const u8 *k_re, u16 counter,
339 * MK = PRF'(K_re,"EAP-AKA' re-auth"|Identity|counter|NONCE_S)
344 WPA_PUT_BE16(seed3, counter);
511 attr->counter = -1
    [all...]
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 134 /** Hash counter. */
275 for (int counter = table.length; counter > 0; counter >>= 1,
  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 44 assertEquals(2, t1.counter);
  /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/iproute2/include/libiptc/
libiptc.h 61 struct ipt_counters *counter,
  /external/iptables/include/libiptc/
libiptc.h 61 struct ipt_counters *counter,
  /external/stlport/test/unit/
hash_test.cpp 154 for (size_t counter = 0; counter < 3077; ++counter)
155 hmap.insert(HMapType::value_type(1, counter));
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
wpa_ctrl.c 76 static int counter = 0; local
93 counter++;
98 getpid(), counter);
100 "/tmp/wpa_ctrl_%d-%d", getpid(), counter);
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 154 for (size_t counter = 0; counter < 3077; ++counter)
155 hmap.insert(HMapType::value_type(1, counter));
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 154 for (size_t counter = 0; counter < 3077; ++counter)
155 hmap.insert(HMapType::value_type(1, counter));
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim_db.c 333 static int counter = 0; local
347 "/tmp/eap_sim_db_%d-%d", getpid(), counter++);
947 size_t identity_len, char *reauth_id, u16 counter)
985 r->counter = counter;
999 * @counter: AT_COUNTER value for fast re-authentication
1008 size_t identity_len, char *reauth_id, u16 counter,
1015 counter);
1035 * @counter: AT_COUNTER value for fast re-authentication
1047 u16 counter, const u8 *k_encr, const u8 *k_aut
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
VectorTest.java 119 for (int counter = 0; counter < objArray.length; counter++)
121 .contains(((List) l).get(counter)));
225 for (int counter = vSize - 1; counter >= 0; counter--)
226 assertTrue("Failed to add elements correctly", v.get(counter) == v
227 .get(counter + vSize));
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
VectorTest.java 150 for (int counter = 0; counter < objArray.length; counter++)
152 .contains(((List) l).get(counter)));
308 for (int counter = vSize - 1; counter >= 0; counter--)
309 assertTrue("Failed to add elements correctly", v.get(counter) == v
310 .get(counter + vSize));
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.cpp 538 TimeCounterAuto counter(TimeCounter::WebViewCoreRecordTimeCounter);
786 TimeCounterAuto counter(TimeCounter::WebViewUIDrawTimeCounter);
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc     [all...]

Completed in 5111 milliseconds

1 2 3 4 5 6 78 91011>>