Home
last modified time | relevance | path

Searched refs:tmp_addr (Results 1 – 9 of 9) sorted by relevance

/external/selinux/libsepol/src/
Dnode_record.c92 char *tmp_addr = NULL; in node_alloc_addr() local
99 tmp_addr = malloc(4); in node_alloc_addr()
100 if (!tmp_addr) in node_alloc_addr()
106 tmp_addr = malloc(16); in node_alloc_addr()
107 if (!tmp_addr) in node_alloc_addr()
116 *addr = tmp_addr; in node_alloc_addr()
124 free(tmp_addr); in node_alloc_addr()
189 char *tmp_addr = NULL; in node_alloc_addr_string() local
194 tmp_addr = malloc(INET_ADDRSTRLEN); in node_alloc_addr_string()
195 if (!tmp_addr) in node_alloc_addr_string()
[all …]
/external/llvm-project/llvm/test/Analysis/ScalarEvolution/
Dno-wrap-add-exprs.ll143 @tmp_addr = external unnamed_addr global { %union, [2000 x i8] }
145 define void @f3(i8* %x_addr, i8* %y_addr, i32* %tmp_addr) {
202 ; CHECK-NEXT: %tmp = load i32, i32* %tmp_addr, align 4
212 …dr4 = getelementptr inbounds i8, i8* bitcast ({ %union, [2000 x i8] }* @tmp_addr to i8*), i64 %sun…
213 ; CHECK-NEXT: --> ((4 * (zext i32 (4 + (4 * (%tmp /u 4))<nuw>) to i64))<nuw><nsw> + @tmp_addr)<n…
215 …096 + (4 * (zext i32 (4 + (4 * (%tmp /u 4))<nuw>) to i64))<nuw><nsw> + @tmp_addr) U: [0,-3) S: [-9…
217 …096 + (4 * (zext i32 (4 + (4 * (%tmp /u 4))<nuw>) to i64))<nuw><nsw> + @tmp_addr) U: [0,-3) S: [-9…
219 …100 + (4 * (zext i32 (4 + (4 * (%tmp /u 4))<nuw>) to i64))<nuw><nsw> + @tmp_addr) U: [0,-3) S: [-9…
226 …dr1 = getelementptr inbounds i8, i8* bitcast ({ %union, [2000 x i8] }* @tmp_addr to i8*), i64 %sun…
227 … (4 + (4 * (zext i32 (4 + (4 * (%tmp /u 4))<nuw>) to i64))<nuw><nsw> + @tmp_addr) U: [0,-3) S: [-9…
[all …]
/external/ltp/testcases/network/sockets/
DltpClient.c445 struct in_addr tmp_addr; in output_to_display() local
460 tmp_addr.s_addr = ip->saddr; in output_to_display()
464 ip->ttl, inet_ntoa(tmp_addr)); in output_to_display()
466 tmp_addr.s_addr = ip->daddr; in output_to_display()
467 printf("dst=%s\n", inet_ntoa(tmp_addr)); in output_to_display()
571 struct in_addr tmp_addr; in ltp_traceroute() local
626 tmp_addr.s_addr = ip->saddr; in ltp_traceroute()
628 inet_ntoa(tmp_addr)); in ltp_traceroute()
/external/ltp/utils/sctp/func_tests/
Dtest_1_to_1_connectx.c77 struct sockaddr *tmp_addr; in main() local
132 tmp_addr = (struct sockaddr *) malloc(sizeof(struct sockaddr) - 1); in main()
133 tmp_addr->sa_family = AF_INET; in main()
134 error = sctp_connectx(sk, tmp_addr, 1, NULL); in main()
/external/ltp/testcases/kernel/syscalls/madvise/
Dmadvise02.c59 static char *tmp_addr; variable
77 {MADV_WILLNEED, "MADV_WILLNEED", &tmp_addr, EBADF, 0},
158 tmp_addr = (void*)LTP_ALIGN((long)ptr_addr, pagesize); in setup()
/external/openssh/
Daddrmatch.c297 struct xaddr tmp_addr, tmp_mask, tmp_result; in addr_host_is_all0s() local
299 memcpy(&tmp_addr, a, sizeof(tmp_addr)); in addr_host_is_all0s()
302 if (addr_and(&tmp_result, &tmp_addr, &tmp_mask) == -1) in addr_host_is_all0s()
/external/iptables/extensions/
Dlibebt_ip6.c291 struct in6_addr *tmp_addr; in ebt_parse_ip6_address() local
302 tmp_addr = parse_ip6_mask(p + 1); in ebt_parse_ip6_address()
304 tmp_addr = parse_ip6_mask(NULL); in ebt_parse_ip6_address()
306 *msk = *tmp_addr; in ebt_parse_ip6_address()
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_xdp_noinline.c431 __u32 tmp_addr = 0; in send_icmp_reply() local
447 tmp_addr = iph->daddr; in send_icmp_reply()
449 iph->saddr = tmp_addr; in send_icmp_reply()
464 __be32 tmp_addr[4]; in send_icmp6_reply() local
477 memcpy(tmp_addr, ip6h->saddr.in6_u.u6_addr32, 16); in send_icmp6_reply()
479 memcpy(ip6h->daddr.in6_u.u6_addr32, tmp_addr, 16); in send_icmp6_reply()
/external/llvm-project/lldb/source/Commands/
DCommandObjectThread.cpp824 lldb::addr_t tmp_addr = OptionArgParser::ToAddress( in SetOptionValue() local
827 m_until_addrs.push_back(tmp_addr); in SetOptionValue()