/prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/asm-generic/bitops/ |
find.h | 15 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0) 16 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
lma.lnk | 4 .text : AT(ADDR(.text) + 0x100000) { *(.text) }
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
jalx-1.ld | 7 .text _start_text : AT (ADDR (.text)) { *(.text) }
|
/external/llvm/test/CodeGen/ARM/ |
2014-07-18-earlyclobber-str-post.ll | 6 define i32* @earlyclobber-str-post(i32* %addr) nounwind { 9 %val = ptrtoint i32* %addr to i32 10 store i32 %val, i32* %addr 11 %new = getelementptr i32, i32* %addr, i32 1 15 define i16* @earlyclobber-strh-post(i16* %addr) nounwind { 18 %val = ptrtoint i16* %addr to i32 20 store i16 %tr, i16* %addr 21 %new = getelementptr i16, i16* %addr, i32 1 25 define i8* @earlyclobber-strb-post(i8* %addr) nounwind { 28 %val = ptrtoint i8* %addr to i3 [all...] |
gpr-paired-spill-thumbinst.ll | 8 define void @foo(i64* %addr) { 9 %val1 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 10 %val2 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 11 %val3 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 12 %val4 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 13 %val5 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 14 %val6 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 15 %val7 = tail call i64 asm sideeffect "ldrexd $0, ${0:H}, [r0]", "=&r,r"(i64* %addr) 22 store volatile i64 %val1, i64* %addr 23 store volatile i64 %val2, i64* %addr [all...] |
/external/valgrind/drd/ |
pub_drd_bitmap.h | 37 #include "pub_tool_basics.h" /* Addr, SizeT */ 62 Addr a1; 85 const Addr a1, const Addr a2, 88 const Addr a1, const Addr a2); 89 void DRD_(bm_access_load_1)(struct bitmap* const bm, const Addr a1); 90 void DRD_(bm_access_load_2)(struct bitmap* const bm, const Addr a1); 91 void DRD_(bm_access_load_4)(struct bitmap* const bm, const Addr a1); 92 void DRD_(bm_access_load_8)(struct bitmap* const bm, const Addr a1) [all...] |
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/ |
avx512pfintrin.h | 52 void *addr, int scale, int hint) 54 __builtin_ia32_gatherpfdpd (mask, (__v8si) index, (long long const *) addr, 61 void *addr, int scale, int hint) 63 __builtin_ia32_gatherpfdps (mask, (__v16si) index, (int const *) addr, 70 void *addr, int scale, int hint) 72 __builtin_ia32_gatherpfqpd (mask, (__v8di) index, (long long const *) addr, 79 void *addr, int scale, int hint) 81 __builtin_ia32_gatherpfqps (mask, (__v8di) index, (int const *) addr, 87 _mm512_prefetch_i32scatter_pd (void *addr, __m256i index, int scale, 91 (long long const *)addr, scale, hint) [all...] |
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/ |
avx512pfintrin.h | 52 void *addr, int scale, int hint) 54 __builtin_ia32_gatherpfdpd (mask, (__v8si) index, (long long const *) addr, 61 void *addr, int scale, int hint) 63 __builtin_ia32_gatherpfdps (mask, (__v16si) index, (int const *) addr, 70 void *addr, int scale, int hint) 72 __builtin_ia32_gatherpfqpd (mask, (__v8di) index, (long long const *) addr, 79 void *addr, int scale, int hint) 81 __builtin_ia32_gatherpfqps (mask, (__v8di) index, (int const *) addr, 87 _mm512_prefetch_i32scatter_pd (void *addr, __m256i index, int scale, 91 (long long const *)addr, scale, hint) [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
elf-consthilo.s | 6 .equ addr, 0xdeadbeef 9 lui $4,%hi(addr) 11 lb $2,%lo(addr)($4)
|
/external/webrtc/webrtc/base/ |
ipaddress_unittest.cc | 105 bool AreEqual(const IPAddress& addr, 107 if ((IPIsAny(addr) != IPIsAny(addr2)) || 108 (IPIsLoopback(addr) != IPIsLoopback(addr2)) || 109 (IPIsPrivate(addr) != IPIsPrivate(addr2)) || 110 (HashIP(addr) != HashIP(addr2)) || 111 (addr.Size() != addr2.Size()) || 112 (addr.family() != addr2.family()) || 113 (addr.ToString() != addr2.ToString())) { 117 v4addr = addr.ipv4_address(); 123 v6addr = addr.ipv6_address() 140 IPAddress addr; local 148 IPAddress addr; local 158 IPAddress addr, expected; local 166 IPAddress addr; local [all...] |
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyInstrMemory.td | 27 def regPlusImm : PatFrag<(ops node:$addr, node:$off), 28 (add node:$addr, node:$off), 45 def regPlusGA : PatFrag<(ops node:$addr, node:$off), 46 (add node:$addr, node:$off), 61 def LOAD_I32 : I<(outs I32:$dst), (ins i32imm:$off, I32:$addr, 63 "i32.load\t$dst, ${off}(${addr})${p2align}">; 64 def LOAD_I64 : I<(outs I64:$dst), (ins i32imm:$off, I32:$addr, 66 "i64.load\t$dst, ${off}(${addr})${p2align}">; 67 def LOAD_F32 : I<(outs F32:$dst), (ins i32imm:$off, I32:$addr, 69 "f32.load\t$dst, ${off}(${addr})${p2align}"> [all...] |
/external/linux-kselftest/tools/testing/selftests/futex/include/ |
atomic.h | 37 * Return the old value of addr->val. 40 atomic_cmpxchg(atomic_t *addr, int oldval, int newval) 42 return __sync_val_compare_and_swap(&addr->val, oldval, newval); 47 * @addr: Address of the variable to increment 49 * Return the new value of addr->val. 52 atomic_inc(atomic_t *addr) 54 return __sync_add_and_fetch(&addr->val, 1); 59 * @addr: Address of the variable to decrement 61 * Return the new value of addr-val. 64 atomic_dec(atomic_t *addr) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
Inet4AddressTest.java | 39 addrName = "224.0.0.0"; // a multicast addr 1110 = 224-239 40 InetAddress addr = InetAddress.getByName(addrName); local 41 assertTrue("Multicast address " + addrName + " not detected.", addr 44 addrName = "239.255.255.255"; // a multicast addr 1110 = 224-239 45 addr = InetAddress.getByName(addrName); 46 assertTrue("Multicast address " + addrName + " not detected.", addr 50 addr = InetAddress.getByName(addrName); 52 + " reporting as a multicast address.", !addr 68 InetAddress addr = InetAddress.getByName(addrName); local 69 assertTrue("Loopback address " + addrName + " not detected.", addr 96 InetAddress addr = InetAddress.getByName(addrName); local 111 InetAddress addr = InetAddress.getByName(addrName); local 128 InetAddress addr = InetAddress.getByName(addrName); local 174 InetAddress addr = InetAddress.getByName(addrName); local 200 InetAddress addr = InetAddress.getByName(addrName); local 238 InetAddress addr = InetAddress.getByName(addrName); local 283 InetAddress addr = InetAddress.getByName(addrName); local [all...] |
/external/strace/linux/m68k/ |
arch_sigreturn.c | 4 unsigned long addr; local 7 if (umove(tcp, *m68k_usp_ptr + 2 * sizeof(int), &addr) < 0) 12 if (umove(tcp, addr, &mask[0]) < 0) 16 addr -= sizeof(mask) - sizeof(long); 17 if (umoven(tcp, addr, sizeof(mask) - sizeof(long), &mask[1]) < 0)
|
/external/strace/linux/powerpc/ |
arch_sigreturn.c | 4 unsigned long addr = ppc_regs.gpr[1]; local 10 addr += 128; 13 addr += 64; 15 if (umove(tcp, addr, &sc) < 0) { 16 tprintf("{mask=%#lx}", addr);
|
/external/strace/tests/ |
mlock.c | 13 const char *addr = tail_alloc(size); local 15 long rc = syscall(__NR_mlock, addr, size); 16 printf("mlock(%p, %d) = %s\n", addr, size, sprintrc(rc)); 18 rc = syscall(__NR_munlock, addr, size); 19 printf("munlock(%p, %d) = %s\n", addr, size, sprintrc(rc));
|
/external/strace/tests-m32/ |
mlock.c | 13 const char *addr = tail_alloc(size); local 15 long rc = syscall(__NR_mlock, addr, size); 16 printf("mlock(%p, %d) = %s\n", addr, size, sprintrc(rc)); 18 rc = syscall(__NR_munlock, addr, size); 19 printf("munlock(%p, %d) = %s\n", addr, size, sprintrc(rc));
|
/external/strace/tests-mx32/ |
mlock.c | 13 const char *addr = tail_alloc(size); local 15 long rc = syscall(__NR_mlock, addr, size); 16 printf("mlock(%p, %d) = %s\n", addr, size, sprintrc(rc)); 18 rc = syscall(__NR_munlock, addr, size); 19 printf("munlock(%p, %d) = %s\n", addr, size, sprintrc(rc));
|
/external/wpa_supplicant_8/src/eap_common/ |
chap.c | 18 const u8 *addr[3]; local 21 addr[0] = &id; 23 addr[1] = secret; 25 addr[2] = challenge; 27 return md5_vector(3, addr, len, response);
|
/external/wpa_supplicant_8/src/utils/ |
ip_addr.c | 14 const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, 17 if (buflen == 0 || addr == NULL) 20 if (addr->af == AF_INET) { 21 os_strlcpy(buf, inet_ntoa(addr->u.v4), buflen); 26 if (addr->af == AF_INET6) { 27 if (inet_ntop(AF_INET6, &addr->u.v6, buf, buflen) == NULL) 36 int hostapd_parse_ip_addr(const char *txt, struct hostapd_ip_addr *addr) 39 if (inet_aton(txt, &addr->u.v4)) { 40 addr->af = AF_INET; 45 if (inet_pton(AF_INET6, txt, &addr->u.v6) > 0) [all...] |
/art/runtime/interpreter/mterp/mips/ |
fbinopWide2addr.S | 2 * Generic 64-bit floating-point "/2addr" binary operation. 7 * For: add-double/2addr, sub-double/2addr, mul-double/2addr, 8 * div-double/2addr, rem-double/2addr 10 /* binop/2addr vA, vB */
|
/frameworks/rs/script_api/ |
rs_atomic.spec | 36 ret: int32_t, "Value of *addr prior to the operation." 37 arg: volatile int32_t* addr, "Address of the value to modify." 41 Atomicly adds a value to the value at addr, i.e. <code>*addr += value</code>. 48 arg: volatile uint32_t* addr 55 ret: int32_t, "Value of *addr prior to the operation." 56 arg: volatile int32_t* addr, "Address of the value to modify." 60 Atomicly performs a bitwise and of two values, storing the result back at addr, 61 i.e. <code>*addr &= value</code>. 68 arg: volatile uint32_t* addr [all...] |
/external/clang/lib/CodeGen/ |
CGBuilder.h | 70 llvm::LoadInst *CreateLoad(Address Addr, const llvm::Twine &Name = "") { 71 return CreateAlignedLoad(Addr.getPointer(), 72 Addr.getAlignment().getQuantity(), 75 llvm::LoadInst *CreateLoad(Address Addr, const char *Name) { 78 return CreateAlignedLoad(Addr.getPointer(), 79 Addr.getAlignment().getQuantity(), 82 llvm::LoadInst *CreateLoad(Address Addr, bool IsVolatile, 84 return CreateAlignedLoad(Addr.getPointer(), 85 Addr.getAlignment().getQuantity(), 91 llvm::LoadInst *CreateAlignedLoad(llvm::Value *Addr, CharUnits Align [all...] |
/art/runtime/interpreter/mterp/arm/ |
binopWide2addr.S | 3 * Generic 64-bit "/2addr" binary operation. Provide an "instr" line 11 * For: add-long/2addr, sub-long/2addr, div-long/2addr, rem-long/2addr, 12 * and-long/2addr, or-long/2addr, xor-long/2addr, add-double/2addr, 13 * sub-double/2addr, mul-double/2addr, div-double/2addr [all...] |
/external/compiler-rt/test/msan/ |
mmap.cc | 14 uintptr_t addr = (uintptr_t)p; local 16 return addr < 0x010000000000ULL || addr >= 0x600000000000ULL; 18 return (addr >= 0x000000000000ULL && addr < 0x010000000000ULL) || 19 (addr >= 0x510000000000ULL && addr < 0x600000000000ULL) || 20 (addr >= 0x700000000000ULL && addr < 0x800000000000ULL); 22 return addr >= 0x00e000000000ULL [all...] |