/external/compiler-rt/lib/esan/ |
esan_interface.cpp | 33 void __esan_aligned_load1(void *Addr) { 34 processRangeAccess(GET_CALLER_PC(), (uptr)Addr, 1, false); 37 void __esan_aligned_load2(void *Addr) { 38 processRangeAccess(GET_CALLER_PC(), (uptr)Addr, 2, false); 41 void __esan_aligned_load4(void *Addr) { 42 processRangeAccess(GET_CALLER_PC(), (uptr)Addr, 4, false); 45 void __esan_aligned_load8(void *Addr) { 46 processRangeAccess(GET_CALLER_PC(), (uptr)Addr, 8, false); 49 void __esan_aligned_load16(void *Addr) { 50 processRangeAccess(GET_CALLER_PC(), (uptr)Addr, 16, false) [all...] |
/external/ltp/runtest/ |
net_stress.interfaces | 5 if4-addr-change if4-addr-change 8 if4-addr-adddel if-addr-adddel 9 if4-addr-addlarge if-addr-addlarge 15 if6-addr-adddel if-addr-adddel -6 16 if6-addr-addlarge if-addr-addlarge - [all...] |
/external/valgrind/none/tests/linux/ |
mremap4.c | 16 void *addr = shmat(shmid, NULL, 0); local 17 assert(addr != (void *)-1); 19 addr = mremap(addr, 100 * 4096, 40 * 4096, 0); 20 assert(addr != (void *)-1);
|
mremap5.c | 16 void *addr = shmat(shmid, NULL, 0); local 17 assert(addr != (void *)-1); 19 addr = mremap(addr, 100 * 4096, 400 * 4096, MREMAP_MAYMOVE); 20 assert(addr != (void *)-1);
|
/external/libnl/src/lib/ |
addr.c | 2 * src/lib/addr.c Address Helpers 20 #include <netlink/cli/addr.h> 24 struct rtnl_addr *addr; local 26 addr = rtnl_addr_alloc(); 27 if (!addr) 30 return addr; 33 void nl_cli_addr_parse_family(struct rtnl_addr *addr, char *arg) 38 rtnl_addr_set_family(addr, family); 41 void nl_cli_addr_parse_local(struct rtnl_addr *addr, char *arg) 46 a = nl_cli_addr_parse(arg, rtnl_addr_get_family(addr)); [all...] |
/external/libunwind/include/ |
remote.h | 12 unw_word_t *addr, int8_t *valp, void *arg) 14 *valp = *(int8_t *) (uintptr_t) *addr; 15 *addr += 1; 21 unw_word_t *addr, int16_t *valp, void *arg) 23 *valp = *(int16_t *) (uintptr_t) *addr; 24 *addr += 2; 30 unw_word_t *addr, int32_t *valp, void *arg) 32 *valp = *(int32_t *) (uintptr_t) *addr; 33 *addr += 4; 39 unw_word_t *addr, unw_word_t *valp, void *arg [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_inl.h | 21 void __tsan_read1(void *addr) { 22 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1); 25 void __tsan_read2(void *addr) { 26 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog2); 29 void __tsan_read4(void *addr) { 30 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog4); 33 void __tsan_read8(void *addr) { 34 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); 37 void __tsan_write1(void *addr) { 38 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
bitops.c | 34 int ext2fs_set_bit(unsigned int nr,void * addr) 37 unsigned char *ADDR = (unsigned char *) addr; 39 ADDR += nr >> 3; 41 retval = mask & *ADDR; 42 *ADDR |= mask; 46 int ext2fs_clear_bit(unsigned int nr, void * addr) 49 unsigned char *ADDR = (unsigned char *) addr; 51 ADDR += nr >> 3 [all...] |
/external/llvm/test/Bitcode/ |
atomic.ll | 4 define void @test_cmpxchg(i32* %addr, i32 %desired, i32 %new) { 5 cmpxchg i32* %addr, i32 %desired, i32 %new seq_cst seq_cst 6 ; CHECK: cmpxchg i32* %addr, i32 %desired, i32 %new seq_cst seq_cst 8 cmpxchg volatile i32* %addr, i32 %desired, i32 %new seq_cst monotonic 9 ; CHECK: cmpxchg volatile i32* %addr, i32 %desired, i32 %new seq_cst monotonic 11 cmpxchg weak i32* %addr, i32 %desired, i32 %new acq_rel acquire 12 ; CHECK: cmpxchg weak i32* %addr, i32 %desired, i32 %new acq_rel acquire 14 cmpxchg weak volatile i32* %addr, i32 %desired, i32 %new singlethread release monotonic 15 ; CHECK: cmpxchg weak volatile i32* %addr, i32 %desired, i32 %new singlethread release monotonic
|
/external/clang/test/Sema/ |
builtins-arm-exclusive.c | 7 int test_ldrex(char *addr) { 9 sum += __builtin_arm_ldrex(addr); 10 sum += __builtin_arm_ldrex((short *)addr); 11 sum += __builtin_arm_ldrex((int *)addr); 12 sum += __builtin_arm_ldrex((long long *)addr); 13 sum += __builtin_arm_ldrex((float *)addr); 14 sum += __builtin_arm_ldrex((double *)addr); 15 sum += *__builtin_arm_ldrex((int **)addr); 16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; 17 sum += __builtin_arm_ldrex((volatile char *)addr); [all...] |
builtins-arm64-exclusive.c | 7 int test_ldrex(char *addr) { 9 sum += __builtin_arm_ldrex(addr); 10 sum += __builtin_arm_ldrex((short *)addr); 11 sum += __builtin_arm_ldrex((int *)addr); 12 sum += __builtin_arm_ldrex((long long *)addr); 13 sum += __builtin_arm_ldrex((__int128 *)addr); 14 sum += __builtin_arm_ldrex((float *)addr); 15 sum += __builtin_arm_ldrex((double *)addr); 16 sum += *__builtin_arm_ldrex((int **)addr); 17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a [all...] |
/art/runtime/interpreter/mterp/arm/ |
binop2addr.S | 3 * Generic 32-bit "/2addr" binary operation. Provide an "instr" line 11 * For: add-int/2addr, sub-int/2addr, mul-int/2addr, div-int/2addr, 12 * rem-int/2addr, and-int/2addr, or-int/2addr, xor-int/2addr, 13 * shl-int/2addr, shr-int/2addr, ushr-int/2addr, add-float/2addr [all...] |
/art/runtime/interpreter/mterp/arm64/ |
binop2addr.S | 3 * Generic 32-bit "/2addr" binary operation. Provide an "instr" line 11 * For: add-int/2addr, sub-int/2addr, mul-int/2addr, div-int/2addr, 12 * rem-int/2addr, and-int/2addr, or-int/2addr, xor-int/2addr, 13 * shl-int/2addr, shr-int/2addr, ushr-int/2addr, add-float/2addr [all...] |
fbinop2addr.S | 2 * Generic 32-bit floating point "/2addr" binary operation. Provide 6 * For: add-float/2addr, sub-float/2addr, mul-float/2addr, div-float/2addr 8 /* binop/2addr vA, vB */
|
/external/iproute2/lib/ |
dnet_ntop.c | 8 static __inline__ u_int16_t dn_ntohs(u_int16_t addr) 15 u.word = addr; 19 static __inline__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started) 21 u_int16_t tmp = *addr / scale; 30 *addr -= (tmp * scale); 39 u_int16_t addr, area; local 43 memcpy(&addr, dna->a_addr, sizeof(addr)); 44 addr = dn_ntohs(addr); [all...] |
/external/linux-kselftest/tools/testing/selftests/vm/ |
map_hugetlb.c | 27 #define ADDR (void *)(0x8000000000000000UL) 30 #define ADDR (void *)(0x0UL) 34 static void check_bytes(char *addr) 36 printf("First hex is %x\n", *((unsigned int *)addr)); 39 static void write_bytes(char *addr) 44 *(addr + i) = (char)i; 47 static int read_bytes(char *addr) 51 check_bytes(addr); 53 if (*(addr + i) != (char)i) { 62 void *addr; local [all...] |
/system/core/libcutils/ |
socket_loopback_server_unix.c | 34 static int _socket_loopback_server(int family, int type, struct sockaddr * addr, size_t size) 45 if(bind(s, addr, size) < 0) { 67 struct sockaddr_in6 addr; local 69 memset(&addr, 0, sizeof(addr)); 70 addr.sin6_family = AF_INET6; 71 addr.sin6_port = htons(port); 72 addr.sin6_addr = in6addr_loopback; 74 return _socket_loopback_server(AF_INET6, type, (struct sockaddr *) &addr, sizeof(addr)); 80 struct sockaddr_in addr; local [all...] |
/external/libnl/lib/route/ |
addr.c | 2 * lib/route/addr.c Addresses 28 * struct rtnl_addr *addr = rtnl_addr_alloc(); 33 * rtnl_addr_set_ifindex(addr, ifindex); 34 * rtnl_addr_set_local(addr, local_addr); 38 * rtnl_addr_set_label(addr, "mylabel"); 44 * rtnl_addr_set_peer(addr, peer_addr); 49 * rtnl_addr_set_scope(addr, rtnl_str2scope("site")); 54 * rtnl_addr_set_broadcast(addr, broadcast_addr); 60 * rtnl_addr_add(sk, addr, 0); 63 * rtnl_addr_put(addr); 137 struct rtnl_addr *addr = nl_object_priv(obj); local 144 struct rtnl_addr *addr = nl_object_priv(obj); local 199 struct rtnl_addr *addr; local 335 struct rtnl_addr *addr = (struct rtnl_addr *) obj; local 375 struct rtnl_addr *addr = (struct rtnl_addr *) obj; local [all...] |
/art/runtime/interpreter/mterp/mips64/ |
fbinop2addr.S | 3 * Generic 32-bit "/2addr" floating-point operation. 5 * For: add-float/2addr, sub-float/2addr, mul-float/2addr, div-float/2addr. 8 /* binop/2addr vA, vB */
|
fbinopWide2addr.S | 3 * Generic 64-bit "/2addr" floating-point operation. 5 * For: add-double/2addr, sub-double/2addr, mul-double/2addr, div-double/2addr. 8 /* binop/2addr vA, vB */
|
binop2addr.S | 3 * Generic 32-bit "/2addr" binary operation. Provide an "instr" line 13 * For: add-int/2addr, sub-int/2addr, mul-int/2addr, div-int/2addr, 14 * rem-int/2addr, and-int/2addr, or-int/2addr, xor-int/2addr, 15 * shl-int/2addr, shr-int/2addr, ushr-int/2add [all...] |
binopWide2addr.S | 3 * Generic 64-bit "/2addr" binary operation. Provide an "instr" line 13 * For: add-long/2addr, sub-long/2addr, mul-long/2addr, div-long/2addr, 14 * rem-long/2addr, and-long/2addr, or-long/2addr, xor-long/2addr, 15 * shl-long/2addr, shr-long/2addr, ushr-long/2add [all...] |
/external/ltp/testcases/kernel/syscalls/ptrace/ |
ptrace06.c | 42 long addr; member in struct:test_case_t 46 PTRACE_PEEKDATA,.addr = 0}, { 47 PTRACE_PEEKDATA,.addr = 1}, { 48 PTRACE_PEEKDATA,.addr = 2}, { 49 PTRACE_PEEKDATA,.addr = 3}, { 50 PTRACE_PEEKDATA,.addr = -1}, { 51 PTRACE_PEEKDATA,.addr = -2}, { 52 PTRACE_PEEKDATA,.addr = -3}, { 53 PTRACE_PEEKDATA,.addr = -4}, { 54 PTRACE_PEEKTEXT,.addr = 0}, [all...] |
/art/runtime/interpreter/mterp/mips/ |
binop2addr.S | 3 * Generic 32-bit "/2addr" binary operation. Provide an "instr" line 10 * For: add-int/2addr, sub-int/2addr, mul-int/2addr, div-int/2addr, 11 * rem-int/2addr, and-int/2addr, or-int/2addr, xor-int/2addr, 12 * shl-int/2addr, shr-int/2addr, ushr-int/2add [all...] |
/frameworks/rs/script_api/include/ |
rs_atomic.rsh | 42 * Atomicly adds a value to the value at addr, i.e. *addr += value. 45 * addr: Address of the value to modify. 48 * Returns: Value of *addr prior to the operation. 52 rsAtomicAdd(volatile int32_t* addr, int32_t value); 57 rsAtomicAdd(volatile uint32_t* addr, uint32_t value); 63 * Atomicly performs a bitwise and of two values, storing the result back at addr, 64 * i.e. *addr &= value. 67 * addr: Address of the value to modify. 70 * Returns: Value of *addr prior to the operation [all...] |