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

1 2 3 4 5 6 7

  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
MimeBodyPartTest.java 40 MimeBodyPart bp = new MimeBodyPart(); local
43 assertNull(bp.getContentId());
47 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, cid1);
48 assertEquals(cid1, bp.getContentId());
51 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, "<" + cid1 + ">");
52 assertEquals(cid1, bp.getContentId());
  /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/webkit/Source/WebCore/platform/graphics/
FontFamily.cpp 49 const FontFamily* bp; local
50 for (ap = a.next(), bp = b.next(); ap != bp; ap = ap->next(), bp = bp->next()) {
51 if (!ap || !bp)
53 if (ap->family() != bp->family())
  /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 93 char *bp; local
144 bp = e.name;
148 *bp++ = c;
151 *bp = '\0';
pcap-enet.c 56 register u_char *bp; local
77 bp = buf.p;
79 ph = (struct packet_header *)bp;
92 bp += inc;
pcap-nit.c 103 register u_char *bp, *cp, *ep; local
117 bp = p->buffer;
119 bp = p->bp;
127 ep = bp + cc;
128 while (bp < ep) {
143 p->cc = ep - bp;
144 p->bp = bp;
149 nh = (struct nit_hdr *)bp;
    [all...]
  /external/ipsec-tools/src/racoon/
vmbuf.h 38 * bp v
49 caddr_t bp; /* pointer to the buffer */ member in struct:_vchar_t_
security.c 70 caddr_t bp; local
87 bp = (caddr_t)(sab + 1); /* here bp points to first proposal payload */
90 pbuf = isakmp_parsewoh(ISAKMP_NPTYPE_P, (struct isakmp_gen *)bp, len);
114 bp = (caddr_t)prop + sizeof(struct isakmp_pl_p) + prop->spi_size;
117 tbuf = isakmp_parsewoh(ISAKMP_NPTYPE_T, (struct isakmp_gen *)bp, len);
  /external/openssh/openbsd-compat/
strptime.c 70 const unsigned char *bp; local
80 bp = (unsigned char *)buf;
87 while (isspace(*bp))
88 bp++;
101 if (c != *bp++)
126 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, 0)))
132 if (!(bp = _strptime(bp, "%m/%d/%y", tm, 0)))
138 if (!(bp = _strptime(bp, "%H:%M", tm, 0))
    [all...]
  /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...]
  /frameworks/compile/libbcc/lib/AndroidBitcode/X86/
X86ABCExpandVAArg.cpp 48 llvm::Type *bp = llvm::Type::getInt8PtrTy(*mContext); local
49 llvm::Type *bpp = bp->getPointerTo(0);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 78 final MimeBodyPart bp = new MimeBodyPart(null, mimeType); local
80 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, contentId);
82 return bp;
161 final BodyPart bp = new MimeBodyPart(); local
162 bp.setBody(this.build());
163 return bp;
  /external/compiler-rt/lib/asan/
asan_posix.cc 55 uptr pc, sp, bp; local
56 GetPcSpBp(context, &pc, &sp, &bp);
57 ReportSIGSEGV(pc, sp, bp, addr);
  /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...]
  /frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
ARMABCExpandVAArg.cpp 48 llvm::Type *bp = llvm::Type::getInt8PtrTy(*mContext); local
49 llvm::Type *bpp = bp->getPointerTo(0);
66 addr = builder.CreateIntToPtr(addr_as_int, bp);
  /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...]
  /bionic/libc/unistd/
exec.c 140 char *bp, *cur, *path, buf[MAXPATHLEN]; local
152 bp = (char *)name;
156 bp = buf;
203 retry: (void)execve(bp, argv, environ);
219 memp[1] = bp;
  /external/libmtp/examples/
detect.c 36 uint32_t bp = 0; local
38 while (bp < len) {
39 if (buf[bp+0] == 0xFF && buf[bp+1] == 0xFE) {
41 } else if (buf[bp+0] == 0xFE && buf[bp+1] == 0xff) {
47 tmp = buf[bp+1] << 8 | buf[bp+0];
49 tmp = buf[bp+0] << 8 | buf[bp+1]
    [all...]
  /external/libppp/src/
async.c 103 async_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp,
112 if (!p || m_length(bp) > HDLCSIZE) {
113 m_freem(bp);
117 oldcnt = m_length(bp);
121 wp = bp;
128 m_freem(bp);
137 m_freem(bp);
138 bp = m_get(cnt, MB_ASYNCOUT);
139 memcpy(MBUF_CTOP(bp), p->async.xbuff, cnt);
140 bp->priv = cnt - oldcnt
149 struct mbuf *bp; local
    [all...]
pap.c 87 struct mbuf *bp; local
101 bp = m_get(plen + sizeof(struct fsmheader), MB_PAPOUT);
102 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
103 cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
109 link_PushPacket(&authp->physical->link, bp, bundle,
117 struct mbuf *bp; local
126 bp = m_get(plen + sizeof(struct fsmheader), MB_PAPOUT);
127 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
128 cp = MBUF_CTOP(bp) + sizeof(struct fsmheader);
138 link_PushPacket(&authp->physical->link, bp, authp->physical->dl->bundle
    [all...]
slcompress.c 438 u_short *bp; local
571 bp = (u_short *)&cs->cs_ip;
573 changes += *bp++;
  /external/oprofile/module/x86/
op_fixmap.c 159 static int __init mpf_table_ok(struct intel_mp_floating * mpf, unsigned long * bp)
161 if (*bp != SMP_MAGIC_IDENT)
165 if (mpf_checksum((unsigned char *)bp, 16))
173 unsigned long * bp = phys_to_virt(base); local
177 mpf = (struct intel_mp_floating *)bp;
178 if (mpf_table_ok(mpf, bp))
180 bp += 4;
  /external/tcpdump/
print-ntp.c 81 register const struct ntpdata *bp; local
84 bp = (struct ntpdata *)cp;
86 TCHECK(bp->status);
88 version = (int)(bp->status & VERSIONMASK) >> 3;
91 mode = bp->status & MODEMASK;
103 leapind = bp->status & LEAPMASK;
108 TCHECK(bp->stratum);
109 printf(", Stratum %u", bp->stratum);
111 TCHECK(bp->ppoll);
112 printf(", poll %us", bp->ppoll)
    [all...]

Completed in 405 milliseconds

1 2 3 4 5 6 7