HomeSort by relevance Sort by last modified time
    Searched refs:expt (Results 1 - 25 of 31) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
strtod.c 36 /* The following constants are machine-specific. MD{MIN,MAX}EXPT are
68 int esign, expt; local
124 save = sp, expt = 0, esign = 1;
134 expt = expt*10 + c-'0';
135 if (esign < 0) expt = -expt;
139 expt += scale;
140 /* Now the number is sign*0.fraction*10**expt */
142 if (expt > MDMAXEXPT) {
    [all...]
  /external/python/cpython2/Python/
strtod.c 36 /* The following constants are machine-specific. MD{MIN,MAX}EXPT are
68 int esign, expt; local
124 save = sp, expt = 0, esign = 1;
134 expt = expt*10 + c-'0';
135 if (esign < 0) expt = -expt;
139 expt += scale;
140 /* Now the number is sign*0.fraction*10**expt */
142 if (expt > MDMAXEXPT)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_exp.c 40 * returned separately in 'expt'.
46 __frexp_exp(double x, int *expt)
59 *expt = (hx >> 20) - (0x3ff + 1023) + k;
65 * __ldexp_exp(x, expt) and __ldexp_cexp(x, expt) compute exp(x) * 2**expt.
70 * exponential functions. We assume expt is small (0 or -1), and the caller
75 __ldexp_exp(double x, int expt)
81 expt += ex_expt;
82 INSERT_WORDS(scale, (0x3ff + expt) << 20, 0)
    [all...]
k_expf.c 45 __frexp_expf(float x, int *expt)
52 *expt = (hx >> 23) - (0x7f + 127) + k;
58 __ldexp_expf(float x, int expt)
64 expt += ex_expt;
65 SET_FLOAT_WORD(scale, (0x7f + expt) << 23);
70 __ldexp_cexpf(float complex z, int expt)
78 expt += ex_expt;
80 half_expt = expt / 2;
82 half_expt = expt - half_expt;
e_acosl.c 48 int16_t expsign, expt; local
51 expt = expsign & 0x7fff;
52 if(expt >= BIAS) { /* |x| >= 1 */
53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) {
59 if(expt<BIAS-1) { /* |x| < 0.5 */
60 if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/
e_asinl.c 38 int16_t expsign, expt; local
41 expt = expsign & 0x7fff;
42 if(expt >= BIAS) { /* |x|>= 1 */
43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0)
47 } else if (expt<BIAS-1) { /* |x|<0.5 */
48 if(expt<ASIN_LINEAR) { /* if |x| is small, asinl(x)=x */
s_atanl.c 38 int16_t expsign, expt; local
43 expt = expsign & 0x7fff;
44 if(expt >= ATAN_CONST) { /* if |x| is large, atan(x)~=pi/2 */
45 if(expt == BIAS + LDBL_MAX_EXP &&
53 expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff);
55 if (expt < ATAN_LINEAR) { /* if |x| is small, atanl(x)~=x */
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
strtof.c 51 Long expt; local
55 k = strtodg(s, sp, &fpi, &expt, bits);
68 u.L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23);
strtopx.c 66 Long expt; local
70 k = strtodg(s, sp, &fpi, &expt, bits);
85 L[_0] = (UShort)(expt + 0x3fff + 63);
gethex.c 42 gethex( CONST char **sp, CONST FPI *fpi, Long *expt, Bigint **bp, int sign)
187 *expt = fpi->emin;
247 *expt = e;
strtodg.c 182 double d, CONST FPI *fpi, Long *expt, ULong *bits, int exact, int rd, int *irv
287 *expt = e;
308 CONST char *s00, char **se, CONST FPI *fpi, Long *expt, ULong *bits
358 irv = gethex(&s, fpi, expt, &rvb, sign);
478 *expt = fpi->emax + 1;
521 if (rvOK(dval(rv), fpi, expt, bits, 1, rd, &irv))
528 if (rvOK(dval(rv), fpi, expt, bits, i, rd, &irv))
542 if (rvOK(dval(rv), fpi, expt, bits, 0, rd, &irv))
550 if (rvOK(dval(rv), fpi, expt, bits, 0, rd, &irv))
633 *expt = emin;
    [all...]
strtod.c 137 Long expt; local
152 switch((i = gethex(&s, &fpi, &expt, &bb, sign)) & STRTOG_Retmask) {
164 ULtod((/* LINTED */(U*)&rv)->L, bits, expt, i);
  /external/python/cpython3/Modules/_decimal/libmpdec/literature/
umodarith.lisp 343 (expt 2 64)))
347 (expt 2 64)))
350 (mod (* w (expt 2 n))
351 (expt 2 64)))
354 (floor w (expt 2 n)))
358 (+ (* (expt 2 64) hi) lo))
368 (+ (expt 2 64) (- (expt 2 32)) 1))
371 (+ (expt 2 64) (- (expt 2 34)) 1)
    [all...]
  /bionic/libc/stdio/
vfprintf.cpp 73 int expt; /* integer value of exponent */ local
355 dtoaresult = cp = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend);
362 dtoaresult = cp = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend);
369 if (expt == INT_MAX) ox[1] = '\0';
392 dtoaresult = cp = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
399 dtoaresult = cp = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
404 if (expt == 9999) expt = INT_MAX;
408 if (expt == INT_MAX) { /* inf or nan */
421 if (expt > -4 && expt <= prec)
    [all...]
vfwprintf.cpp 73 int expt; /* integer value of exponent */ local
333 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend);
340 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend);
347 if (expt == INT_MAX) ox[1] = '\0';
374 dtoaresult = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
381 dtoaresult = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
386 if (expt == 9999) expt = INT_MAX;
394 if (expt == INT_MAX) { /* inf or nan */
406 if (expt > -4 && expt <= prec)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_param_sensitivity.py 50 expt,_ = its.target.get_target_exposure_combos(cam)["midSensitivity"]
56 req = its.objects.manual_capture_request(s, expt)
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_expl.h 306 __ldexp_cexpl(long double complex z, int expt)
317 expt += k - 16382;
320 half_expt = expt / 2;
323 SET_LDBL_EXPSIGN(scale1, BIAS + expt - half_expt);
  /frameworks/rs/tests/lldb/
run_tests.py 483 except TestSuiteException as expt:
488 raise expt
632 except TestSuiteException as expt:
638 % expt.message, logging.ERROR)
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 654 int expt = 0; /* integer value of exponent */ local
1068 &expt, &signflag, &dtoaend);
1073 &expt, &signflag, &dtoaend);
1080 if (expt == INT_MAX)
1117 &expt, &signflag, &dtoaend);
1122 &expt, &signflag, &dtoaend);
1123 if (expt == 9999)
1124 expt = INT_MAX;
1143 if (expt == INT_MAX) { /* inf or nan */
    [all...]
  /external/tensorflow/tensorflow/contrib/makefile/
Makefile 380 NVCCFLAGS := -x=cu -D__CUDACC__ -DNVCC -DANDROID_TEGRA -ccbin $(NDK_ROOT)/toolchains/$(TOOLCHAIN)/prebuilt/$(ANDROID_HOST_OS_ARCH)/bin/$(BIN_PREFIX)-g++ --std c++11 --expt-relaxed-constexpr -m64 -gencode arch=compute_53,\"code=sm_53\" -gencode arch=compute_62,\"code=sm_62\" -DEIGEN_AVOID_STL_ARRAY -DTENSORFLOW_USE_EIGEN_THREADPOOL -DLANG_CXX11 -DEIGEN_HAS_C99_MATH -DGOOGLE_CUDA=1 -DTF_EXTRA_CUDA_CAPABILITIES=5.3
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_asyncore.py 124 attributes = ('read', 'expt', 'write', 'closed', 'error_handled')
128 (select.POLLPRI, 'expt'),
140 self.expt = False
153 self.expt = True
  /external/python/cpython2/Lib/test/
test_asyncore.py 124 attributes = ('read', 'expt', 'write', 'closed', 'error_handled')
128 (select.POLLPRI, 'expt'),
140 self.expt = False
153 self.expt = True
  /external/python/cpython3/Lib/test/
test_asyncore.py 137 attributes = ('read', 'expt', 'write', 'closed', 'error_handled')
141 (select.POLLPRI, 'expt'),
153 self.expt = False
166 self.expt = True
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_asyncore.py 125 attributes = ('read', 'expt', 'write', 'closed', 'error_handled')
129 (select.POLLPRI, 'expt'),
141 self.expt = False
154 self.expt = True
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_asyncore.py 125 attributes = ('read', 'expt', 'write', 'closed', 'error_handled')
129 (select.POLLPRI, 'expt'),
141 self.expt = False
154 self.expt = True

Completed in 438 milliseconds

1 2