/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | test_xdp_loop.c | 31 __type(key, struct vip); 86 struct vip vip = {}; in handle_ipv4() local 98 vip.protocol = iph->protocol; in handle_ipv4() 99 vip.family = AF_INET; in handle_ipv4() 100 vip.daddr.v4 = iph->daddr; in handle_ipv4() 101 vip.dport = dport; in handle_ipv4() 104 tnl = bpf_map_lookup_elem(&vip2tnl, &vip); in handle_ipv4() 144 count_tx(vip.protocol); in handle_ipv4() 158 struct vip vip = {}; in handle_ipv6() local 168 vip.protocol = ip6h->nexthdr; in handle_ipv6() [all …]
|
D | test_xdp.c | 35 __type(key, struct vip); 90 struct vip vip = {}; in handle_ipv4() local 102 vip.protocol = iph->protocol; in handle_ipv4() 103 vip.family = AF_INET; in handle_ipv4() 104 vip.daddr.v4 = iph->daddr; in handle_ipv4() 105 vip.dport = dport; in handle_ipv4() 108 tnl = bpf_map_lookup_elem(&vip2tnl, &vip); in handle_ipv4() 148 count_tx(vip.protocol); in handle_ipv4() 162 struct vip vip = {}; in handle_ipv6() local 172 vip.protocol = ip6h->nexthdr; in handle_ipv6() [all …]
|
D | test_l4lb_noinline.c | 171 __type(key, struct vip); 338 struct vip vip = {}; in process_packet() local 407 memcpy(vip.daddr.v6, pckt.dstv6, 16); in process_packet() 409 vip.daddr.v4 = pckt.dst; in process_packet() 411 vip.dport = pckt.port16[1]; in process_packet() 412 vip.protocol = pckt.proto; in process_packet() 413 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet() 415 vip.dport = 0; in process_packet() 416 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet()
|
D | test_l4lb.c | 175 __type(key, struct vip); 338 struct vip vip = {}; in process_packet() local 407 memcpy(vip.daddr.v6, pckt.dstv6, 16); in process_packet() 409 vip.daddr.v4 = pckt.dst; in process_packet() 411 vip.dport = pckt.port16[1]; in process_packet() 412 vip.protocol = pckt.proto; in process_packet() 413 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet() 415 vip.dport = 0; in process_packet() 416 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet()
|
D | test_xdp_noinline.c | 136 __be32 vip; member 697 struct vip_definition vip = { }; in process_packet() local 732 memcpy(vip.vipv6, pckt.flow.dstv6, 16); in process_packet() 734 vip.vip = pckt.flow.dst; in process_packet() 735 vip.port = pckt.flow.port16[1]; in process_packet() 736 vip.proto = pckt.flow.proto; in process_packet() 737 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet() 739 vip.port = 0; in process_packet() 740 vip_info = bpf_map_lookup_elem(&vip_map, &vip); in process_packet()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | overloaded-builtin-operators.cpp | 143 void test_with_ptrs(VolatileIntPtr vip, ConstIntPtr cip, ShortRef sr, in test_with_ptrs() argument 147 volatile int& vir1 = vip[sr]; in test_with_ptrs() 148 volatile int& vir2 = sr[vip]; in test_with_ptrs() 149 bool b1 = (vip == cip); in test_with_ptrs() 150 long p1 = vip - cip; in test_with_ptrs() 159 int volatile &ivr = *vip; in test_with_ptrs() 162 int volatile *vip2 = +vip; in test_with_ptrs() 167 int volatile &ivr2 = vip[17]; in test_with_ptrs()
|
/external/clang/test/SemaCXX/ |
D | overloaded-builtin-operators.cpp | 129 void test_with_ptrs(VolatileIntPtr vip, ConstIntPtr cip, ShortRef sr, in test_with_ptrs() argument 133 volatile int& vir1 = vip[sr]; in test_with_ptrs() 134 volatile int& vir2 = sr[vip]; in test_with_ptrs() 135 bool b1 = (vip == cip); in test_with_ptrs() 136 long p1 = vip - cip; in test_with_ptrs() 145 int volatile &ivr = *vip; in test_with_ptrs() 148 int volatile *vip2 = +vip; in test_with_ptrs() 153 int volatile &ivr2 = vip[17]; in test_with_ptrs()
|
/external/apache-http/src/org/apache/http/util/ |
D | VersionInfo.java | 249 Properties vip = null; // version info properties, if available in loadVersionInfo() local 259 vip = props; in loadVersionInfo() 269 if (vip != null) in loadVersionInfo() 270 result = fromMap(pckg, vip, clsldr); in loadVersionInfo()
|
/external/clang/test/Sema/ |
D | format-strings-scanf.c | 157 void test_qualifiers(const int *cip, volatile int* vip, in test_qualifiers() argument 165 scanf("%d", vip); // No warning. in test_qualifiers() 166 scanf("%n", vip); // No warning. in test_qualifiers()
|
D | format-strings.c | 629 void test_qualifiers(volatile int *vip, const int *cip, in test_qualifiers() argument 634 printf("%n", vip); // No warning. in test_qualifiers()
|
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ |
D | xdp.c | 6 struct vip key4 = {.protocol = 6, .family = AF_INET}; in test_xdp() 7 struct vip key6 = {.protocol = 6, .family = AF_INET6}; in test_xdp()
|
D | xdp_noinline.c | 8 struct vip key = {.protocol = 6}; in test_xdp_noinline()
|
D | l4lb_all.c | 7 struct vip key = {.protocol = 6}; in test_l4lb()
|
/external/llvm-project/clang/test/Sema/ |
D | format-strings-scanf.c | 175 void test_qualifiers(const int *cip, volatile int* vip, in test_qualifiers() argument 183 scanf("%d", vip); // No warning. in test_qualifiers() 184 scanf("%n", vip); // No warning. in test_qualifiers()
|
D | format-strings.c | 647 void test_qualifiers(volatile int *vip, const int *cip, in test_qualifiers() argument 652 printf("%n", vip); // No warning. in test_qualifiers()
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p3.cpp | 70 void test_f3(int ***ip, volatile int ***vip) { in test_f3() argument 72 A<volatile int> a1 = f3(vip); in test_f3()
|
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p3.cpp | 70 void test_f3(int ***ip, volatile int ***vip) { in test_f3() argument 72 A<volatile int> a1 = f3(vip); in test_f3()
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | test_iptunnel_common.h | 11 struct vip { struct
|
/external/igt-gpu-tools/tests/i915/ |
D | gem_exec_balancer.c | 1121 uint32_t vip; in semaphore() local 1144 vip = gem_context_create(i915); in semaphore() 1145 set_load_balancer(i915, vip, ci, count, NULL); in semaphore() 1146 ping(i915, vip, 0); in semaphore() 1147 gem_context_destroy(i915, vip); in semaphore()
|
D | gem_exec_schedule.c | 1459 uint32_t vip; in test_pi_ringfull() local 1480 vip = execbuf.rsvd1; in test_pi_ringfull() 1527 result[0] = vip != execbuf.rsvd1; in test_pi_ringfull() 1543 execbuf.rsvd1 = vip; in test_pi_ringfull() 1572 gem_context_destroy(fd, vip); in test_pi_ringfull()
|
/external/jsoncpp/ |
D | AUTHORS | 92 pffang <pffang@vip.qq.com>
|
/external/usrsctp/usrsctplib/netinet/ |
D | sctp_usrreq.c | 402 sctp_ctlinput(int cmd, struct sockaddr *sa, void *vip, struct ifnet *ifp SCTP_UNUSED) argument 404 sctp_ctlinput(int cmd, struct sockaddr *sa, void *vip) 430 vip = NULL; 438 if (vip != NULL) { 439 inner_ip = (struct ip *)vip;
|
/external/cldr/common/testData/transforms/ |
D | und-Latn-t-und-taml.txt | 1239 விபாத vipāta
|
/external/hyphenation-patterns/en-US/ |
D | hyph-en-us.hyp.txt | 1217 vi-vip-a-rous
|
D | ushyphex.tex | 1216 vi-vip-a-rous
|