HomeSort by relevance Sort by last modified time
    Searched refs:eptr (Results 1 - 9 of 9) sorted by null

  /external/fdlibm/
s_frexp.c 34 double ieee_frexp(double x, int *eptr)
36 double ieee_frexp(x, eptr)
37 double x; int *eptr;
44 *eptr = 0;
50 *eptr = -54;
52 *eptr += (ix>>20)-1022;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexp.c 35 frexp(double x, int *eptr)
40 *eptr = 0;
46 *eptr = -54;
48 *eptr += (ix>>20)-1022;
s_frexpf.c 26 frexpf(float x, int *eptr)
31 *eptr = 0;
37 *eptr = -25;
39 *eptr += (ix>>23)-126;
  /external/e2fsprogs/lib/e2p/
hashstr.c 51 char *eptr; local
64 num = strtol(string+8, &eptr, 10);
67 if (*eptr)
mntopts.c 59 char *eptr; local
73 num = strtol(string+8, &eptr, 10);
76 if (*eptr)
feature.c 125 char *eptr; local
156 num = strtol(string+9, &eptr, 10);
159 if (*eptr)
199 char *eptr; local
230 num = strtol(string+9, &eptr, 10);
233 if (*eptr)
  /external/openssl/crypto/asn1/
asn1_gen.c 390 char *eptr; local
393 tag_num = strtoul(vstart, &eptr, 10);
395 if (eptr && *eptr && (eptr > vstart + vlen))
404 if (eptr)
405 vlen -= eptr - vstart;
410 switch (*eptr)
430 erch[0] = *eptr;
836 char *eptr; local
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 279 char* eptr; local
306 eptr = pc_address + strlen(pc_address);
307 address = strtoul(pc_address, &eptr, 16);
  /external/grub/lib/
device.c 521 char *ptr, *eptr; local
593 eptr = ptr;
594 while (*eptr && ! isspace (*eptr))
595 eptr++;
596 *eptr = 0;

Completed in 2507 milliseconds