HomeSort by relevance Sort by last modified time
    Searched defs:bp (Results 101 - 125 of 212) sorted by null

1 2 3 45 6 7 8 9

  /external/dhcpcd/
net.c 167 unsigned char *bp = buffer; local
193 if (bp)
194 *bp++ = (unsigned char)strtol(c, NULL, 16);
dhcp.c 312 uint8_t *bp = NULL; local
326 if (!bp)
327 bp = opt_buffer;
328 memcpy(bp, op, ol);
329 bp += ol;
369 if (bp) {
370 memcpy(bp, op, ol);
    [all...]
  /external/e2fsprogs/e2fsck/
super.c 104 blk_t *bp; local
112 for (i = 0, bp = (blk_t *) pb->buf;
113 i < limit; i++, bp++)
114 if (*bp)
  /external/fdlibm/
e_pow.c 68 bp[] = {1.0, 1.5,}, variable
224 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
225 v = one/(ax+bp[k]);
229 /* t_h=ax+bp[k] High */
232 t_l = ax - (t_h-bp[k]);
  /external/libppp/src/
fsm.c 193 struct mbuf *bp; local
214 bp = m_get(plen, mtype);
215 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader));
217 memcpy(MBUF_CTOP(bp) + sizeof(struct fsmheader), ptr, count);
218 log_DumpBp(LogDEBUG, "fsm_Output", bp);
219 link_PushPacket(fp->link, bp, fp->bundle, LINK_QUEUES(fp->link) - 1,
466 FsmRecvConfigReq(struct fsm *fp, struct fsmheader *lhp, struct mbuf *bp)
474 bp = m_pullup(bp);
475 plen = m_length(bp);
    [all...]
ipv6cp.c 351 ipv6cp_Input(struct bundle *bundle, struct link *l, struct mbuf *bp)
354 m_settype(bp, MB_IPV6CPIN);
356 fsm_Input(&bundle->ncp.ipv6cp.fsm, bp);
361 m_freem(bp);
425 struct mbuf *bp; local
444 bp = m_dequeue(queue);
445 bp = mbuf_Read(bp, &secs, sizeof secs);
446 bp = m_pullup(bp);
    [all...]
ipcp.c 1441 struct mbuf *bp; local
    [all...]
  /external/openssl/crypto/bn/
bn_lib.c 640 BN_ULONG t1,t2,*ap,*bp; local
648 bp=b->d;
652 t2= bp[i];
bn_nist.c 405 const unsigned int *bp=(const unsigned int *)buf.ui; local
407 acc = rp[0]; acc += bp[3*2-6];
408 acc += bp[5*2-6]; rp[0] = (unsigned int)acc; acc >>= 32;
410 acc += rp[1]; acc += bp[3*2-5];
411 acc += bp[5*2-5]; rp[1] = (unsigned int)acc; acc >>= 32;
413 acc += rp[2]; acc += bp[3*2-6];
414 acc += bp[4*2-6];
415 acc += bp[5*2-6]; rp[2] = (unsigned int)acc; acc >>= 32;
417 acc += rp[3]; acc += bp[3*2-5];
418 acc += bp[4*2-5]
533 const unsigned int *bp=(const unsigned int *)buf; local
680 const unsigned int *bp=(const unsigned int *)buf.ui; local
884 const unsigned int *bp=(const unsigned int *)buf.ui; local
    [all...]
  /external/openssl/crypto/conf/
conf.h 95 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
96 int (*dump)(const CONF *conf, BIO *bp);
129 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,long *eline); variable
166 int NCONF_load_bio(CONF *conf, BIO *bp,long *eline);
  /external/openssl/crypto/
mem_dbg.c 319 *bp=(const char *)b->addr; local
320 if (ap==bp) return 0;
321 else if (ap>bp) return 1;
  /external/openssl/include/openssl/
conf.h 95 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
96 int (*dump)(const CONF *conf, BIO *bp);
129 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,long *eline); variable
166 int NCONF_load_bio(CONF *conf, BIO *bp,long *eline);
  /external/openssl/ssl/
d1_both.c 1467 unsigned char *buffer, *bp; local
    [all...]
  /external/stlport/src/
num_put_float.cpp 487 static size_t __format_float_scientific( __iostring& buf, const char *bp,
498 buf += *bp++;
511 while (*bp != 0 && precision--)
512 buf += *bp++;
550 static size_t __format_float_fixed( __iostring &buf, const char *bp,
554 if ( sign && (decpt > -precision) && (*bp != 0) )
562 buf += (nnn <= 0 || *bp == 0) ? '0' : *bp++;
574 while ( *bp != 0 && --precision >= 0 ) {
575 buf += (++decpt <= 0) ? '0' : *bp++
861 char * bp; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 487 static size_t __format_float_scientific( __iostring& buf, const char *bp,
498 buf += *bp++;
511 while (*bp != 0 && precision--)
512 buf += *bp++;
550 static size_t __format_float_fixed( __iostring &buf, const char *bp,
554 if ( sign && (decpt > -precision) && (*bp != 0) )
562 buf += (nnn <= 0 || *bp == 0) ? '0' : *bp++;
574 while ( *bp != 0 && --precision >= 0 ) {
575 buf += (++decpt <= 0) ? '0' : *bp++
861 char * bp; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
tran.c 415 uschar *buf, *bp; local
419 for (bp = buf; (c = *s) != delim; s++) {
423 *bp++ = c;
427 *bp++ = '\\';
431 case '\\': *bp++ = '\\'; break;
432 case 'n': *bp++ = '\n'; break;
433 case 't': *bp++ = '\t'; break;
434 case 'b': *bp++ = '\b'; break;
435 case 'f': *bp++ = '\f'; break;
436 case 'r': *bp++ = '\r'; break
    [all...]
  /system/core/sh/
exec.c 620 const struct builtincmd *bp; local
622 for (bp = builtincmd ; bp->name ; bp++) {
623 if (*bp->name == *name && equal(bp->name, name))
624 return bp->builtin;
633 const struct builtincmd *bp; local
635 for (bp = splbltincmd ; bp->name ; bp++)
652 const struct builtincmd *bp; local
    [all...]
  /bionic/libc/netbsd/
gethnamaddr.c 184 char *bp, **ap, **hap, *ep; local
216 bp = rs->hostbuf;
224 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
225 if ((n < 0) || !(*name_ok)(bp)) {
235 n = strlen(bp) + 1; /* for the \0 */
240 rs->host.h_name = bp;
241 bp += n;
254 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
624 char *bp, *ep; local
    [all...]
  /external/grub/stage2/
char_io.c 198 char *bp = buffer; local
205 *bp++ = c; /* putchar(c); */
215 *bp++ = *(ptr++); /* putchar(*(ptr++)); */
218 case 'c': *bp++ = (*(dataptr++))&0xff;
226 *bp++ = c; /* putchar(c); */
231 *bp = 0;
232 return bp - buffer;
  /external/libpcap/
pcap-dlpi.c 247 register u_char *bp, *ep, *pk; local
301 bp = p->buffer + p->offset;
303 bp = p->bp;
307 ep = bp + cc;
310 while (bp < ep) {
325 p->bp = bp;
326 p->cc = ep - bp;
331 if ((long)bp & 3)
    [all...]
pcap-int.h 173 u_char *bp; member in struct:pcap
pcap-linux.c 463 u_char *bp; local
494 bp = handle->buffer + handle->offset;
510 handle->fd, bp + offset,
588 hdrp = (struct sll_header *)bp;
673 if (bpf_filter(handle->fcode.bf_insns, bp,
737 callback(userdata, &pcap_header, bp);
    [all...]
  /external/qemu/
kvm-all.c 892 struct kvm_sw_breakpoint *bp; local
894 QTAILQ_FOREACH(bp, &env->kvm_state->kvm_sw_breakpoints, entry) {
895 if (bp->pc == pc)
896 return bp;
923 struct kvm_sw_breakpoint *bp; local
928 bp = kvm_find_sw_breakpoint(current_env, addr);
929 if (bp) {
930 bp->use_count++;
934 bp = qemu_malloc(sizeof(struct kvm_sw_breakpoint));
935 if (!bp)
965 struct kvm_sw_breakpoint *bp; local
1001 struct kvm_sw_breakpoint *bp, *next; local
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 858 char *bp; local
874 bp = buf;
881 *bp++ = c;
884 *bp = 0;
913 return bp - buf;
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-linux.c 6381 char *bp = (*vkuu)->buffer; local
    [all...]

Completed in 930 milliseconds

1 2 3 45 6 7 8 9