Searched defs:bp (Results 1 - 25 of 343) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2318.js59 var bp = Debug.setBreakPoint(f, 0); variable
/external/tcpdump/
H A Dprint-vjc.c85 vjc_print(register const char *bp, u_short proto _U_) argument
89 switch (bp[0] & 0xf0) {
102 if (bp[1] & (0x80 >> i))
105 if (bp[1])
107 printf("C=0x%02x ", bp[2]);
108 printf("sum=0x%04x ", *(u_short *)&bp[3]);
116 printf("(vjc type=0x%02x) ", bp[0] & 0xf0);
H A Dprint-vxlan.c44 vxlan_print(const u_char *bp, u_int len) argument
54 flags = *bp;
55 bp += 4;
57 vni = EXTRACT_24BITS(bp);
58 bp += 4;
72 ether_print(gndo, bp, len - 8, len - 8, NULL, NULL);
H A Dprint-ah.c44 ah_print(register const u_char *bp) argument
51 ah = (const struct ah *)bp;
63 if (bp + sizeof(struct ah) + sumlen > ep)
H A Dprint-calm-fast.c39 * This is the top level routine of the printer. 'bp' points
43 calm_fast_print(netdissect_options *ndo, const u_char *eth, const u_char *bp, u_int length) argument
45 int srcNwref = bp[0];
46 int dstNwref = bp[1];
48 bp += 2;
55 default_print(bp, length);
H A Dprint-frag6.c44 frag6_print(register const u_char *bp, register const u_char *bp2) argument
49 dp = (const struct ip6_frag *)bp;
59 (long)(bp - bp2) - sizeof(struct ip6_frag));
64 (long)(bp - bp2) - sizeof(struct ip6_frag));
H A Dprint-otv.c44 otv_print(const u_char *bp, u_int len) argument
55 flags = *bp;
56 bp += 1;
58 overlay_id = EXTRACT_24BITS(bp);
59 bp += 3;
61 instance_id = EXTRACT_24BITS(bp);
62 bp += 4;
77 ether_print(gndo, bp, len - 8, len - 8, NULL, NULL);
H A Dprint-beep.c52 beep_print(const u_char *bp, u_int length) argument
55 if (l_strnstart("MSG", 4, (const char *)bp, length)) /* A REQuest */
57 else if (l_strnstart("RPY ", 4, (const char *)bp, length))
59 else if (l_strnstart("ERR ", 4, (const char *)bp, length))
61 else if (l_strnstart("ANS ", 4, (const char *)bp, length))
63 else if (l_strnstart("NUL ", 4, (const char *)bp, length))
65 else if (l_strnstart("SEQ ", 4, (const char *)bp, length))
67 else if (l_strnstart("END", 4, (const char *)bp, length))
H A Dprint-carp.c51 carp_print(register const u_char *bp, register u_int len, int ttl) argument
56 TCHECK(bp[0]);
57 version = (bp[0] & 0xf0) >> 4;
58 type = bp[0] & 0x0f;
68 TCHECK(bp[2]);
69 TCHECK(bp[5]);
71 bp[1], bp[5], bp[2], bp[
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFamily.cpp36 const FontFamily* bp; local
37 for (ap = a.next(), bp = b.next(); ap != bp; ap = ap->next(), bp = bp->next()) {
38 if (!ap || !bp)
40 if (ap->family() != bp->family())
/external/clang/test/Parser/
H A Dpointer_promotion.c8 struct bar *bp; local
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
/external/libunwind/src/mi/
H A D_ReadSLEB.c8 unsigned char *bp = *dpp; local
12 byte = *bp++;
23 *dpp = bp;
H A D_ReadULEB.c8 unsigned char *bp = *dpp; local
12 byte = *bp++;
18 *dpp = bp;
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dt_pkey.c63 int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, argument
71 if(!BIO_indent(bp,off,128))
75 if (BIO_printf(bp, "%s 0\n", number) <= 0)
82 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
89 if (BIO_printf(bp,"%s%s",number,
102 if(BIO_puts(bp,"\n") <= 0
103 || !BIO_indent(bp,off+4,128))
106 if (BIO_printf(bp,"%02x%s",buf[i],((i+1) == n)?"":":")
109 if (BIO_write(bp,"\n",1) <= 0) return(0);
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_txt.c108 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) argument
114 if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err;
131 if (BIO_printf(bp," Protocol : %s\n",s) <= 0) goto err;
135 if (BIO_printf(bp," Cipher : %06lX\n",x->cipher_id&0xffffff) <= 0)
140 if (BIO_printf(bp," Cipher : %s\n",((x->cipher == NULL)?"unknown":x->cipher->name)) <= 0)
143 if (BIO_puts(bp," Session-ID: ") <= 0) goto err;
146 if (BIO_printf(bp,"%02X",x->session_id[i]) <= 0) goto err;
148 if (BIO_puts(bp,"\n Session-ID-ctx: ") <= 0) goto err;
151 if (BIO_printf(bp,"%02X",x->sid_ctx[i]) <= 0)
154 if (BIO_puts(bp,"\
[all...]
/external/clang/test/CXX/expr/expr.cast/
H A Dp4.cpp8 void casting_away_constness(const B &b, const C &c, const B *bp, const C *cp) { argument
19 // CHECK: DeclRefExpr {{.*}} ParmVar {{.*}} 'bp'
20 (void)(C*)bp;
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
H A Duninitialized_copy.pass.cpp35 B* bp = (B*)pool; local
39 std::uninitialized_copy(b, b+N, bp);
45 assert(bp[i].data_ == 0);
48 std::uninitialized_copy(b, b+2, bp);
50 assert(bp[i].data_ == 1);
H A Duninitialized_copy_n.pass.cpp35 B* bp = (B*)pool; local
39 std::uninitialized_copy_n(b, 5, bp);
45 assert(bp[i].data_ == 0);
48 std::uninitialized_copy_n(b, 2, bp);
50 assert(bp[i].data_ == 1);
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill/
H A Duninitialized_fill.pass.cpp35 B* bp = (B*)pool; local
38 std::uninitialized_fill(bp, bp+N, B());
44 assert(bp[i].data_ == 0);
47 std::uninitialized_fill(bp, bp+2, B());
49 assert(bp[i].data_ == 1);
/external/openssl/crypto/asn1/
H A Dt_pkey.c65 int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, argument
73 if(!BIO_indent(bp,off,128))
77 if (BIO_printf(bp, "%s 0\n", number) <= 0)
84 if (BIO_printf(bp,"%s %s%lu (%s0x%lx)\n",number,neg,
91 if (BIO_printf(bp,"%s%s",number,
104 if(BIO_puts(bp,"\n") <= 0
105 || !BIO_indent(bp,off+4,128))
108 if (BIO_printf(bp,"%02x%s",buf[i],((i+1) == n)?"":":")
111 if (BIO_write(bp,"\n",1) <= 0) return(0);
/external/openssl/crypto/rsa/
H A Drsa_prn.c82 int RSA_print(BIO *bp, const RSA *x, int off) argument
89 ret = EVP_PKEY_print_private(bp, pk, off, NULL);
/external/openssl/ssl/
H A Dssl_txt.c107 int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) argument
113 if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err;
130 if (BIO_printf(bp," Protocol : %s\n",s) <= 0) goto err;
136 if (BIO_printf(bp," Cipher : %06lX\n",x->cipher_id&0xffffff) <= 0)
141 if (BIO_printf(bp," Cipher : %04lX\n",x->cipher_id&0xffff) <= 0)
147 if (BIO_printf(bp," Cipher : %s\n",((x->cipher == NULL)?"unknown":x->cipher->name)) <= 0)
150 if (BIO_puts(bp," Session-ID: ") <= 0) goto err;
153 if (BIO_printf(bp,"%02X",x->session_id[i]) <= 0) goto err;
155 if (BIO_puts(bp,"\n Session-ID-ctx: ") <= 0) goto err;
158 if (BIO_printf(bp,"
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dbio.h62 OPJ_BYTE *bp; member in struct:opj_bio
91 @param bp Output buffer
94 void opj_bio_init_enc(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len);
98 @param bp Input buffer
101 void opj_bio_init_dec(opj_bio_t *bio, OPJ_BYTE *bp, OPJ_UINT32 len);
H A Draw.c63 const ptrdiff_t diff = raw->bp - raw->start;
68 void opj_raw_init_dec(opj_raw_t *raw, OPJ_BYTE *bp, OPJ_UINT32 len) { argument
69 raw->start = bp;
H A Draw.h62 OPJ_BYTE *bp; member in struct:opj_raw
91 @param bp Pointer to the start of the buffer from which the bytes will be read
94 void opj_raw_init_dec(opj_raw_t *raw, OPJ_BYTE *bp, OPJ_UINT32 len);

Completed in 6774 milliseconds

1234567891011>>