HomeSort by relevance Sort by last modified time
    Searched defs:bp (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFamily.cpp 36 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/chromium_org/v8/test/mjsunit/regress/
regress-2318.js 59 var bp = Debug.setBreakPoint(f, 0); variable
  /external/libunwind/src/mi/
_ReadSLEB.c 8 unsigned char *bp = *dpp; local
12 byte = *bp++;
23 *dpp = bp;
_ReadULEB.c 8 unsigned char *bp = *dpp; local
12 byte = *bp++;
18 *dpp = bp;
  /external/clang/test/Parser/
pointer_promotion.c 8 struct bar *bp; local
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
  /external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
uninitialized_copy.pass.cpp 35 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);
uninitialized_copy_n.pass.cpp 35 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/
uninitialized_fill.pass.cpp 35 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/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill.n/
uninitialized_fill_n.pass.cpp 34 B* bp = (B*)pool; local
37 std::uninitialized_fill_n(bp, 5, B());
43 assert(bp[i].data_ == 0);
46 B* r = std::uninitialized_fill_n(bp, 2, B());
47 assert(r == bp + 2);
49 assert(bp[i].data_ == 1);
  /external/libmtp/src/
util.c 50 unsigned char *bp = (unsigned char *) buf; local
54 fprintf(f, "%02x ", *bp);
55 bp++;
77 unsigned char *bp = (unsigned char *) buf; local
87 fprintf(f, "%02x", bp[16*lc+i]);
97 unsigned char ch= bp[16*lc+i];
  /external/libpcap/
etherent.c 105 char *bp; local
156 bp = e.name;
160 *bp++ = c;
163 *bp = '\0';
  /external/chromium_org/net/third_party/nss/ssl/
ssl3gthr.c 37 unsigned char *bp; local
57 bp = ((gs->state != GS_HEADER) ? lbp : gs->hdr) + gs->offset;
58 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
61 PRINT_BUF(60, (ss, "raw gather data:", bp, nb));
sslgathr.c 56 unsigned char * bp; local
83 bp = ((gs->state != GS_HEADER) ? pBuf : gs->hdr) + gs->offset;
84 nb = ssl_DefRecv(ss, bp, gs->remainder, flags);
86 PRINT_BUF(60, (ss, "raw gather data:", bp, nb));
  /external/compiler-rt/lib/asan/
asan_posix.cc 40 uptr pc, sp, bp; local
41 GetPcSpBp(context, &pc, &sp, &bp);
51 ReportStackOverflow(pc, sp, bp, context, addr);
53 ReportSIGSEGV(pc, sp, bp, context, addr);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 117 uptr bp = GET_CURRENT_FRAME(); local
118 stack.Unwind(0, pc, bp, 0, 0, 0, false);
121 stack.Unwind(1, pc, bp, 0, 0, 0, false);
124 EXPECT_EQ(bp, stack.top_frame_bp);
  /external/ipsec-tools/src/racoon/
vmbuf.h 38 * bp v
49 caddr_t bp; /* pointer to the buffer */ member in struct:_vchar_t_
  /external/libcxxabi/test/
test_aux_runtime.cpp 28 B *bp = NULL; local
29 try {bool b = typeid(*bp) == typeid (A); }
44 B *bp = (B*)&d; // cast needed to break protection local
45 try { D &dr = dynamic_cast<D&> (*bp); }
  /external/openssl/crypto/lhash/
lh_stats.c 144 BIO *bp; local
146 bp=BIO_new(BIO_s_file());
147 if (bp == NULL) goto end;
148 BIO_set_fp(bp,fp,BIO_NOCLOSE);
149 lh_stats_bio(lh,bp);
150 BIO_free(bp);
156 BIO *bp; local
158 bp=BIO_new(BIO_s_file());
159 if (bp == NULL) goto end;
160 BIO_set_fp(bp,fp,BIO_NOCLOSE)
168 BIO *bp; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
cmp.c 64 BN_ULONG t1, t2, *ap, *bp; local
72 bp = b->d;
75 t2 = bp[i];
  /external/chromium_org/third_party/boringssl/src/crypto/pem/
pem_pk8.c 68 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder,
72 static int do_pk8pkey_fp(FILE *bp, EVP_PKEY *x, int isder,
83 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
87 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u);
90 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
94 return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u);
97 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
101 return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u);
104 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
108 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u)
215 BIO *bp; local
228 BIO *bp; local
    [all...]
  /external/libunwind/src/
os-freebsd.c 97 char *buf, *bp, *eb; local
132 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize)
134 kv = (struct kinfo_vmentry *)(uintptr_t)bp;
  /external/libunwind/tests/
crasher.c 48 char *buf, *bp, *eb; local
73 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) {
74 kv = (struct kinfo_vmentry *)(uintptr_t)bp;
  /external/openssl/crypto/bn/
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
127 bp=b->d;
130 carry=bn_add_words(rp,ap,bp,min);
133 bp+=min;
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
191 bp=b->d;
199 t2= *(bp++);
216 carry=bn_sub_words(rp,ap,bp,min);
218 bp+=min;
  /external/openssl/crypto/pem/
pem_pk8.c 69 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder,
73 static int do_pk8pkey_fp(FILE *bp, EVP_PKEY *x, int isder,
84 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
88 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u);
91 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
95 return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u);
98 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
102 return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u);
105 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
109 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u)
214 BIO *bp; local
227 BIO *bp; local
    [all...]
  /bionic/libc/tzcode/
strptime.c 114 const unsigned char *bp; local
118 bp = (unsigned char *)buf;
125 while (isspace(*bp))
126 bp++;
139 if (c != *bp++)
163 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, cr)))
169 if (!(bp = _strptime(bp, "%m/%d/%y", tm, cr)))
175 if (!(bp = _strptime(bp, "%H:%M", tm, cr))
    [all...]

Completed in 706 milliseconds

1 2 3 4 5 6