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

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/src/math/
frexp_amd64.s 7 TEXT ·Frexp(SB),NOSPLIT,$0
8 JMP ·frexp(SB)
frexp_arm.s 7 TEXT ·Frexp(SB),NOSPLIT,$0
8 B ·frexp(SB)
frexp.go 7 // Frexp breaks f into a normalized fraction
13 // Frexp(±0) = ±0, 0
14 // Frexp(±Inf) = ±Inf, 0
15 // Frexp(NaN) = NaN, 0
16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) { func
  /prebuilts/go/linux-x86/src/math/
frexp_amd64.s 7 TEXT ·Frexp(SB),NOSPLIT,$0
8 JMP ·frexp(SB)
frexp_arm.s 7 TEXT ·Frexp(SB),NOSPLIT,$0
8 B ·frexp(SB)
frexp.go 7 // Frexp breaks f into a normalized fraction
13 // Frexp(±0) = ±0, 0
14 // Frexp(±Inf) = ±Inf, 0
15 // Frexp(NaN) = NaN, 0
16 func Frexp(f float64) (frac float64, exp int)
18 func frexp(f float64) (frac float64, exp int) { func
  /external/compiler-rt/test/asan/TestCases/
frexp_interceptor.cc 3 // Test the frexp() interceptor.
12 double y = frexp(x, exp);
  /external/ltp/testcases/misc/math/float/
float_exp_log.c 35 {FUNC_FREXP, 50, frexp, "frexp", "frexp_inp.ref", "frexp_out.ref",
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexp.c 18 * x = frexp(arg,&exp);
22 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
55 __weak_reference(frexp, frexpl);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestFrexp.rs 26 float out = frexp(inV, &outExponent);
33 float2 out = frexp(inV, &outExponent);
40 float3 out = frexp(inV, &outExponent);
47 float4 out = frexp(inV, &outExponent);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug056.go 9 func frexp() (a int, b float64) { func
14 a, b := frexp();
  /prebuilts/go/linux-x86/test/fixedbugs/
bug056.go 9 func frexp() (a int, b float64) { func
14 a, b := frexp();
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_frexp.c 20 * x = frexp(arg,&exp);
24 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
  /external/libxml2/include/
win32config.h 59 double val = frexp (d, &expon);
76 double val = frexp (d, &expon);
  /external/libxml2/win32/VC10/
config.h 58 double val = frexp (d, &expon);
75 double val = frexp (d, &expon);
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /bionic/tests/headers/posix/
tgmath_h.c 88 frexp(f1, &i); frexp(d1, &i); frexp(ld1, &i);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymath.h 33 extern double frexp (double, int *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymath.h 33 extern double frexp (double, int *);
  /external/mesa3d/src/mesa/main/
querymatrix.c 107 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/
quantization_util.cc 32 const double q = std::frexp(double_multiplier, shift);
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymath.h 33 extern double frexp (double, int *);
  /prebuilts/gdb/linux-x86/include/python2.7/
pymath.h 33 extern double frexp (double, int *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 33 extern double frexp (double, int *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 33 extern double frexp (double, int *);

Completed in 625 milliseconds

1 2 3 4 5 6 7 8 91011