/bionic/libc/tzcode/ |
D | strptime.c | 106 const unsigned char *bp; in _strptime() local 116 bp = (unsigned char *)buf; in _strptime() 123 while (isspace(*bp)) in _strptime() 124 bp++; in _strptime() 137 if (c != *bp++) in _strptime() 161 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, 0))) in _strptime() 167 if (!(bp = _strptime(bp, "%m/%d/%y", tm, 0))) in _strptime() 173 if (!(bp = _strptime(bp, "%H:%M", tm, 0))) in _strptime() 179 if (!(bp = _strptime(bp, "%I:%M:%S %p", tm, 0))) in _strptime() 185 if (!(bp = _strptime(bp, "%H:%M:%S", tm, 0))) in _strptime() [all …]
|
/bionic/libc/netbsd/ |
D | gethnamaddr.c | 178 char *bp, **ap, **hap, *ep; in getanswer() local 210 bp = rs->hostbuf; in getanswer() 218 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 219 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 229 n = strlen(bp) + 1; /* for the \0 */ in getanswer() 234 rs->host.h_name = bp; in getanswer() 235 bp += n; in getanswer() 248 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 249 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 282 *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 | 139 char *bp, *cur, *path, buf[MAXPATHLEN]; in execvp() local 151 bp = (char *)name; in execvp() 155 bp = buf; in execvp() 202 retry: (void)execve(bp, argv, environ); in execvp() 218 memp[1] = bp; in execvp()
|
/bionic/libm/src/ |
D | e_powf.c | 24 bp[] = {1.0, 1.5,}, variable 162 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_powf() 163 v = one/(ax+bp[k]); in __ieee754_powf() 171 t_l = ax - (t_h-bp[k]); in __ieee754_powf()
|
D | e_pow.c | 65 bp[] = {1.0, 1.5,}, variable 220 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */ in __ieee754_pow() 221 v = one/(ax+bp[k]); in __ieee754_pow() 228 t_l = ax - (t_h-bp[k]); in __ieee754_pow()
|
/bionic/libc/netbsd/net/ |
D | getaddrinfo.c | 1109 char *bp, *ep; in getanswer() local 1140 bp = hostbuf; in getanswer() 1147 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 1148 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 1158 n = strlen(bp) + 1; /* for the \0 */ in getanswer() 1163 canonname = bp; in getanswer() 1164 bp += n; in getanswer() 1171 n = dn_expand(answer->buf, eom, cp, bp, ep - bp); in getanswer() 1172 if ((n < 0) || !(*name_ok)(bp)) { in getanswer() 1198 if (n > ep - bp || n >= MAXHOSTNAMELEN) { in getanswer() [all …]
|
/bionic/libc/netbsd/resolv/ |
D | res_cache.c | 640 _dnsPacket_bprintQName(DnsPacket* packet, char* bp, char* bend) in _dnsPacket_bprintQName() argument 656 return bp; in _dnsPacket_bprintQName() 666 bp = _bprint_c(bp, bend, '.'); in _dnsPacket_bprintQName() 668 bp = _bprint_b(bp, bend, (const char*)p, c); in _dnsPacket_bprintQName() 675 bp = _bprint_s(bp, bend, "<MALFORMED>"); in _dnsPacket_bprintQName() 676 return bp; in _dnsPacket_bprintQName()
|
/bionic/libc/stdio/ |
D | vfprintf.c | 1221 char *digits, *bp, *rve; in cvt() local 1244 bp = digits + ndigits; in cvt() 1248 bp += *decpt; in cvt() 1251 rve = bp; in cvt() 1252 while (rve < bp) in cvt()
|