Home
last modified time | relevance | path

Searched refs:bp2 (Results 1 – 25 of 35) sorted by relevance

12

/external/clang/test/SemaCXX/
Daddress-space-conversion.cpp52 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) { in test_static_cast() argument
56 (void)static_cast<A_ptr_2>(bp2); in test_static_cast()
73 (void)static_cast<A_ptr>(bp2); // expected-error{{is not allowed}} in test_static_cast()
75 (void)static_cast<A_ptr_1>(bp2); // expected-error{{is not allowed}} in test_static_cast()
103 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2) { in test_dynamic_cast() argument
107 (void)dynamic_cast<A_ptr_2>(bp2); in test_dynamic_cast()
116 (void)dynamic_cast<A_ptr>(bp2); // expected-error{{casts away qualifiers}} in test_dynamic_cast()
118 (void)dynamic_cast<A_ptr_1>(bp2); // expected-error{{casts away qualifiers}} in test_dynamic_cast()
133 B_ptr bp, B_ptr_1 bp1, B_ptr_2 bp2, in test_reinterpret_cast() argument
140 (void)reinterpret_cast<A_ptr>(bp2); in test_reinterpret_cast()
[all …]
/external/chromium_org/v8/test/mjsunit/
Ddebug-listbreakpoints.js154 var bp2 = Debug.setBreakPoint(g, 1, 0);
155 testArguments(dcp, true, [ bp2 ],
160 testArguments(dcp, true, [ bp2, bp3 ],
165 testArguments(dcp, true, [ bp2, bp3, bp4 ],
170 testArguments(dcp, true, [ bp2, bp4 ],
175 testArguments(dcp, true, [ bp2 ],
180 testArguments(dcp, true, [ bp2, bp5 ],
184 clearBreakpoint(dcp, bp2);
Ddebug-step.js36 var bp1, bp2; variable
46 if (bp2) {
47 Debug.clearBreakPoint(bp2);
78 bp2 = Debug.setBreakPoint(f, 3);
Ddebug-breakpoints.js44 bp2 = Debug.setBreakPoint(f, 0, 4);
50 Debug.clearBreakPoint(bp2);
85 bp2 = Debug.setBreakPoint(g, 1, 0);
108 Debug.clearBreakPoint(bp2);
140 bp2 = setBreakpointByPosition(f, 4);
146 Debug.clearBreakPoint(bp2);
171 bp2 = setBreakpointByPosition(g, 5);
194 Debug.clearBreakPoint(bp2);
Ddebug-multiple-breakpoints.js61 bp2 = Debug.setBreakPoint(f);
71 Debug.clearBreakPoint(bp2);
81 bp2 = Debug.setBreakPoint(g);
84 Debug.clearBreakPoint(bp2);
Ddebug-conditional-breakpoints.js150 bp2 = Debug.setBreakPoint(h, 0, 22, 'a % 2 == 0');
156 assertEquals(5, Debug.findBreakPoint(bp2, false).hit_count());
158 Debug.clearBreakPoint(bp2);
163 bp2 = Debug.setBreakPoint(h, 0, 22, '(a + 1) % 2 == 0');
169 assertEquals(5, Debug.findBreakPoint(bp2, false).hit_count());
171 Debug.clearBreakPoint(bp2);
Ddebug-ignore-breakpoints.js62 bp2 = Debug.setBreakPoint(f);
68 Debug.changeBreakPointIgnoreCount(bp2, 4);
80 Debug.changeBreakPointIgnoreCount(bp2, 2);
Ddebug-enable-disable-breakpoints.js67 bp2 = Debug.setBreakPoint(f);
72 Debug.disableBreakPoint(bp2);
83 Debug.enableBreakPoint(bp2);
Ddebug-clearbreakpointgroup.js94 var bp2 = Debug.setScriptBreakPointById(scriptId, 1, null, null, groupId2); variable
116 assertEquals([bp2, bp3, bp5].sort(), breakpointNumbers.sort());
121 Debug.clearBreakPoint(bp2);
/external/tcpdump/
Dprint-frag6.c44 frag6_print(register const u_char *bp, register const u_char *bp2) in frag6_print() argument
50 ip6 = (const struct ip6_hdr *)bp2; in frag6_print()
59 (long)(bp - bp2) - sizeof(struct ip6_frag)); in frag6_print()
64 (long)(bp - bp2) - sizeof(struct ip6_frag)); in frag6_print()
Dprint-sunrpc.c86 register const u_char *bp2) in sunrpcrequest_print() argument
108 switch (IP_V((struct ip *)bp2)) { in sunrpcrequest_print()
110 ip = (struct ip *)bp2; in sunrpcrequest_print()
117 ip6 = (struct ip6_hdr *)bp2; in sunrpcrequest_print()
Dprint-esp.c530 const u_char *bp, const int length, const u_char *bp2 in esp_print()
600 ip = (struct ip *)bp2; in esp_print()
604 ip6 = (struct ip6_hdr *)bp2; in esp_print()
655 if (ep - bp2 < len) in esp_print()
657 if (ep - bp2 > len) { in esp_print()
659 ep = bp2 + len; in esp_print()
Dprint-udp.c360 register const u_char *bp2, int fragmented) in udp_print() argument
374 ip = (struct ip *)bp2; in udp_print()
377 ip6 = (struct ip6_hdr *)bp2; in udp_print()
486 pgm_print(cp, length, bp2); in udp_print()
594 isakmp_print(gndo, (const u_char *)(up + 1), length, bp2); in udp_print()
596 isakmp_rfc3948_print(gndo, (const u_char *)(up + 1), length, bp2); in udp_print()
599 isakmp_print(gndo, (const u_char *)(up + 1), length, bp2); in udp_print()
Dprint-isakmp.c136 const u_char *bp2, struct isakmp *base);
265 cookie_record(cookie_t *in, const u_char *bp2) in cookie_record() argument
281 ip = (struct ip *)bp2; in cookie_record()
309 ip6 = (struct ip6_hdr *)bp2; in cookie_record()
334 cookie_sidecheck(int i, const u_char *bp2, int initiator) in cookie_sidecheck() argument
347 ip = (struct ip *)bp2; in cookie_sidecheck()
359 ip6 = (struct ip6_hdr *)bp2; in cookie_sidecheck()
2210 const u_char *bp2, struct isakmp *base) in ikev1_print() argument
2232 if (bp2) in ikev1_print()
2233 cookie_record(&base->i_ck, bp2); in ikev1_print()
[all …]
Dprint-sctp.c86 const u_char *bp2, /* beginning of enclosing */ in sctp_print() argument
108 ip = (struct ip *)bp2; in sctp_print()
111 ip6 = (const struct ip6_hdr *)bp2; in sctp_print()
Dprint-nfs.c287 register const u_char *bp2) in nfsreply_print() argument
305 print_nfsaddr(bp2, srcid, dstid); in nfsreply_print()
307 nfsreply_print_noaddr(bp, length, bp2); in nfsreply_print()
317 register const u_char *bp2) in nfsreply_print_noaddr() argument
335 if (xid_map_find(rp, bp2, &proc, &vers) >= 0) in nfsreply_print_noaddr()
522 register const u_char *bp2) in nfsreq_print() argument
540 print_nfsaddr(bp2, srcid, dstid); in nfsreq_print()
543 nfsreq_print_noaddr(bp, length, bp2); in nfsreq_print()
553 register const u_char *bp2) in nfsreq_print_noaddr() argument
566 if (!xid_map_enter(rp, bp2)) /* record proc number for later on */ in nfsreq_print_noaddr()
Dprint-rt6.c44 rt6_print(register const u_char *bp, const u_char *bp2 _U_) in rt6_print()
Dprint-igrp.c80 igrp_print(register const u_char *bp, u_int length, const u_char *bp2 _U_) in igrp_print()
Dprint-pgm.c159 register const u_char *bp2) in pgm_print() argument
178 ip = (struct ip *)bp2; in pgm_print()
181 ip6 = (struct ip6_hdr *)bp2; in pgm_print()
Dnetdissect.h334 register const u_char *bp, int len, register const u_char *bp2,
348 const u_char *bp2);
465 const u_char *bp, const u_char *bp2,
Dprint-tcp.c153 register const u_char *bp2, int fragmented) argument
170 ip = (struct ip *)bp2;
173 ip6 = (struct ip6_hdr *)bp2;
/external/openssl/crypto/objects/
Dobjxref.pl53 my$bp2 = $oid_tbl{$xref_tbl{$b}[1]};
55 return $ap2 - $bp2;
/external/chromium_org/third_party/boringssl/src/crypto/obj/
Dobj_xref.pl53 my$bp2 = $oid_tbl{$xref_tbl{$b}[1]};
55 return $ap2 - $bp2;
/external/llvm/test/CodeGen/AArch64/
Darm64-ldp.ll142 %bp2 = bitcast i64* %p2 to i8*
143 %bp2p1 = getelementptr inbounds i8* %bp2, i64 1
/external/opencv/cv/src/
Dcvcontourtree.cpp78 a, ap1, ap2, an1, an2, b, bp1, bp2, bn1, bn2; in icvCreateContourTree() local
210 &ap2, &bp2 )); in icvCreateContourTree()
359 bp2 = bp1; in icvCreateContourTree()

12