/bionic/libc/upstream-openbsd/lib/libc/gen/ |
H A D | exec.c | 139 char *bp, *cur, *path, buf[PATH_MAX]; local 151 bp = (char *)name; 155 bp = buf; 202 retry: (void)execve(bp, argv, envp); 218 memp[1] = bp;
|
/bionic/libc/tzcode/ |
H A D | 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 [all...] |
H A D | localtime.c | 635 register const struct ttinfo * bp = &sp->ttis[b]; local 636 result = ap->tt_gmtoff == bp->tt_gmtoff && 637 ap->tt_isdst == bp->tt_isdst && 638 ap->tt_ttisstd == bp->tt_ttisstd && 639 ap->tt_ttisgmt == bp->tt_ttisgmt && 641 &sp->chars[bp->tt_abbrind]) == 0;
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
H A D | sigcontext32.h | 75 unsigned int bp; member in struct:sigcontext_ia32
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | e_powf.c | 23 bp[] = {1.0, 1.5,}, variable 164 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ 165 v = one/(ax+bp[k]); 170 /* t_h=ax+bp[k] High */ 173 t_l = ax - (t_h-bp[k]);
|
H A D | e_pow.c | 64 bp[] = {1.0, 1.5,}, variable 222 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ 223 v = one/(ax+bp[k]); 227 /* t_h=ax+bp[k] High */ 230 t_l = ax - (t_h-bp[k]);
|
/bionic/libc/dns/nameser/ |
H A D | ns_name.c | 222 u_char *label, *bp, *eom; local 227 bp = dst; 229 label = bp++; 239 &label, &bp, eom)) 245 label = bp++; 279 c = (int)(bp - label - 1); 292 if (bp >= eom) { 296 *bp++ = '\0'; 298 if ((bp - dst) > MAXCDNAME) { 303 *dstlen = (bp 1044 encode_bitsring(const char **bp, const char *end, unsigned char **labelp, unsigned char ** dst, unsigned const char *eom) argument [all...] |
/bionic/libc/dns/net/ |
H A D | gethnamaddr.c | 209 char *bp, **ap, **hap, *ep; local 246 bp = buf; 253 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp)); 254 if ((n < 0) || !maybe_ok(res, bp, name_ok)) 263 n = (int)strlen(bp) + 1; /* for the \0 */ 266 hent->h_name = bp; 267 bp += n; 278 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp)); [all...] |
H A D | getaddrinfo.c | 1305 char *bp, *ep; local 1336 bp = hostbuf; 1343 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); 1344 if ((n < 0) || !(*name_ok)(bp)) { 1354 n = strlen(bp) + 1; /* for the \0 */ 1359 canonname = bp; 1360 bp += n; 1367 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); [all...] |
/bionic/libc/dns/resolv/ |
H A D | res_cache.c | 654 _dnsPacket_bprintQName(DnsPacket* packet, char* bp, char* bend) argument 670 return bp; 680 bp = _bprint_c(bp, bend, '.'); 682 bp = _bprint_b(bp, bend, (const char*)p, c); 689 bp = _bprint_s(bp, bend, "<MALFORMED>"); 690 return bp;
|