HomeSort by relevance Sort by last modified time
    Searched defs:counter (Results 101 - 125 of 508) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/test/mjsunit/compiler/
inline-construct.js 34 var counter = { value:0 };
35 result = closure(11, 12, counter);
37 assertEquals(1, counter.value);
38 result = closure(23, 19, counter);
40 assertEquals(2, counter.value);
42 result = closure(1, 42, counter)
44 assertEquals(3, counter.value);
45 result = closure("foo", "bar", counter)
47 assertEquals(4, counter.value);
51 function value_context(a, b, counter) {
    [all...]
  /frameworks/compile/mclinker/unittests/
BinTreeTest.cpp 192 int counter = 0; local
194 ++counter;
197 ASSERT_EQ(1, counter);
267 int counter = 0; local
269 ++counter;
272 ASSERT_EQ(1, counter);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon44359
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)))
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon45144
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)))
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon47004
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)))
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon47714
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)))
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
atomic_32.h 19 typedef struct { int counter; } atomic_t; member in struct:__anon51352
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)))
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
atomic_32.h 25 typedef struct { int counter; } atomic_t; member in struct:__anon52833
27 #define atomic_read(v) ((v)->counter)
29 #define atomic_set(v,i) (((v)->counter) = (i))
30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
atomic_32.h 25 typedef struct { int counter; } atomic_t; member in struct:__anon55558
27 #define atomic_read(v) ((v)->counter)
29 #define atomic_set(v,i) (((v)->counter) = (i))
30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
atomic_32.h 25 typedef struct { int counter; } atomic_t; member in struct:__anon57304
27 #define atomic_read(v) ((v)->counter)
29 #define atomic_set(v,i) (((v)->counter) = (i))
30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/
atomic_32.h 25 typedef struct { int counter; } atomic_t; member in struct:__anon58604
27 #define atomic_read(v) ((v)->counter)
29 #define atomic_set(v,i) (((v)->counter) = (i))
30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
atomic_32.h 25 typedef struct { int counter; } atomic_t; member in struct:__anon61357
27 #define atomic_read(v) ((v)->counter)
29 #define atomic_set(v,i) (((v)->counter) = (i))
30 #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), (old), (new)))
31 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /bionic/libc/kernel/arch-mips/asm/
atomic.h 27 typedef struct { volatile int counter; } atomic_t; member in struct:__anon152
30 #define atomic_read(v) ((v)->counter)
31 #define atomic_set(v, i) ((v)->counter = (i))
32 #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n)))
34 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /development/ndk/platforms/android-9/arch-mips/include/asm/
atomic.h 27 typedef struct { volatile int counter; } atomic_t; member in struct:__anon1344
30 #define atomic_read(v) ((v)->counter)
31 #define atomic_set(v, i) ((v)->counter = (i))
32 #define atomic_cmpxchg(v, o, n) (cmpxchg(&((v)->counter), (o), (n)))
34 #define atomic_xchg(v, new) (xchg(&((v)->counter), (new)))
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
LaunchingPreferences.java 97 final int counter = sharedPref.getInt(AdvancedPreferences.KEY_MY_PREFERENCE, 0); local
98 mCounterText.setText(getString(R.string.counter_value_is) + " " + counter);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
CountersTable.java 35 * of which has a list of Counter objects. This really isn't a true
67 * Put a counter into the table and create an empty
142 Counter counter = (Counter) counters.elementAt(i); local
144 count = counter.getPreviouslyCounted(support, target);
155 // the backwards list (m_newFound) to the forwards list (counter.m_countNodes).
171 Counter counter = (Counter) counters.elementAt(i) local
197 Counter counter = new Counter(numberElem, new NodeSetDTM(support.getDTMManager())); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 9 * Implements the Segmented Integer Counter (SIC) mode on top of a simple
19 private byte[] counter; field in class:SICBlockCipher
33 this.counter = new byte[blockSize];
88 cipher.processBlock(counter, 0, counterOut, 0);
98 // increment counter by 1.
99 for (int i = counter.length - 1; i >= 0 && ++counter[i] == 0; i--)
101 ; // do nothing - pre-increment and test for 0 in counter does the job.
104 return counter.length;
110 System.arraycopy(IV, 0, counter, 0, counter.length)
    [all...]
  /external/chromium/base/
id_map_unittest.cc 19 explicit DestructorCounter(int* counter) : counter_(counter) {}
97 int counter = 0; local
100 switch (counter) {
121 counter++;
  /external/chromium_org/base/
id_map_unittest.cc 16 explicit DestructorCounter(int* counter) : counter_(counter) {}
102 int counter = 0; local
107 switch (counter) {
128 counter++;
202 int counter = 0; local
205 switch (counter) {
221 counter++;
  /external/chromium_org/chrome/common/metrics/variations/
variations_util.cc 109 int counter = 0; local
122 experiment_labels += CreateSingleExperimentLabel(++counter, id);
  /external/chromium_org/content/common/
gamepad_seqlock_unittest.cc 79 unsigned counter = 0; local
82 data.a = counter++;
87 if (counter == 1)
  /external/chromium_org/gpu/command_buffer/tests/
gl_bind_uniform_location_unittest.cc 147 int counter = 0; local
148 int matrix_location = counter++;
149 int color_a_location = counter++;
150 int color_b_location = counter++;
151 int alpha_location = counter++;
152 int multiplier_location = counter++;
153 int color_c_location = counter++;
  /external/chromium_org/third_party/libxslt/libxslt/
namespaces.c 585 int counter = 1; local
592 snprintf((char *) pref, 30, "%s_%d", nsPrefix, counter++);
594 if (counter > 1000) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 112 LLVMValueRef counter; member in struct:lp_build_loop_state
143 LLVMValueRef counter; member in struct:lp_build_for_loop_state
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_blind.c 129 int counter; member in struct:bn_blinding_st
163 /* Set the counter to the special value -1
166 ret->counter = -1;
196 if (b->counter == -1)
197 b->counter = 0;
199 if (++b->counter == BN_BLINDING_COUNTER && b->e != NULL &&
214 if (b->counter == BN_BLINDING_COUNTER)
215 b->counter = 0;
236 if (b->counter == -1)
238 b->counter = 0
    [all...]

Completed in 467 milliseconds

1 2 3 45 6 7 8 91011>>