/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/sys/ |
eventfd.h | 39 /* type of event counter */ 45 extern int eventfd_read(int fd, eventfd_t *counter); 46 extern int eventfd_write(int fd, const eventfd_t counter);
|
/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/sys/ |
eventfd.h | 39 /* type of event counter */ 45 extern int eventfd_read(int fd, eventfd_t *counter); 46 extern int eventfd_write(int fd, const eventfd_t counter);
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/sys/ |
eventfd.h | 39 /* type of event counter */ 45 extern int eventfd_read(int fd, eventfd_t *counter); 46 extern int eventfd_write(int fd, const eventfd_t counter);
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/sys/ |
eventfd.h | 39 /* type of event counter */ 45 extern int eventfd_read(int fd, eventfd_t *counter); 46 extern int eventfd_write(int fd, const eventfd_t counter);
|
/bionic/libc/kernel/arch-x86/asm/ |
atomic_32.h | 25 typedef struct { int counter; } atomic_t; member in struct:__anon183 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)))
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
atomic_32.h | 25 typedef struct { int counter; } atomic_t; member in struct:__anon1367 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)))
|
/external/wpa_supplicant_8/src/crypto/ |
aes-ctr.c | 19 * @nonce: Nonce for counter mode (16 bytes) 31 u8 counter[AES_BLOCK_SIZE], buf[AES_BLOCK_SIZE]; local 36 os_memcpy(counter, nonce, AES_BLOCK_SIZE); 39 aes_encrypt(ctx, counter, buf); 48 counter[i]++; 49 if (counter[i])
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/ |
atomic_32.h | 19 typedef struct { int counter; } atomic_t; member in struct:__anon28399 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/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/ |
atomic_32.h | 19 typedef struct { int counter; } atomic_t; member in struct:__anon29184 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/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/ |
atomic_32.h | 19 typedef struct { int counter; } atomic_t; member in struct:__anon31044 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/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/ |
atomic_32.h | 19 typedef struct { int counter; } atomic_t; member in struct:__anon31754 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/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/ |
atomic_32.h | 19 typedef struct { int counter; } atomic_t; member in struct:__anon35392 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)))
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_UnmodifiableCollectionTest.java | 78 for (int counter = 0; it.hasNext(); counter++) { 82 + counter + " got: " + nextValue, 83 nextValue == counter); 94 for (int counter = 0; it.hasNext(); counter++) { 97 objArray[counter] == it.next()); 103 for (int counter = 0; it.hasNext(); counter++) { 106 objArray[counter] == it.next()) [all...] |
/libcore/support/src/test/java/tests/support/ |
Support_UnmodifiableCollectionTest.java | 78 for (int counter = 0; it.hasNext(); counter++) { 82 + counter + " got: " + nextValue, 83 nextValue == counter); 94 for (int counter = 0; it.hasNext(); counter++) { 97 objArray[counter] == it.next()); 103 for (int counter = 0; it.hasNext(); counter++) { 106 objArray[counter] == it.next()) [all...] |
/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...] |
/external/chromium/net/base/ |
mime_sniffer.cc | 214 base::Histogram* counter = local 217 return counter; 269 base::Histogram* counter, 273 if (counter) counter->Add(static_cast<int>(i)); 311 static base::Histogram* counter(NULL); 312 if (!counter) 313 counter = UMASnifferHistogramGet("mime_sniffer.kSniffableTags2", 318 counter, result); 330 static base::Histogram* counter(NULL) [all...] |
/external/proguard/src/proguard/obfuscate/ |
SpecialNameFactory.java | 78 for (int counter = 0; counter < 50; counter++)
|
/external/valgrind/main/exp-bbv/tests/ppc32-linux/ |
million.S | 8 lis 15,499997@ha # load high 16-bits of counter 9 addi 15,15,499997@l # load low 16-bits of counter 11 addic. 15,15,-1 # decrement counter
|
/dalvik/vm/mterp/x86-atom/ |
stub.S | 20 SAVE_PC_FP_TO_GLUE %edx # save program counter and frame pointer 24 LOAD_PC_FP_FROM_GLUE # restore program counter and frame pointer
|
/external/oprofile/daemon/liblegacy/ |
opd_kernel.h | 40 * @param counter counter number 45 void opd_handle_kernel_sample(unsigned long eip, u32 counter);
|
opd_sample_files.h | 43 * @param counter counter number 46 * Open image sample file for the image, counter 47 * counter and set up memory mappings for it. 53 int opd_open_24_sample_file(struct opd_image * image, int counter, int cpu_nr);
|
/external/qemu/hw/ |
goldfish_nand.h | 21 uint64_t counter; member in struct:__anon11181
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/ |
regress-192226.js | 53 var counter = 0; variable 76 ++counter; 81 ++counter; 86 f(); // sets |counter| 87 actual = counter;
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/ |
ListItemFocusablesFarApartTest.java | 86 int counter = 0; local 89 if (counter > 5) fail("couldn't reach next button within " + counter + " downs"); 92 assertFalse("after " + counter + " downs, top button not visible, should not have focus", 94 assertFalse("after " + counter + " downs, neither top button nor botom button visible, nothng within first list " + 97 assertTrue("after " + counter + " downs, top button still visible, should have focus", 101 assertEquals("after " + counter + " downs, " + 107 counter++;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/ |
spray.x | 52 unsigned int counter; 64 * Just throw away the data and increment the counter 72 * Get the value of the counter and elapsed time since 79 * Clear the counter and reset the elapsed time
|