Home
last modified time | relevance | path

Searched refs:expt (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dstrtod.c68 int esign, expt; in strtod() local
124 save = sp, expt = 0, esign = 1; in strtod()
134 expt = expt*10 + c-'0'; in strtod()
135 if (esign < 0) expt = -expt; in strtod()
139 expt += scale; in strtod()
142 if (expt > MDMAXEXPT) { in strtod()
145 if (expt == MDMAXEXPT) { in strtod()
148 if (expt < MDMINEXPT) { in strtod()
151 if (expt == MDMINEXPT) { in strtod()
156 (void) sprintf(dp, "E%d", expt); in strtod()
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dstrtof.c51 Long expt; variable
55 k = strtodg(s, sp, &fpi, &expt, bits);
68 u.L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23);
Dstrtopx.c66 Long expt; local
70 k = strtodg(s, sp, &fpi, &expt, bits);
85 L[_0] = (UShort)(expt + 0x3fff + 63);
Dstrtodg.c182 double d, CONST FPI *fpi, Long *expt, ULong *bits, int exact, int rd, int *irv in rvOK() argument
287 *expt = e; in rvOK()
308 CONST char *s00, char **se, CONST FPI *fpi, Long *expt, ULong *bits in strtodg() argument
358 irv = gethex(&s, fpi, expt, &rvb, sign); in strtodg()
478 *expt = fpi->emax + 1; in strtodg()
521 if (rvOK(dval(rv), fpi, expt, bits, 1, rd, &irv)) in strtodg()
528 if (rvOK(dval(rv), fpi, expt, bits, i, rd, &irv)) in strtodg()
542 if (rvOK(dval(rv), fpi, expt, bits, 0, rd, &irv)) in strtodg()
550 if (rvOK(dval(rv), fpi, expt, bits, 0, rd, &irv)) in strtodg()
633 *expt = emin; in strtodg()
[all …]
Dgethex.c42 gethex( CONST char **sp, CONST FPI *fpi, Long *expt, Bigint **bp, int sign) in gethex() argument
187 *expt = fpi->emin; in gethex()
247 *expt = e; in gethex()
Dstrtod.c137 Long expt; in strtod() local
152 switch((i = gethex(&s, &fpi, &expt, &bb, sign)) & STRTOG_Retmask) { in strtod()
164 ULtod((/* LINTED */(U*)&rv)->L, bits, expt, i); in strtod()
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dvfwprintf.c654 int expt = 0; /* integer value of exponent */ in WDECL() local
1068 &expt, &signflag, &dtoaend); in WDECL()
1073 &expt, &signflag, &dtoaend); in WDECL()
1080 if (expt == INT_MAX) in WDECL()
1117 &expt, &signflag, &dtoaend); in WDECL()
1122 &expt, &signflag, &dtoaend); in WDECL()
1123 if (expt == 9999) in WDECL()
1124 expt = INT_MAX; in WDECL()
1143 if (expt == INT_MAX) { /* inf or nan */ in WDECL()
1212 dtoaresult = cvt(_double, prec, flags, &softsign, &expt, ch, &ndig); in WDECL()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_asyncore.py140 self.expt = False
153 self.expt = True