HomeSort by relevance Sort by last modified time
    Searched refs:counter (Results 1 - 25 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-resources.c 56 long value; /**< current counter value */
74 * @returns new counter or #NULL on failure
79 DBusCounter *counter; local
81 counter = dbus_new (DBusCounter, 1);
82 if (counter == NULL)
85 counter->refcount = 1;
86 counter->value = 0;
88 counter->notify_guard_value = 0;
89 counter->notify_function = NULL;
90 counter->notify_data = NULL
    [all...]
dbus-resources.h 34 typedef void (* DBusCounterNotifyFunction) (DBusCounter *counter,
38 DBusCounter* _dbus_counter_ref (DBusCounter *counter);
39 void _dbus_counter_unref (DBusCounter *counter);
40 void _dbus_counter_adjust (DBusCounter *counter,
42 long _dbus_counter_get_value (DBusCounter *counter);
44 void _dbus_counter_set_notify (DBusCounter *counter,
  /cts/tools/dx-tests/src/dxc/junit/opcodes/monitorenter/jm/
T_monitorenter_1.java 20 public int counter = 0; field in class:T_monitorenter_1
24 int a = counter;
26 counter = ++a;
  /cts/tools/vm-tests/src/dot/junit/opcodes/monitor_enter/d/
T_monitor_enter_1.java 20 public int counter = 0; field in class:T_monitor_enter_1
24 int a = counter;
26 counter = ++a;
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
EmptyStackExceptionTest.java 46 for (int counter = 0; counter < objArray.length + 1; counter++)
59 for (int counter = 0; counter < objArray.length; counter++) {
60 objArray[counter] = new Integer(counter);
64 for (int counter = 0; counter < objArray.length; counter++)
    [all...]
ArraysTest.java 79 for (int counter = 0; counter < arraySize; counter++) {
82 convertedList.get(counter) == objectArray[counter]);
94 for (int counter = 0; counter < arraySize; counter++) {
97 convertedList.get(counter) == myArray[counter]);
    [all...]
RandomTest.java 75 for (int counter = 0; counter < 100; counter++)
101 for (int counter = 1; counter < randomBytes.length; counter++)
102 if (randomBytes[counter] != firstByte)
124 for (int counter = 0; counter < 100; counter++)
    [all...]
  /system/extras/tests/bionic/libc/bionic/
lib_static_init.cpp 7 value = ++Foo::counter;
8 fprintf(stderr, "Foo::Foo for this=%p called (counter = %d)\n", this, counter);
16 int Foo::counter; member in class:Foo
lib_static_init.h 7 static int counter; member in class:Foo
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
DHValidationParameters.java 6 private int counter; field in class:DHValidationParameters
10 int counter)
13 this.counter = counter;
26 if (other.counter != this.counter)
49 int code = counter;
DSAValidationParameters.java 6 private int counter; field in class:DSAValidationParameters
10 int counter)
13 this.counter = counter;
18 return counter;
36 if (other.counter != this.counter)
  /bionic/libc/kernel/arch-arm/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon72
  /external/qemu/telephony/
test1.c 17 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)
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon9099
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon9453
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon9807
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon10587
  /external/webkit/WebKit/android/WebCoreSupport/
V8Counters.cpp 42 V8Counters::Counter::Counter(bool isHistogram)
45 void V8Counters::Counter::addSample(int sample)
51 HashMap<String, V8Counters::Counter*> V8Counters::m_counters;
56 Counter* counter = m_counters.get(name); local
57 if (!counter) {
58 counter = new Counter(false);
59 m_counters.add(name, counter);
68 Counter* counter = new Counter(true); local
76 Counter* counter = reinterpret_cast<Counter*>(histogram); local
100 Counter* counter = iter->second; local
    [all...]
  /external/openssl/crypto/aes/
aes_ctr.c 62 /* NOTE: the IV/counter CTR mode is big-endian. The rest of the AES code
65 /* increment counter (128-bit int) by 1 */
66 static void AES_ctr128_inc(unsigned char *counter) {
69 /* Grab bottom dword of counter and increment */
70 c = GETU32(counter + 12);
72 PUTU32(counter + 12, c);
78 /* Grab 1st dword of counter and increment */
79 c = GETU32(counter + 8);
81 PUTU32(counter + 8, c);
87 /* Grab 2nd dword of counter and increment *
    [all...]
  /external/openssl/crypto/camellia/
cmll_ctr.c 62 /* NOTE: the IV/counter CTR mode is big-endian. The rest of the Camellia code
64 /* increment counter (128-bit int) by 1 */
65 static void Camellia_ctr128_inc(unsigned char *counter)
69 /* Grab bottom dword of counter and increment */
70 c = GETU32(counter + 12);
72 PUTU32(counter + 12, c);
78 /* Grab 1st dword of counter and increment */
79 c = GETU32(counter + 8);
81 PUTU32(counter + 8, c);
87 /* Grab 2nd dword of counter and increment *
    [all...]
  /external/wpa_supplicant/
eap_psk_common.c 41 u8 counter = 1; local
46 hash[aes_block_size - 1] ^= counter;
48 hash[aes_block_size - 1] ^= counter;
49 counter++;
52 hash[aes_block_size - 1] ^= counter;
54 hash[aes_block_size - 1] ^= counter;
55 counter++;
59 hash[aes_block_size - 1] ^= counter;
61 hash[aes_block_size - 1] ^= counter;
62 counter++
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_psk_common.c 44 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/oprofile/daemon/
opd_events.h 3 * 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,
opd_mangling.h 22 * @param counter counter number
25 * Open image sample file for the sfile, counter
26 * counter and set up memory mappings for it.
31 struct sfile * sf, int counter, int cg);
  /bionic/libc/kernel/arch-x86/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon124
23 #define atomic_read(v) ((v)->counter)
25 #define atomic_set(v,i) (((v)->counter) = (i))
27 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
28 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>