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

1 2 3 4 5 6

  /dalvik/vm/mterp/armv5te/
OP_REM_DOUBLE.S 3 %include "armv5te/binopWide.S" {"instr":"bl fmod"}
OP_REM_DOUBLE_2ADDR.S 3 %include "armv5te/binopWide2addr.S" {"instr":"bl fmod"}
  /dalvik/vm/mterp/armv6t2/
OP_REM_DOUBLE_2ADDR.S 3 %include "armv6t2/binopWide2addr.S" {"instr":"bl fmod"}
  /dalvik/vm/mterp/c/
OP_REM_DOUBLE_2ADDR.c 6 fmod(GET_REGISTER_DOUBLE(vdst), GET_REGISTER_DOUBLE(vsrc1)));
OP_REM_DOUBLE.c 10 fmod(GET_REGISTER_DOUBLE(vsrc1), GET_REGISTER_DOUBLE(vsrc2)));
  /bionic/libm/man/
fmod.3 32 .\" from: @(#)fmod.3 5.1 (Berkeley) 5/2/91
33 .\" $FreeBSD: src/lib/msun/man/fmod.3,v 1.8 2001/10/13 12:23:23 bde Exp $
36 .Dt FMOD 3
39 .Nm fmod ,
47 .Fn fmod "double x" "double y"
52 .Fn fmod
59 .Fn fmod
77 .Fn fmod
85 .Fn fmod
  /dalvik/vm/mterp/x86-atom/
OP_REM_DOUBLE.S 23 * Description: Calls fmod to compute the remainder of the result of dividing a
47 call fmod # call: (long double x, long double y)
50 fstpl (rFP, rINST, 4) # vAA<- remainder; return of fmod
OP_REM_DOUBLE_2ADDR.S 23 * Description: Calls fmod to compute the remainder of the result of dividing a
48 call fmod # call: (long double x, long double y)
51 fstpl (rFP, rINST, 4) # vAA<- remainder; return of fmod
OP_REM_FLOAT.S 23 * Description: Calls fmod to compute the remainder of the result of dividing a
42 fstps (rFP, rINST, 4) # vAA<- remainder; return of fmod
OP_REM_FLOAT_2ADDR.S 23 * Description: Calls fmod to compute the remainder of the result of dividing a
  /external/fdlibm/
w_fmod.c 22 double ieee_fmod(double x, double y) /* wrapper fmod */
24 double ieee_fmod(x,y) /* wrapper fmod */
  /external/qemu/audio/
fmodaudio.c 2 * QEMU FMOD audio driver
24 #include <fmod.h>
29 #define AUDIO_CAP "fmod"
376 fmod_logerr2 ("DAC", "Failed to allocate FMOD sample\n");
388 /* FMOD always operates on little endian frames? */
442 fmod_logerr2 ("ADC", "Failed to allocate FMOD sample\n");
446 /* FMOD always operates on little endian frames? */
553 dolog ("Wrong FMOD version %f, need at least %f\n", ver, FMOD_VERSION);
559 dolog ("FMOD before 3.75 has bug preventing ADC from working\n"
575 dolog ("Unknown FMOD driver `%s'\n", drv)
    [all...]
  /frameworks/base/libs/rs/scriptc/
rs_math.rsh 138 extern float __attribute__((overloadable)) fmod(float, float);
139 extern float2 __attribute__((overloadable)) fmod(float2, float2);
140 extern float3 __attribute__((overloadable)) fmod(float3, float3);
141 extern float4 __attribute__((overloadable)) fmod(float4, float4);
142 extern float8 __attribute__((overloadable)) fmod(float8, float8);
143 extern float16 __attribute__((overloadable)) fmod(float16, float16);
  /external/webkit/JavaScriptCore/runtime/
JSValue.cpp 149 double d32 = fmod(trunc(d), D32);
169 double d32 = fmod(trunc(d), D32);
  /bionic/libm/i387/
e_fmod.S 40 ENTRY(fmod) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cmath 68 using ::fmod;
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cmath 68 using ::fmod;
  /external/stlport/test/unit/
cmath_test.cpp 79 CPPUNIT_CHECK( are_equals(std::fmod(1.5, 1.0), 0.5) );
113 CPPUNIT_CHECK( are_equals(std::fmod(1.5f, 1.0f), 0.5f) );
139 CPPUNIT_CHECK( are_equals(std::fmod(1.5l, 1.0l), 0.5l) );
  /external/webkit/JavaScriptCore/wtf/
MathExtras.h 159 // Work around a bug in the Microsoft CRT, where fmod(x, +-infinity) yields NaN instead of x.
160 inline double wtf_fmod(double x, double y) { return (!isinf(x) && isinf(y)) ? x : fmod(x, y); }
166 #define fmod(x, y) wtf_fmod(x, y) macro
  /ndk/sources/android/stlport/test/unit/
cmath_test.cpp 79 CPPUNIT_CHECK( are_equals(std::fmod(1.5, 1.0), 0.5) );
113 CPPUNIT_CHECK( are_equals(std::fmod(1.5f, 1.0f), 0.5f) );
139 CPPUNIT_CHECK( are_equals(std::fmod(1.5l, 1.0l), 0.5l) );
  /bionic/libm/src/
e_remainder.c 24 * Based on fmod() return x-[x/p]chopped*p exactlp.
  /bionic/libstdc++/include/
cmath 70 using ::fmod;
  /external/skia/include/core/
SkFloatingPoint.h 49 #define sk_float_mod(x,y) (float)::fmod(x,y)
  /ndk/sources/cxx-stl/system/include/
cmath 70 using ::fmod;
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 68 using ::fmod;

Completed in 586 milliseconds

1 2 3 4 5 6