/src/lib/libc/stdlib/ |
strtonum.c | 55 char *eptr; local in function:strtonum 63 rv = (long long)strtoi(nptr, &eptr, 10, minval, maxval, &e); 73 if (*eptr)
|
/src/tools/compat/ |
getline.c | 50 char *ptr, *eptr; local in function:getdelim 59 for (ptr = *buf, eptr = *buf + *bufsiz;;) { 76 if (ptr + 2 >= eptr) { 84 eptr = nbuf + nbufsiz;
|
/src/usr.bin/fmt/ |
buffer.h | 42 wchar_t *eptr; member in struct:buffer 51 buf->eptr = buf->ptr + BUF_SIZE; 64 size_t len = (buf->eptr - buf->bptr) + 72 buf->eptr = buf->bptr + len; 78 buf->eptr = buf->bptr + len; 85 if (buf->ptr >= buf->eptr)
|
/src/lib/libutil/ |
pidfile.c | 137 char dpath[PATH_MAX], buf[16], *eptr; local in function:pidfile_read 160 pid = (pid_t)strtoi(buf, &eptr, 10, 1, INT_MAX, &error); 161 if (error && !(error == ENOTSUP && *eptr == '\n')) {
|
/src/tests/lib/libc/stdio/ |
t_printf.c | 275 char *eptr; local in function:ATF_TC_BODY 280 ld = strtold("1e309", &eptr);
|
/src/tests/lib/libc/stdlib/ |
h_getopt_long.c | 47 char *line, *eptr, *longopt, *ptr, *optstring = NULL, *result = NULL; local in function:main 82 maxnlongopts = strtoul(ptr, &eptr, 10); 83 if (*eptr != '\0') 141 (int)strtoul(longopt, &eptr, 10); 142 if (*eptr != '\0')
|
/src/games/rogue/ |
init.c | 283 char *eptr; local in function:do_opts 285 if ((eptr = md_getenv("ROGUEOPTS")) != NULL) { 287 while ((*eptr) == ' ') { 288 eptr++; 290 if (!(*eptr)) { 293 if (!strncmp(eptr, "fruit=", 6)) { 294 eptr += 6; 295 env_get_value(&fruit, eptr, 1); 296 } else if (!strncmp(eptr, "file=", 5)) { 297 eptr += 5 [all...] |
/src/tests/net/in_cksum/ |
in_cksum.c | 122 unsigned char *eptr = ptr + m->m_len; local in function:dump_mbuf 125 if (ptr == eptr) { 130 eptr = ptr + m->m_len;
|
/src/lib/libcurses/ |
setterm.c | 370 char *eptr, *aptr; local in function:does_ctrl_o 376 eptr = capdup_nodelay(exit_cap); 377 if (__predict_false(eptr == NULL)) 382 free(eptr); 386 res = strstr(eptr, aptr) != NULL; 388 free(eptr);
|
/src/usr.sbin/makefs/cd9660/ |
cd9660_eltorito.c | 197 char *eptr; local in function:cd9660_eltorito_add_boot_option 218 image->loadSegment = strtoul(value, &eptr, 16); 219 if (eptr == value || *eptr != '\0' || errno != ERANGE) {
|
/src/usr.bin/make/ |
arch.c | 549 char *ptr, *eptr; local in function:ArchSVR4Entry 571 eptr = ar->fnametab + size; 572 for (entry = 0, ptr = ar->fnametab; ptr < eptr; ptr++) 586 entry = (size_t)strtol(&inout_name[1], &eptr, 0); 587 if ((*eptr != ' ' && *eptr != '\0') || eptr == &inout_name[1]) {
|
/src/usr.bin/man/ |
man.c | 559 char *p, buf[MAXPATHLEN], *escpage, *eptr; local in function:manual 575 eptr = escpage; 579 *eptr++ = '\\'; 580 *eptr++ = *p++; 582 *eptr++ = *p++; 585 *eptr = '\0';
|
/src/usr.bin/xlint/lint1/ |
lex.c | 586 char *eptr; local in function:lex_integer_constant 587 uint64_t ui = (uint64_t)strtoull(cp, &eptr, base); 588 lint_assert(eptr == cp + len); 654 char *eptr; local in function:lex_floating_constant 655 long double ld = strtold(cp, &eptr); 656 lint_assert(eptr == cp + len);
|
/src/sys/arch/hppa/include/ |
pdc.h | 504 u_int eptr; /* 0x7c: entry pointer */ member in struct:pdc_nvm
|