HomeSort by: relevance | last modified time | path
    Searched refs:eptr (Results 1 - 19 of 19) sorted by relevancy

  /src/lib/libc/gen/
Lint_frexp.c 12 frexp(double value, int *eptr)
  /src/lib/libc/compat/gen/
compat_frexp_ieee754.c 57 frexp(double value, int *eptr)
68 *eptr = 0;
71 *eptr = -DBL_FRACBITS;
74 *eptr += u.dblu_dbl.dbl_exp - (DBL_EXP_BIAS - 1);
79 *eptr = 0;
  /src/lib/libm/src/
s_frexp.c 39 frexp(double x, int *eptr)
44 *eptr = 0;
50 *eptr = -54;
52 *eptr += ((uint32_t)ix>>20)-1022;
s_frexpf.c 28 frexpf(float x, int *eptr)
33 *eptr = 0;
39 *eptr = -25;
41 *eptr += (ix>>23)-126;
  /src/lib/libc/arch/vax/gen/
frexp.c 45 frexp(double value, int *eptr)
60 *eptr = u.s.u_exp - 128;
64 *eptr = 0;
  /src/lib/libc/stdlib/
strtonum.c 55 char *eptr; local
63 rv = (long long)strtoi(nptr, &eptr, 10, minval, maxval, &e);
73 if (*eptr)
  /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/games/rogue/
init.c 283 char *eptr; local
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/tools/compat/
getline.c 50 char *ptr, *eptr; local
59 for (ptr = *buf, eptr = *buf + *bufsiz;;) {
76 if (ptr + 2 >= eptr) {
84 eptr = nbuf + nbufsiz;
  /src/lib/libutil/
pidfile.c 137 char dpath[PATH_MAX], buf[16], *eptr; local
160 pid = (pid_t)strtoi(buf, &eptr, 10, 1, INT_MAX, &error);
161 if (error && !(error == ENOTSUP && *eptr == '\n')) {
  /src/tests/lib/libc/stdlib/
h_getopt_long.c 47 char *line, *eptr, *longopt, *ptr, *optstring = NULL, *result = NULL; local
82 maxnlongopts = strtoul(ptr, &eptr, 10);
83 if (*eptr != '\0')
141 (int)strtoul(longopt, &eptr, 10);
142 if (*eptr != '\0')
  /src/lib/libcurses/
setterm.c 370 char *eptr, *aptr; local
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/tests/net/in_cksum/
in_cksum.c 122 unsigned char *eptr = ptr + m->m_len; local
125 if (ptr == eptr) {
130 eptr = ptr + m->m_len;
  /src/usr.bin/make/
arch.c 549 char *ptr, *eptr; local
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
575 eptr = escpage;
579 *eptr++ = '\\';
580 *eptr++ = *p++;
582 *eptr++ = *p++;
585 *eptr = '\0';
  /src/tests/lib/libc/stdio/
t_printf.c 275 char *eptr; local
280 ld = strtold("1e309", &eptr);
  /src/usr.sbin/makefs/cd9660/
cd9660_eltorito.c 197 char *eptr; local
218 image->loadSegment = strtoul(value, &eptr, 16);
219 if (eptr == value || *eptr != '\0' || errno != ERANGE) {
  /src/usr.bin/xlint/lint1/
lex.c 582 char *eptr; local
583 uint64_t ui = (uint64_t)strtoull(cp, &eptr, base);
584 lint_assert(eptr == cp + len);
650 char *eptr; local
651 long double ld = strtold(cp, &eptr);
652 lint_assert(eptr == cp + len);
  /src/sys/arch/hppa/include/
pdc.h 504 u_int eptr; /* 0x7c: entry pointer */ member in struct:pdc_nvm

Completed in 28 milliseconds