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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/unistd/
eventfd.c 7 int eventfd_read(int fd, eventfd_t *counter)
9 int ret = read(fd, counter, sizeof(*counter));
11 if (ret == sizeof(*counter))
17 int eventfd_write(int fd, eventfd_t counter)
19 int ret = write(fd, &counter, sizeof(counter));
21 if (ret == sizeof(counter))
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DHValidationParameters.java 8 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);
DSAValidationParameters.java 8 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)
  /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
test_static_init.cpp 11 /* check the counter on the library object
15 printf("KO (counter(shared) == %d, expected 1)\n", c);
19 /* check the counter on the executable object,
24 printf("KO (counter(executable) == %d, expected 2)\n", c);
lib_static_init.h 7 static int counter; member in class:Foo
  /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,
  /external/oprofile/daemon/
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);
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_events.c 3 * Event details for each counter
88 event->value = event->counter
110 event->counter = copy_ulong(&c, ':');
129 struct opd_event * find_counter_event(unsigned long counter)
134 if (counter >= OP_MAX_COUNTERS) {
135 if((ret = opd_ext_find_counter_event(counter)) != NULL)
140 if (counter == opd_events[i].counter)
144 fprintf(stderr, "Unknown event for counter %lu\n", counter);
    [all...]
  /cts/tests/assets/webkit/
test_timer.html 20 var counter = 0;
23 counter += 1;
24 document.title = counter;
25 document.getElementById("COUNTER").innerHTML = counter;
34 Timer test <span id="COUNTER">0</span>.
  /external/webkit/LayoutTests/http/tests/appcache/resources/
online-whitelist.manifest 2 counter.php?cached
11 counter.php?cached
14 counter.php?uncache
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
ArraysTest.java 80 for (int counter = 0; counter < arraySize; counter++) {
83 convertedList.get(counter) == objectArray[counter]);
95 for (int counter = 0; counter < arraySize; counter++) {
98 convertedList.get(counter) == myArray[counter]);
    [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/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...]
  /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...]
  /external/iptables/extensions/
libipt_quota.man 1 Implements network quotas by decrementing a byte counter with each
  /external/oprofile/libop/
op_alloc_counter.c 3 * hardware counter allocation
23 /** the head of allowed counter for this event */
29 /** counter nr */
30 int counter; member in struct:counter_arc
31 /** the next counter allowed for this event */
40 * build an array of counter list allowed for each events
41 * counter_arc_head[i] is the list of allowed counter for pev[i] events
61 arc->counter = j;
62 /* we are looping by increasing counter number,
64 * so we add at end to ensure counter wil
    [all...]
op_alloc_counter.h 3 * hardware counter allocation
28 * @param pev array of selected event we want to bind to counter
32 * Try to calculate a binding between passed event in pev and counter number.
33 * The binding is returned in a size_t * where returned ptr[i] is the counter
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-047.js 25 var counter = 0;
26 eval("for ( counter = 0\n"
27 + "counter <= 1\n"
28 + "counter++ )\n"
lexical-049.js 24 var counter = 0;
25 eval("for ( counter = 0\n"
26 + "counter <= 1;\n"
27 + "counter++ )\n"
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 9 * Implements the Segmented Integer Counter (SIC) mode on top of a simple
18 private byte[] counter; field in class:SICBlockCipher
32 this.counter = new byte[blockSize];
82 cipher.processBlock(counter, 0, counterOut, 0);
94 for (int i = counter.length - 1; i >= 0; i--)
96 int x = (counter[i] & 0xff) + carry;
107 counter[i] = (byte)x;
110 return counter.length;
116 System.arraycopy(IV, 0, counter, 0, counter.length)
    [all...]

Completed in 1873 milliseconds

1 2 3 4 5 6 7 8 91011>>