/external/clang/test/Sema/ |
D | aarch64-neon-ranges.c | 39 void test_ld1st1(int8x8_t small, int8x16_t big, void *addr) { in test_ld1st1() argument 40 vld1_lane_s8(addr, small, 7); in test_ld1st1() 41 vld1_lane_s16(addr, small, 3); in test_ld1st1() 42 vld1_lane_s32(addr, small, 1); in test_ld1st1() 43 vld1_lane_s64(addr, small, 0); in test_ld1st1() 45 vld1q_lane_s8(addr, big, 15); in test_ld1st1() 46 vld1q_lane_s16(addr, big, 7); in test_ld1st1() 47 vld1q_lane_s32(addr, big, 3); in test_ld1st1() 48 vld1q_lane_s64(addr, big, 1); in test_ld1st1() 50 vld1_lane_s8(addr, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_ld1st1() [all …]
|
D | builtins-arm64-exclusive.c | 7 int test_ldrex(char *addr) { in test_ldrex() argument 9 sum += __builtin_arm_ldrex(addr); in test_ldrex() 10 sum += __builtin_arm_ldrex((short *)addr); in test_ldrex() 11 sum += __builtin_arm_ldrex((int *)addr); in test_ldrex() 12 sum += __builtin_arm_ldrex((long long *)addr); in test_ldrex() 13 sum += __builtin_arm_ldrex((__int128 *)addr); in test_ldrex() 14 sum += __builtin_arm_ldrex((float *)addr); in test_ldrex() 15 sum += __builtin_arm_ldrex((double *)addr); in test_ldrex() 16 sum += *__builtin_arm_ldrex((int **)addr); in test_ldrex() 17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() [all …]
|
D | builtins-arm-exclusive.c | 7 int test_ldrex(char *addr) { in test_ldrex() argument 9 sum += __builtin_arm_ldrex(addr); in test_ldrex() 10 sum += __builtin_arm_ldrex((short *)addr); in test_ldrex() 11 sum += __builtin_arm_ldrex((int *)addr); in test_ldrex() 12 sum += __builtin_arm_ldrex((long long *)addr); in test_ldrex() 13 sum += __builtin_arm_ldrex((float *)addr); in test_ldrex() 14 sum += __builtin_arm_ldrex((double *)addr); in test_ldrex() 15 sum += *__builtin_arm_ldrex((int **)addr); in test_ldrex() 16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() 17 sum += __builtin_arm_ldrex((volatile char *)addr); in test_ldrex() [all …]
|
/external/ltrace/etc/ |
D | libacl.so.conf | 4 int acl_add_perm(addr,uint); 5 int acl_calc_mask(addr); 6 int acl_clear_perms(addr); 7 int acl_copy_entry(addr,addr); 8 int acl_copy_ext(addr,addr,int); 9 addr acl_copy_int(addr); 10 int acl_create_entry(addr,addr); 12 int acl_delete_entry(addr,addr); 13 int acl_delete_perm(addr,uint); 14 addr acl_dup(addr); [all …]
|
D | syscalls.conf | 8 addr brk(addr); 10 int execve(string,addr,addr); 18 addr mmap(addr,ulong,int,int,int,long); 20 int munmap(addr,ulong); 24 int stat(string,addr); 26 int uname(addr); 29 int setxattr(string,string,addr,uint,int); 30 int lsetxattr(string,string,addr,uint,int); 31 int fsetxattr(int,string,addr,uint,int); 32 int getxattr(string,string,addr,uint); [all …]
|
D | libc.so.conf | 23 addr bfd_scan_vma(string, addr, int); 24 addr bfd_openr(string,string); 25 int bfd_check_format(addr,int); 30 addr __ctype_b_loc(); 31 addr __ctype_tolower_loc(); 32 addr __ctype_toupper_loc(); 36 int waddch(addr, char); 38 int wmove(addr, int, int); 39 int waddnstr(addr, string, int); 53 typedef FILE = addr; [all …]
|
/external/webrtc/webrtc/base/ |
D | socketaddress_unittest.cc | 37 SocketAddress addr; in TEST() local 38 EXPECT_FALSE(addr.IsUnresolvedIP()); in TEST() 39 EXPECT_EQ(IPAddress(), addr.ipaddr()); in TEST() 40 EXPECT_EQ(0, addr.port()); in TEST() 41 EXPECT_EQ("", addr.hostname()); in TEST() 45 SocketAddress addr(IPAddress(0x01020304), 5678); in TEST() local 46 EXPECT_FALSE(addr.IsUnresolvedIP()); in TEST() 47 EXPECT_EQ(IPAddress(0x01020304U), addr.ipaddr()); in TEST() 48 EXPECT_EQ(5678, addr.port()); in TEST() 49 EXPECT_EQ("", addr.hostname()); in TEST() [all …]
|
D | ipaddress_unittest.cc | 105 bool AreEqual(const IPAddress& addr, in AreEqual() argument 107 if ((IPIsAny(addr) != IPIsAny(addr2)) || in AreEqual() 108 (IPIsLoopback(addr) != IPIsLoopback(addr2)) || in AreEqual() 109 (IPIsPrivate(addr) != IPIsPrivate(addr2)) || in AreEqual() 110 (HashIP(addr) != HashIP(addr2)) || in AreEqual() 111 (addr.Size() != addr2.Size()) || in AreEqual() 112 (addr.family() != addr2.family()) || in AreEqual() 113 (addr.ToString() != addr2.ToString())) { in AreEqual() 117 v4addr = addr.ipv4_address(); in AreEqual() 123 v6addr = addr.ipv6_address(); in AreEqual() [all …]
|
/external/libnl/lib/route/ |
D | addr.c | 137 struct rtnl_addr *addr = nl_object_priv(obj); in addr_constructor() local 139 addr->a_scope = RT_SCOPE_NOWHERE; in addr_constructor() 144 struct rtnl_addr *addr = nl_object_priv(obj); in addr_free_data() local 146 if (!addr) in addr_free_data() 149 nl_addr_put(addr->a_peer); in addr_free_data() 150 nl_addr_put(addr->a_local); in addr_free_data() 151 nl_addr_put(addr->a_bcast); in addr_free_data() 152 nl_addr_put(addr->a_multicast); in addr_free_data() 153 nl_addr_put(addr->a_anycast); in addr_free_data() 193 struct rtnl_addr *addr; in addr_msg_parser() local [all …]
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interface.cc | 31 void __tsan_read16(void *addr) { in __tsan_read16() argument 32 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); in __tsan_read16() 33 MemoryRead(cur_thread(), CALLERPC, (uptr)addr + 8, kSizeLog8); in __tsan_read16() 36 void __tsan_write16(void *addr) { in __tsan_write16() argument 37 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); in __tsan_write16() 38 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr + 8, kSizeLog8); in __tsan_write16() 41 void __tsan_read16_pc(void *addr, void *pc) { in __tsan_read16_pc() argument 42 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr, kSizeLog8); in __tsan_read16_pc() 43 MemoryRead(cur_thread(), (uptr)pc, (uptr)addr + 8, kSizeLog8); in __tsan_read16_pc() 46 void __tsan_write16_pc(void *addr, void *pc) { in __tsan_write16_pc() argument [all …]
|
D | tsan_interface.h | 32 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_read1(void *addr); 33 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_read2(void *addr); 34 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_read4(void *addr); 35 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_read8(void *addr); 36 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_read16(void *addr); 38 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_write1(void *addr); 39 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_write2(void *addr); 40 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_write4(void *addr); 41 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_write8(void *addr); 42 SANITIZER_INTERFACE_ATTRIBUTE void __tsan_write16(void *addr); [all …]
|
D | tsan_interface_inl.h | 21 void __tsan_read1(void *addr) { in __tsan_read1() argument 22 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1); in __tsan_read1() 25 void __tsan_read2(void *addr) { in __tsan_read2() argument 26 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog2); in __tsan_read2() 29 void __tsan_read4(void *addr) { in __tsan_read4() argument 30 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog4); in __tsan_read4() 33 void __tsan_read8(void *addr) { in __tsan_read8() argument 34 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); in __tsan_read8() 37 void __tsan_write1(void *addr) { in __tsan_write1() argument 38 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1); in __tsan_write1() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-arm-exclusive.c | 6 int atomic_inc(int *addr) { in atomic_inc() argument 9 OldVal = __builtin_arm_ldrex(addr); in atomic_inc() 10 Failure = __builtin_arm_strex(OldVal + 1, addr); in atomic_inc() 35 int test_ldrex(char *addr, long long *addr64, float *addrfloat) { in test_ldrex() argument 39 sum += __builtin_arm_ldrex(addr); in test_ldrex() 48 sum += __builtin_arm_ldrex((short *)addr); in test_ldrex() 60 sum += __builtin_arm_ldrex((int *)addr); in test_ldrex() 68 sum += __builtin_arm_ldrex((long long *)addr); in test_ldrex() 90 sum += __builtin_arm_ldrex((double *)addr); in test_ldrex() 103 sum += *__builtin_arm_ldrex((int **)addr); in test_ldrex() [all …]
|
D | x86-atomic-long_double.c | 4 long double testinc(_Atomic long double *addr) { in testinc() argument 63 return ++*addr; in testinc() 66 long double testdec(_Atomic long double *addr) { in testdec() argument 125 return (*addr)--; in testdec() 128 long double testcompassign(_Atomic long double *addr) { in testcompassign() argument 129 *addr -= 25; in testcompassign() 198 return *addr; in testcompassign() 201 long double testassign(_Atomic long double *addr) { in testassign() argument 221 *addr = 115; in testassign() 236 return *addr; in testassign() [all …]
|
/external/libnl/lib/ |
D | addr.c | 36 static inline uint16_t dn_ntohs(uint16_t addr) in dn_ntohs() argument 42 .word = addr, in dn_ntohs() 48 static inline int do_digit(char *str, uint16_t *addr, uint16_t scale, in do_digit() argument 51 uint16_t tmp = *addr / scale; in do_digit() 60 *addr -= (tmp * scale); in do_digit() 69 uint16_t addr = dn_ntohs(*(uint16_t *)addrbuf); in dnet_ntop() local 70 uint16_t area = addr >> 10; in dnet_ntop() 77 addr &= 0x03ff; in dnet_ntop() 95 if (do_digit(str + pos, &addr, 1000, &pos, len, &started)) in dnet_ntop() 98 if (do_digit(str + pos, &addr, 100, &pos, len, &started)) in dnet_ntop() [all …]
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrMemory.td | 27 def regPlusImm : PatFrag<(ops node:$off, node:$addr), 28 (add node:$addr, node:$off), 34 def LOAD_I32 : I<(outs I32:$dst), (ins i32imm:$off, I32:$addr), [], 35 "i32.load\t$dst, ${off}(${addr})">; 36 def LOAD_I64 : I<(outs I64:$dst), (ins i32imm:$off, I32:$addr), [], 37 "i64.load\t$dst, ${off}(${addr})">; 38 def LOAD_F32 : I<(outs F32:$dst), (ins i32imm:$off, I32:$addr), [], 39 "f32.load\t$dst, ${off}(${addr})">; 40 def LOAD_F64 : I<(outs F64:$dst), (ins i32imm:$off, I32:$addr), [], 41 "f64.load\t$dst, ${off}(${addr})">; [all …]
|
/external/f2fs-tools/scripts/ |
D | dumpf2fs.sh | 11 let addr=$BASE 12 echo $addr 13 hexdump -s $addr -n 4096 $DEV;; 16 let addr=$BASE+0x200000 17 hexdump -s $addr -n 4096 $DEV;; 20 let addr=$BASE 21 hexdump -s $addr -n 409 $DEV 22 let addr=$BASE+0x200000 23 hexdump -s $addr -n 4096 $DEV;; 26 let addr=$BASE [all …]
|
/external/v8/src/ |
D | v8memory.h | 16 static uint8_t& uint8_at(Address addr) { in uint8_at() argument 17 return *reinterpret_cast<uint8_t*>(addr); in uint8_at() 20 static uint16_t& uint16_at(Address addr) { in uint16_at() argument 21 return *reinterpret_cast<uint16_t*>(addr); in uint16_at() 24 static uint32_t& uint32_at(Address addr) { in uint32_at() argument 25 return *reinterpret_cast<uint32_t*>(addr); in uint32_at() 28 static int32_t& int32_at(Address addr) { in int32_at() argument 29 return *reinterpret_cast<int32_t*>(addr); in int32_at() 32 static uint64_t& uint64_at(Address addr) { in uint64_at() argument 33 return *reinterpret_cast<uint64_t*>(addr); in uint64_at() [all …]
|
/external/srtp/crypto/include/ |
D | integers.h | 117 #define PUT_32(addr,value) \ argument 119 ((unsigned char *) (addr))[0] = (value >> 24); \ 120 ((unsigned char *) (addr))[1] = (value >> 16) & 0xff; \ 121 ((unsigned char *) (addr))[2] = (value >> 8) & 0xff; \ 122 ((unsigned char *) (addr))[3] = (value) & 0xff; \ 124 #define GET_32(addr) ((((unsigned char *) (addr))[0] << 24) | \ argument 125 (((unsigned char *) (addr))[1] << 16) | \ 126 (((unsigned char *) (addr))[2] << 8) | \ 127 (((unsigned char *) (addr))[3])) 129 #define PUT_32(addr,value) \ argument [all …]
|
/external/tcpdump/tests/ |
D | hsrp_1.out | 1 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 2 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 3 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 4 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 5 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 6 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 7 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 9 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 10 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1 11 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1 [all …]
|
/external/libunwind_llvm/src/ |
D | AddressSpace.hpp | 41 extern "C" _Unwind_Ptr __gnu_Unwind_Find_exidx(_Unwind_Ptr addr, int *len); 114 uint8_t get8(pint_t addr) { in get8() argument 116 memcpy(&val, (void *)addr, sizeof(val)); in get8() 119 uint16_t get16(pint_t addr) { in get16() argument 121 memcpy(&val, (void *)addr, sizeof(val)); in get16() 124 uint32_t get32(pint_t addr) { in get32() argument 126 memcpy(&val, (void *)addr, sizeof(val)); in get32() 129 uint64_t get64(pint_t addr) { in get64() argument 131 memcpy(&val, (void *)addr, sizeof(val)); in get64() 134 double getDouble(pint_t addr) { in getDouble() argument [all …]
|
/external/dnsmasq/src/ |
D | network.c | 51 int iface_check(int family, struct all_addr *addr, char *name, int *indexp) in iface_check() argument 90 if (daemon->if_names || (addr && daemon->if_addrs)) in iface_check() 99 if (addr && tmp->addr.sa.sa_family == family) in iface_check() 102 tmp->addr.in.sin_addr.s_addr == addr->addr.addr4.s_addr) in iface_check() 106 IN6_ARE_ADDR_EQUAL(&tmp->addr.in6.sin6_addr, in iface_check() 107 &addr->addr.addr6) && in iface_check() 108 (!IN6_IS_ADDR_LINKLOCAL(&addr->addr.addr6) || in iface_check() 109 (tmp->addr.in6.sin6_scope_id == (uint32_t) *indexp))) in iface_check() 123 union mysockaddr *addr, struct in_addr netmask) in iface_allowed() argument 134 if (sockaddr_isequal(&iface->addr, addr)) in iface_allowed() [all …]
|
/external/libunwind/include/ |
D | dwarf_i.h | 46 dwarf_reads8 (unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, in dwarf_reads8() argument 49 dwarf_misaligned_value_t *mvp = (void *) (uintptr_t) *addr; in dwarf_reads8() 52 *addr += sizeof (mvp->s8); in dwarf_reads8() 57 dwarf_reads16 (unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, in dwarf_reads16() argument 60 dwarf_misaligned_value_t *mvp = (void *) (uintptr_t) *addr; in dwarf_reads16() 63 *addr += sizeof (mvp->s16); in dwarf_reads16() 68 dwarf_reads32 (unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, in dwarf_reads32() argument 71 dwarf_misaligned_value_t *mvp = (void *) (uintptr_t) *addr; in dwarf_reads32() 74 *addr += sizeof (mvp->s32); in dwarf_reads32() 79 dwarf_reads64 (unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, in dwarf_reads64() argument [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | vsx-ldst-builtin-le.ll | 21 %__a.addr.i31 = alloca i32, align 4 22 %__b.addr.i32 = alloca <4 x i32>*, align 8 23 %__a.addr.i29 = alloca i32, align 4 24 %__b.addr.i30 = alloca <4 x float>*, align 8 25 %__a.addr.i27 = alloca i32, align 4 26 %__b.addr.i28 = alloca <2 x i64>*, align 8 27 %__a.addr.i25 = alloca i32, align 4 28 %__b.addr.i26 = alloca <2 x i64>*, align 8 29 %__a.addr.i23 = alloca i32, align 4 30 %__b.addr.i24 = alloca <2 x double>*, align 8 [all …]
|
/external/llvm/test/CodeGen/Hexagon/ |
D | clr_set_toggle.ll | 7 %x.addr = alloca i32, align 4 8 store i32 %x, i32* %x.addr, align 4 9 %0 = load i32, i32* %x.addr, align 4 17 %x.addr = alloca i64, align 8 18 store i64 %x, i64* %x.addr, align 8 19 %0 = load i64, i64* %x.addr, align 8 27 %x.addr = alloca i64, align 8 28 store i64 %x, i64* %x.addr, align 8 29 %0 = load i64, i64* %x.addr, align 8 37 %x.addr = alloca i32, align 4 [all …]
|