/bionic/libc/tzcode/ |
D | strptime.c | 114 const unsigned char *bp; in _strptime() local 118 bp = (unsigned char *)buf; in _strptime() 125 while (isspace(*bp)) in _strptime() 126 bp++; in _strptime() 139 if (c != *bp++) in _strptime() 163 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, cr))) in _strptime() 169 if (!(bp = _strptime(bp, "%m/%d/%y", tm, cr))) in _strptime() 175 if (!(bp = _strptime(bp, "%H:%M", tm, cr))) in _strptime() 181 if (!(bp = _strptime(bp, "%I:%M:%S %p", tm, cr))) in _strptime() 187 if (!(bp = _strptime(bp, "%H:%M:%S", tm, cr))) in _strptime() [all …]
|
D | localtime.c | 629 register const struct ttinfo * bp = &sp->ttis[b]; in typesequiv() local 630 result = ap->tt_gmtoff == bp->tt_gmtoff && in typesequiv() 631 ap->tt_isdst == bp->tt_isdst && in typesequiv() 632 ap->tt_ttisstd == bp->tt_ttisstd && in typesequiv() 633 ap->tt_ttisgmt == bp->tt_ttisgmt && in typesequiv() 635 &sp->chars[bp->tt_abbrind]) == 0; in typesequiv()
|
/bionic/libc/netbsd/ |
D | gethnamaddr.c | 184 char *bp, **ap, **hap, *ep; in getanswer() local 216 bp = rs->hostbuf; in getanswer() 224 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 225 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 235 n = strlen(bp) + 1; /* for the \0 */ in getanswer() 240 rs->host.h_name = bp; in getanswer() 241 bp += n; in getanswer() 254 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 255 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 288 *ap++ = bp; in getanswer() [all …]
|
/bionic/libc/netbsd/nameser/ |
D | ns_name.c | 208 u_char *label, *bp, *eom; in ns_name_pton() local 213 bp = dst; in ns_name_pton() 215 label = bp++; in ns_name_pton() 225 &label, &bp, eom)) in ns_name_pton() 231 label = bp++; in ns_name_pton() 265 c = (bp - label - 1); in ns_name_pton() 278 if (bp >= eom) { in ns_name_pton() 282 *bp++ = '\0'; in ns_name_pton() 284 if ((bp - dst) > MAXCDNAME) { in ns_name_pton() 294 label = bp++; in ns_name_pton() [all …]
|
/bionic/libc/unistd/ |
D | exec.c | 140 char *bp, *cur, *path, buf[MAXPATHLEN]; in execvp() local 152 bp = (char *)name; in execvp() 156 bp = buf; in execvp() 203 retry: (void)execve(bp, argv, environ); in execvp() 219 memp[1] = bp; in execvp()
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | e_powf.c | 23 bp[] = {1.0, 1.5,}, variable 164 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_powf() 165 v = one/(ax+bp[k]); in __ieee754_powf() 173 t_l = ax - (t_h-bp[k]); in __ieee754_powf()
|
D | e_pow.c | 64 bp[] = {1.0, 1.5,}, variable 222 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_pow() 223 v = one/(ax+bp[k]); in __ieee754_pow() 230 t_l = ax - (t_h-bp[k]); in __ieee754_pow()
|
/bionic/libc/netbsd/net/ |
D | getaddrinfo.c | 1307 char *bp, *ep; in getanswer() local 1338 bp = hostbuf; in getanswer() 1345 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 1346 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 1356 n = strlen(bp) + 1; /* for the \0 */ in getanswer() 1361 canonname = bp; in getanswer() 1362 bp += n; in getanswer() 1369 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 1370 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 1396 if (n > ep - bp || n >= MAXHOSTNAMELEN) { in getanswer() [all …]
|
/bionic/libc/stdio/ |
D | vfprintf.c | 1233 char *digits, *bp, *rve; in cvt() local 1255 bp = digits + ndigits; in cvt() 1259 bp += *decpt; in cvt() 1262 rve = bp; in cvt() 1263 while (rve < bp) in cvt()
|
/bionic/libc/netbsd/resolv/ |
D | res_cache.c | 666 _dnsPacket_bprintQName(DnsPacket* packet, char* bp, char* bend) in _dnsPacket_bprintQName() argument 682 return bp; in _dnsPacket_bprintQName() 692 bp = _bprint_c(bp, bend, '.'); in _dnsPacket_bprintQName() 694 bp = _bprint_b(bp, bend, (const char*)p, c); in _dnsPacket_bprintQName() 701 bp = _bprint_s(bp, bend, "<MALFORMED>"); in _dnsPacket_bprintQName() 702 return bp; in _dnsPacket_bprintQName()
|