Searched refs:fmodf (Results 1 – 25 of 28) sorted by relevance
12
/external/bison/linux-lib/ |
D | math.h | 1178 # undef fmodf 1179 # define fmodf rpl_fmodf 1181 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y)); 1182 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y)); 1185 # undef fmodf 1186 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y)); 1188 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y)); 1190 _GL_CXXALIASWARN (fmodf); 1192 # undef fmodf 1194 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
|
/external/bison/lib/ |
D | math.in.h | 866 # undef fmodf 867 # define fmodf rpl_fmodf macro 869 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y)); 870 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y)); 873 # undef fmodf 874 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y)); 876 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y)); 878 _GL_CXXALIASWARN (fmodf); 880 # undef fmodf 882 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
|
/external/bison/darwin-lib/ |
D | math.h | 1178 # undef fmodf 1179 # define fmodf rpl_fmodf 1181 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y)); 1182 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y)); 1185 # undef fmodf 1186 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y)); 1188 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y)); 1190 _GL_CXXALIASWARN (fmodf); 1192 # undef fmodf 1194 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
|
/external/llvm/test/CodeGen/X86/ |
D | vector-rem.ll | 2 ; RUN: llc < %s -march=x86-64 | grep fmodf | count 4
|
D | split-vector-rem.ll | 2 ; RUN: llc < %s -march=x86-64 | grep fmodf | count 8
|
/external/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 84 INLINE_DEF_FLOAT_SYMBOL(fmodf, 2)
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 23 float fmodf(float, float); 266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
|
/external/skia/include/core/ |
D | SkFloatingPoint.h | 89 #define sk_float_mod(x,y) fmodf(x,y)
|
/external/llvm/test/CodeGen/Thumb2/ |
D | float-ops.ll | 85 ; NONE: bl fmodf 86 ; HARD: b fmodf
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-neon-mul-div.ll | 656 ; CHECK: bl fmodf 657 ; CHECK: bl fmodf 664 ; CHECK: bl fmodf 665 ; CHECK: bl fmodf 666 ; CHECK: bl fmodf 667 ; CHECK: bl fmodf
|
D | illegal-float-ops.ll | 210 ; CHECK: bl fmodf
|
D | arm64-illegal-float-ops.ll | 210 ; CHECK: bl fmodf
|
D | f16-instructions.ll | 54 ; CHECK-NEXT: bl {{_?}}fmodf
|
/external/ltrace/etc/ |
D | libm.so.conf | 333 float fmodf(float, float);
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 430 /// float fmodf(float x, float y); 431 TLI_DEFINE_ENUM_INTERNAL(fmodf) 432 TLI_DEFINE_STRING_INTERNAL("fmodf")
|
/external/bison/m4/ |
D | math_h.m4 | 45 fmod fmodf fmodl frexpf frexpl hypotf hypotl
|
/external/llvm/test/Transforms/InstCombine/ |
D | win-math.ll | 159 ; WIN32-NOT: float @fmodf
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 199 TLI.setUnavailable(LibFunc::fmodf); in initialize()
|
/external/libcxx/include/ |
D | cmath | 91 float fmodf(float x, float y); 842 using ::fmodf; 846 … fmod(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return fmodf(__lcpp_x, __lcpp_y…
|
/external/llvm/test/CodeGen/ARM/ |
D | fp16-promote.ll | 82 ; CHECK-FP16: bl fmodf 87 ; CHECK-LIBCALL: bl fmodf
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 103 static_assert((std::is_same<decltype(fmodf(0,0)), float>::value), ""); in test_fmod()
|
/external/clang/lib/Headers/ |
D | tgmath.h | 794 __tg_fmod(float __x, float __y) {return fmodf(__x, __y);} in __tg_fmod()
|
/external/skia/src/animator/ |
D | SkScriptTokenizer.cpp | 1278 #define testRemainder(exp1, exp2) { #exp1 "%" #exp2, SkOperand2::kScalar, 0, fmodf((float) exp1, (f…
|
/external/llvm/patches/ |
D | 0002-Add-basic-Android-configuration.patch | 369 +/* Define to 1 if you have the `fmodf' function. */ 1312 +/* Define to 1 if you have the `fmodf' function. */
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 881 LIBBUILTIN(fmodf, "fff", "fne", "math.h", ALL_LANGUAGES)
|
12