Searched defs:bp2 (Results 1 - 18 of 18) sorted by relevance

/external/tcpdump/
H A Dprint-frag6.c44 frag6_print(register const u_char *bp, register const u_char *bp2) argument
50 ip6 = (const struct ip6_hdr *)bp2;
59 (long)(bp - bp2) - sizeof(struct ip6_frag));
64 (long)(bp - bp2) - sizeof(struct ip6_frag));
H A Dprint-sunrpc.c86 register const u_char *bp2)
108 switch (IP_V((struct ip *)bp2)) {
110 ip = (struct ip *)bp2;
117 ip6 = (struct ip6_hdr *)bp2;
85 sunrpcrequest_print(register const u_char *bp, register u_int length, register const u_char *bp2) argument
H A Dprint-sctp.c86 const u_char *bp2, /* beginning of enclosing */
108 ip = (struct ip *)bp2;
111 ip6 = (const struct ip6_hdr *)bp2;
85 sctp_print(const u_char *bp, const u_char *bp2, u_int sctpPacketLength) argument
H A Dprint-ip.c498 const u_char *bp2)
502 ipd.ip = (const struct ip *)bp2;
495 ip_print_inner(netdissect_options *ndo, const u_char *bp, u_int length, u_int nh, const u_char *bp2) argument
H A Dprint-tcp.c153 register const u_char *bp2, int fragmented)
170 ip = (struct ip *)bp2;
173 ip6 = (struct ip6_hdr *)bp2;
152 tcp_print(register const u_char *bp, register u_int length, register const u_char *bp2, int fragmented) argument
H A Dprint-udp.c360 register const u_char *bp2, int fragmented)
374 ip = (struct ip *)bp2;
377 ip6 = (struct ip6_hdr *)bp2;
486 pgm_print(cp, length, bp2);
594 isakmp_print(gndo, (const u_char *)(up + 1), length, bp2);
596 isakmp_rfc3948_print(gndo, (const u_char *)(up + 1), length, bp2);
599 isakmp_print(gndo, (const u_char *)(up + 1), length, bp2);
359 udp_print(register const u_char *bp, u_int length, register const u_char *bp2, int fragmented) argument
H A Dprint-nfs.c287 register const u_char *bp2)
305 print_nfsaddr(bp2, srcid, dstid);
307 nfsreply_print_noaddr(bp, length, bp2);
317 register const u_char *bp2)
335 if (xid_map_find(rp, bp2, &proc, &vers) >= 0)
522 register const u_char *bp2)
540 print_nfsaddr(bp2, srcid, dstid);
543 nfsreq_print_noaddr(bp, length, bp2);
553 register const u_char *bp2)
566 if (!xid_map_enter(rp, bp2)) /* recor
286 nfsreply_print(register const u_char *bp, u_int length, register const u_char *bp2) argument
316 nfsreply_print_noaddr(register const u_char *bp, u_int length, register const u_char *bp2) argument
521 nfsreq_print(register const u_char *bp, u_int length, register const u_char *bp2) argument
552 nfsreq_print_noaddr(register const u_char *bp, u_int length, register const u_char *bp2) argument
[all...]
H A Dprint-pgm.c159 register const u_char *bp2)
178 ip = (struct ip *)bp2;
181 ip6 = (struct ip6_hdr *)bp2;
158 pgm_print(register const u_char *bp, register u_int length, register const u_char *bp2) argument
H A Dprint-rx.c450 u_char *bp2)
516 rx_cache_insert(bp, (const struct ip *) bp2, dport);
555 rx_cache_find(rxh, (const struct ip *) bp2,
449 rx_print(register const u_char *bp, int length, int sport, int dport, u_char *bp2) argument
H A Dprint-icmp.c334 icmp_print(const u_char *bp, u_int plen, const u_char *bp2, int fragmented) argument
353 ip = (struct ip *)bp2;
H A Dprint-icmp6.c304 const u_char *bp, u_int length, const u_char *bp2, int fragmented)
315 ip = (struct ip6_hdr *)bp2;
303 icmp6_print(netdissect_options *ndo, const u_char *bp, u_int length, const u_char *bp2, int fragmented) argument
H A Dprint-isakmp.c136 const u_char *bp2, struct isakmp *base);
265 cookie_record(cookie_t *in, const u_char *bp2) argument
281 ip = (struct ip *)bp2;
309 ip6 = (struct ip6_hdr *)bp2;
334 cookie_sidecheck(int i, const u_char *bp2, int initiator) argument
347 ip = (struct ip *)bp2;
359 ip6 = (struct ip6_hdr *)bp2;
2210 const u_char *bp2, struct isakmp *base)
2232 if (bp2)
2233 cookie_record(&base->i_ck, bp2);
2208 ikev1_print(netdissect_options *ndo, const u_char *bp, u_int length, const u_char *bp2, struct isakmp *base) argument
2436 isakmp_print(netdissect_options *ndo, const u_char *bp, u_int length, const u_char *bp2) argument
2498 isakmp_rfc3948_print(netdissect_options *ndo, const u_char *bp, u_int length, const u_char *bp2) argument
[all...]
/external/clang/test/SemaCXX/
H A Daddress-space-conversion.cpp52 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) {
56 (void)static_cast<A_ptr_2>(bp2);
73 (void)static_cast<A_ptr>(bp2); // expected-error{{is not allowed}}
75 (void)static_cast<A_ptr_1>(bp2); // expected-error{{is not allowed}}
103 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) {
107 (void)dynamic_cast<A_ptr_2>(bp2);
116 (void)dynamic_cast<A_ptr>(bp2); // expected-error{{casts away qualifiers}}
118 (void)dynamic_cast<A_ptr_1>(bp2); // expected-error{{casts away qualifiers}}
133 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2,
140 (void)reinterpret_cast<A_ptr>(bp2);
50 test_static_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) argument
102 test_dynamic_cast(A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) argument
131 test_reinterpret_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2, const void __attribute__((address_space(1))) *cvp1) argument
157 test_cstyle_cast(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2, const void __attribute__((address_space(1))) *cvp1) argument
181 test_implicit_conversion(void_ptr vp, void_ptr_1 vp1, void_ptr_2 vp2, A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) argument
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc2359 Operand bp2 = Operand(rbp, -2 * kPointerSize); local
2362 __ movl(rdx, bp2); // Sanity check.
2368 __ movl(rdx, Operand(bp2, 2 * kPointerSize));
2373 __ movl(rdx, Operand(bp2, -2 * kPointerSize));
H A Dtest-debug.cc1082 int bp2 = SetBreakPoint(bar, 0); local
1092 ClearBreakPoint(bp2);
1483 int bp2 = SetBreakPointFromJS(env->GetIsolate(), "foo", 0, 9); local
1490 ClearBreakPointFromJS(env->GetIsolate(), bp2);
1506 CHECK_EQ(2, bp2);
/external/opencv/cv/src/
H A Dcvcontourtree.cpp78 a, ap1, ap2, an1, an2, b, bp1, bp2, bn1, bn2; local
210 &ap2, &bp2 ));
359 bp2 = bp1;
/external/ipsec-tools/src/racoon/
H A Doakley.c849 char *p, *bp2; local
897 bp2 = (sw == GENERATE ?
900 bp2 = (sw == GENERATE ?
903 memcpy(p, bp2, bl);
907 bp2 = (sw == GENERATE ?
910 bp2 = (sw == GENERATE ?
913 memcpy(p, bp2, bl);
/external/clang/test/CXX/drs/
H A Ddr1xx.cpp508 dr142::B *bp2 = (dr142::B*)this; local
509 bp2->mi = 3;

Completed in 5405 milliseconds