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

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-resources.c 58 long size_value; /**< current size counter value */
59 long unix_fd_value; /**< current unix fd counter value */
62 long peak_size_value; /**< largest ever size counter value */
63 long peak_unix_fd_value; /**< largest ever unix fd counter value */
85 * @returns new counter or #NULL on failure
90 DBusCounter *counter; local
92 counter = dbus_new0 (DBusCounter, 1);
93 if (counter == NULL)
96 counter->refcount = 1;
98 return counter;
    [all...]
dbus-resources.h 34 typedef void (* DBusCounterNotifyFunction) (DBusCounter *counter,
38 DBusCounter* _dbus_counter_ref (DBusCounter *counter);
39 void _dbus_counter_unref (DBusCounter *counter);
41 void _dbus_counter_adjust_size (DBusCounter *counter,
43 void _dbus_counter_adjust_unix_fd (DBusCounter *counter,
45 void _dbus_counter_notify (DBusCounter *counter);
46 long _dbus_counter_get_size_value (DBusCounter *counter);
47 long _dbus_counter_get_unix_fd_value (DBusCounter *counter);
49 void _dbus_counter_set_notify (DBusCounter *counter,
56 long _dbus_counter_get_peak_size_value (DBusCounter *counter);
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CountingInputStreamTest.java 29 private CountingInputStream counter; field in class:CountingInputStreamTest
33 counter = new CountingInputStream(new ByteArrayInputStream(new byte[20]));
37 assertEquals(0, counter.getCount());
38 assertEquals(0, counter.read());
39 assertEquals(1, counter.getCount());
43 assertEquals(10, counter.read(new byte[10]));
44 assertEquals(10, counter.getCount());
48 assertEquals(3, counter.read(new byte[10], 1, 3));
49 assertEquals(3, counter.getCount());
53 assertEquals(10, counter.skip(10))
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DSAValidationParameters.java 9 private int counter; field in class:DSAValidationParameters
13 int counter)
15 this(seed, counter, -1);
20 int counter,
24 this.counter = counter;
30 return counter;
45 return counter ^ Arrays.hashCode(seed);
58 if (other.counter != this.counter)
    [all...]
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);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_perf.h 71 /** Increment the named counter (only for debug builds) */
73 #define LP_COUNT(counter) lp_count.counter++
74 #define LP_COUNT_ADD(counter, incr) lp_count.counter += (incr)
75 #define LP_COUNT_GET(counter) (lp_count.counter)
77 #define LP_COUNT(counter)
78 #define LP_COUNT_ADD(counter, incr) (void)(incr)
79 #define LP_COUNT_GET(counter)
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/c++/
Isr-pin6.cpp 29 static volatile int counter = 0; variable
35 ++counter;
48 if (counter != oldcounter) {
49 fprintf(stdout, "timeout counter == %d\n", counter);
50 oldcounter = counter;
  /cts/tools/vm-tests-tf/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;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
EmptyStackExceptionTest.java 34 for (int counter = 0; counter < objArray.length + 1; counter++)
47 for (int counter = 0; counter < objArray.length; counter++) {
48 objArray[counter] = new Integer(counter);
52 for (int counter = 0; counter < objArray.length; counter++)
    [all...]
  /external/tlsdate/tests/subproc-retry/
subproc.sh 6 if [ $(counter "runs") -lt 3 ]; then
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
ProbeCounterTest.java 27 private ProbeCounter counter; field in class:ProbeCounterTest
31 counter = new ProbeCounter();
36 assertFalse(counter.hasMethods());
37 assertEquals(0, counter.getCount());
42 counter.visitTotalProbeCount(42);
43 assertEquals(42, counter.getCount());
48 assertNull(counter.visitMethod(0, "<clinit>", null, null, null));
49 assertFalse(counter.hasMethods());
54 assertNull(counter.visitMethod(0, "foo", null, null, null));
55 assertTrue(counter.hasMethods())
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/
isr_pin6.c 29 static volatile int counter = 0; variable
35 ++counter;
56 if (counter != oldcounter) {
57 fprintf(stdout, "timeout counter == %d\n", counter);
58 oldcounter = counter;
  /external/v8/test/mjsunit/compiler/
deopt-tonumber-binop.js 15 var counter = 0; variable
19 counter++;
24 counter++;
28 counter = 0;
30 assertEquals(2, counter);
33 counter = 0;
35 assertEquals(2, counter);
38 counter = 0;
40 assertEquals(2, counter);
deopt-tonumber-shift.js 15 var counter = 0; variable
19 counter++;
24 counter++;
28 counter = 0;
30 assertEquals(2, counter);
33 counter = 0;
35 assertEquals(2, counter);
38 counter = 0;
40 assertEquals(2, counter);
  /external/compiler-rt/test/BlocksRuntime/
dispatch_async.c 20 __block CFIndex counter; local
25 counter = 0;
31 counter++;
34 counter--;
35 if(counter == 0) {
40 if(counter == 0) {
  /external/mesa3d/src/gallium/auxiliary/util/
u_time.h 58 int64_t counter; member in struct:util_time
66 t->counter = os_time_get();
79 t2->counter = t1->counter + usecs;
91 return t2->counter - t1->counter;
105 if (t1->counter < t2->counter)
107 else if(t1->counter > t2->counter)
    [all...]
  /external/vixl/src/vixl/a64/
instrument-a64.cc 31 Counter::Counter(const char* name, CounterType type)
38 void Counter::Enable() {
43 void Counter::Disable() {
48 bool Counter::IsEnabled() {
53 void Counter::Increment() {
60 uint64_t Counter::count() {
63 // If the counter is a Gauge, reset the count after reading.
70 const char* Counter::name() {
75 CounterType Counter::type()
141 Counter* counter = new Counter(kCounterList[i].name, kCounterList[i].type); local
168 static Counter* counter = GetCounter("Instruction"); local
215 static Counter* counter = GetCounter("Instruction"); local
260 static Counter* counter = GetCounter("PC Addressing"); local
268 static Counter* counter = GetCounter("Add\/Sub DP"); local
276 static Counter* counter = GetCounter("Logical DP"); local
283 static Counter* counter = GetCounter("Move Immediate"); local
297 static Counter* counter = GetCounter("Other Int DP"); local
305 static Counter* counter = GetCounter("Other Int DP"); local
313 static Counter* counter = GetCounter("Unconditional Branch"); local
321 static Counter* counter = GetCounter("Unconditional Branch"); local
329 static Counter* counter = GetCounter("Compare and Branch"); local
337 static Counter* counter = GetCounter("Test and Branch"); local
345 static Counter* counter = GetCounter("Conditional Branch"); local
353 static Counter* counter = GetCounter("Other"); local
361 static Counter* counter = GetCounter("Other"); local
405 static Counter* counter = GetCounter("Other"); local
413 static Counter* counter = GetCounter("Load Literal"); local
484 static Counter* counter = GetCounter("Logical DP"); local
492 static Counter* counter = GetCounter("Add\/Sub DP"); local
500 static Counter* counter = GetCounter("Add\/Sub DP"); local
508 static Counter* counter = GetCounter("Add\/Sub DP"); local
516 static Counter* counter = GetCounter("Conditional Compare"); local
524 static Counter* counter = GetCounter("Conditional Compare"); local
532 static Counter* counter = GetCounter("Conditional Select"); local
540 static Counter* counter = GetCounter("Other Int DP"); local
548 static Counter* counter = GetCounter("Other Int DP"); local
556 static Counter* counter = GetCounter("Other Int DP"); local
564 static Counter* counter = GetCounter("FP DP"); local
572 static Counter* counter = GetCounter("Conditional Compare"); local
580 static Counter* counter = GetCounter("Conditional Select"); local
588 static Counter* counter = GetCounter("FP DP"); local
596 static Counter* counter = GetCounter("FP DP"); local
604 static Counter* counter = GetCounter("FP DP"); local
612 static Counter* counter = GetCounter("FP DP"); local
620 static Counter* counter = GetCounter("FP DP"); local
628 static Counter* counter = GetCounter("FP DP"); local
636 static Counter* counter = GetCounter("Crypto"); local
644 static Counter* counter = GetCounter("Crypto"); local
652 static Counter* counter = GetCounter("Crypto"); local
660 static Counter* counter = GetCounter("NEON"); local
668 static Counter* counter = GetCounter("NEON"); local
676 static Counter* counter = GetCounter("NEON"); local
684 static Counter* counter = GetCounter("NEON"); local
692 static Counter* counter = GetCounter("NEON"); local
700 static Counter* counter = GetCounter("NEON"); local
708 static Counter* counter = GetCounter("NEON"); local
716 static Counter* counter = GetCounter("NEON"); local
725 static Counter* counter = GetCounter("NEON"); local
733 static Counter* counter = GetCounter("NEON"); local
742 static Counter* counter = GetCounter("NEON"); local
750 static Counter* counter = GetCounter("NEON"); local
758 static Counter* counter = GetCounter("NEON"); local
766 static Counter* counter = GetCounter("NEON"); local
774 static Counter* counter = GetCounter("NEON"); local
782 static Counter* counter = GetCounter("NEON"); local
790 static Counter* counter = GetCounter("NEON"); local
798 static Counter* counter = GetCounter("NEON"); local
806 static Counter* counter = GetCounter("NEON"); local
814 static Counter* counter = GetCounter("NEON"); local
822 static Counter* counter = GetCounter("NEON"); local
830 static Counter* counter = GetCounter("NEON"); local
838 static Counter* counter = GetCounter("Other"); local
846 static Counter* counter = GetCounter("Other"); local
    [all...]
  /external/tlsdate/tests/run-routeup/
subproc.sh 5 c=$(counter "runs")
  /external/tlsdate/tests/wait-idle/
subproc.sh 11 c=$(counter "runs")
  /development/ndk/platforms/android-3/arch-arm/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon2182
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon43740
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon45056
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon46388
  /prebuilts/ndk/current/platforms/android-15/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon47724
  /prebuilts/ndk/current/platforms/android-16/arch-arm/usr/include/asm/
atomic.h 17 typedef struct { volatile int counter; } atomic_t; member in struct:__anon49060

Completed in 1623 milliseconds

1 2 3 4 5 6 7 8 91011>>