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

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/math/
modf_amd64.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 JMP ·modf(SB)
modf_arm.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 B ·modf(SB)
modf.go 7 // Modf returns integer and fractional floating-point numbers
11 // Modf(ħInf) = ħInf, NaN
12 // Modf(NaN) = NaN, NaN
13 func Modf(f float64) (int float64, frac float64)
15 func modf(f float64) (int float64, frac float64) { func
19 int, frac = Modf(-f)
  /prebuilts/go/linux-x86/src/math/
modf_amd64.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 JMP ·modf(SB)
modf_arm.s 7 TEXT ·Modf(SB),NOSPLIT,$0
8 B ·modf(SB)
modf.go 7 // Modf returns integer and fractional floating-point numbers
11 // Modf(ħInf) = ħInf, NaN
12 // Modf(NaN) = NaN, NaN
13 func Modf(f float64) (int float64, frac float64)
15 func modf(f float64) (int float64, frac float64) { func
19 int, frac = Modf(-f)
  /external/ltp/testcases/misc/math/float/
float_exp_log.c 41 {FUNC_MODF, 50, modf, "modf", "modf_inp.ref", "modf_out.ref",
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestModf.rs 26 float out = modf(inV, &outIntegralPart);
33 float2 out = modf(inV, &outIntegralPart);
40 float3 out = modf(inV, &outIntegralPart);
47 float4 out = modf(inV, &outIntegralPart);
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cmath 62 using ::modf;
  /bionic/libm/
fake_long_double.c 37 long double modfl(long double a1, long double* a2) { double i; double f = modf(a1, &i); *a2 = i; return f; }
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 18 * modf(double x, double *iptr)
33 modf(double x, double *iptr) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymath.h 35 extern double modf (double, double *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymath.h 35 extern double modf (double, double *);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_modf.c 19 * modf(double x, double *iptr)
34 modf(double x, double *iptr) function
  /prebuilts/gdb/darwin-x86/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/gdb/linux-x86/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 35 extern double modf (double, double *);
  /external/skia/debugger/QT/
SkCanvasWidget.cpp 109 modf(fUserMatrix.getTranslateX(), &x);
110 modf(fUserMatrix.getTranslateY(), &y);
  /external/skqp/debugger/QT/
SkCanvasWidget.cpp 109 modf(fUserMatrix.getTranslateX(), &x);
110 modf(fUserMatrix.getTranslateY(), &y);
  /external/ltp/testcases/misc/math/float/exp_log/
genmodf.c 42 * 1 double frationnal part of the input result of modf
63 tabR[i] = modf(TestInputValue, &tabRI[i]);
64 // tabR[i] = modf( ((Inc*i) + Inc), &tabRI[i]);
  /external/python/cpython2/Include/
pymath.h 35 extern double modf (double, double *);
  /external/python/cpython3/Include/
pymath.h 35 extern double modf (double, double *);
  /external/webrtc/webrtc/base/
timing.cc 82 double sec_int, sec_frac = modf(period, &sec_int);
  /external/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 143 __DEVICE__ double modf(double, double *);
144 __DEVICE__ float modf(float, float *);
238 using ::modf;

Completed in 508 milliseconds

1 2 3 4 5 6 7 8