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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
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) {
18 int, frac = Modf(-f)
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_386.s 7 // func Modf(f float64) (int float64, frac float64)
8 TEXT ·Modf(SB),NOSPLIT,$0
floor.go 20 d, fract := Modf(-x)
26 d, _ := Modf(x)
54 d, _ := Modf(x)
stubs_arm64.s 69 TEXT ·Modf(SB),NOSPLIT,$0
70 B ·modf(SB)
stubs_ppc64x.s 69 TEXT ·Modf(SB),NOSPLIT,$0
70 BR ·modf(SB)
  /prebuilts/go/linux-x86/src/math/
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) {
18 int, frac = Modf(-f)
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_386.s 7 // func Modf(f float64) (int float64, frac float64)
8 TEXT ·Modf(SB),NOSPLIT,$0
floor.go 20 d, fract := Modf(-x)
26 d, _ := Modf(x)
54 d, _ := Modf(x)
stubs_arm64.s 69 TEXT ·Modf(SB),NOSPLIT,$0
70 B ·modf(SB)
stubs_ppc64x.s 69 TEXT ·Modf(SB),NOSPLIT,$0
70 BR ·modf(SB)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
round_fwd.hpp 59 T modf(const T& v, T* ipart, const Policy& pol);
61 T modf(const T& v, T* ipart);
63 T modf(const T& v, int* ipart, const Policy& pol);
65 T modf(const T& v, int* ipart);
67 T modf(const T& v, long* ipart, const Policy& pol);
69 T modf(const T& v, long* ipart);
72 T modf(const T& v, boost::long_long_type* ipart, const Policy& pol);
74 T modf(const T& v, boost::long_long_type* ipart);
  /toolchain/binutils/binutils-2.25/libiberty/config/
mh-aix 5 # in libc.a for use by some libc public functions including modf. The public
7 # uses modf), we add copysign here. Supposedly, this problem is fixed in AIX
  /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);
  /development/ndk/platforms/android-13/arch-arm/symbols/
libm.so.functions.txt 104 modf
  /development/ndk/platforms/android-13/arch-mips/symbols/
libm.so.functions.txt 104 modf
  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 104 modf
  /development/ndk/platforms/android-9/arch-arm/symbols/
libm.so.functions.txt 104 modf
  /development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt 104 modf
  /external/mesa3d/src/glsl/builtins/ir/
modf.ir 1 ((function modf
  /external/clang/test/CodeGen/
builtin-attributes.c 31 // Same thing for modf and friends.
33 // CHECK: call double @modf(double %
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 18 * modf(double x, double *iptr)
33 modf(double x, double *iptr) function

Completed in 6766 milliseconds

1 2 3 4 5 6 7 8 91011>>