/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
mathcalls.h | 340 __MATHCALL (fmax,, (_Mdouble_ __x, _Mdouble_ __y));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
tgmath.h | 425 #define fmax(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmax) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
mathcalls.h | 340 __MATHCALL (fmax,, (_Mdouble_ __x, _Mdouble_ __y));
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/ |
math_h.pass.cpp | 76 Ambiguous fmax(Ambiguous, Ambiguous){ return Ambiguous(); } function [all...] |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/c.math/ |
cmath.pass.cpp | 78 Ambiguous fmax(Ambiguous, Ambiguous){ return Ambiguous(); } function [all...] |
/external/capstone/suite/MC/Mips/ |
test_3rf.s.cs | 34 0x7b,0x8d,0xb8,0x1b = fmax.w $w0, $w23, $w13 35 0x7b,0xa8,0x96,0x9b = fmax.d $w26, $w18, $w8
|
/external/eigen/test/ |
boostmultiprec.cpp | 114 Real fmax(const Real& a, const Real& b) { using std::max; return max(a,b); } function in namespace:boost::multiprecision
|
/external/llvm/include/llvm/Analysis/ |
TargetLibraryInfo.h | 253 case LibFunc::fmax: case LibFunc::fmaxf: case LibFunc::fmaxl:
|
/external/llvm/test/MC/AArch64/ |
fullfp16-neon-neg.s | 192 fmax v0.4h, v1.4h, v2.4h 194 fmax v0.8h, v1.8h, v2.8h
|
arm64-fp-encoding.s | 50 fmax h1, h2, h3 51 fmax s1, s2, s3 52 fmax d1, d2, d3 57 ; FP16: fmax h1, h2, h3 ; encoding: [0x41,0x48,0xe3,0x1e] 59 ; NO-FP16-NEXT: fmax h1, h2, h3 60 ; CHECK: fmax s1, s2, s3 ; encoding: [0x41,0x48,0x23,0x1e] 61 ; CHECK: fmax d1, d2, d3 ; encoding: [0x41,0x48,0x63,0x1e]
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
simple_orc_jit.cc | 227 REGISTER_LIBM_SYMBOL(fmax, double (*)(double, double));
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
math_fp16.rs | 149 TEST_HN_FUNC_HN_HN(fmax); 150 TEST_HN_FUNC_HN_H(fmax);
|
math.rs | 298 TEST_FN_FUNC_FN_FN(fmax); 299 TEST_FN_FUNC_FN_F(fmax);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/ |
math.h | 57 using std::tr1::fmax;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/ |
math.h | 57 using std::tr1::fmax;
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/ |
advsimd-fp16.s | 34 three_same fmax
|
advsimd-fp16.d | 121 [0-9a-f]+: 4e63f441 fmax v1.2d, v2.2d, v3.2d 122 [0-9a-f]+: 0e23f441 fmax v1.2s, v2.2s, v3.2s 123 [0-9a-f]+: 4e23f441 fmax v1.4s, v2.4s, v3.4s 124 [0-9a-f]+: 0e403400 fmax v0.4h, v0.4h, v0.4h 125 [0-9a-f]+: 0e433441 fmax v1.4h, v2.4h, v3.4h 126 [0-9a-f]+: 4e403400 fmax v0.8h, v0.8h, v0.8h 127 [0-9a-f]+: 4e433441 fmax v1.8h, v2.8h, v3.8h
|
/bionic/tests/headers/posix/ |
math_h.c | 199 FUNCTION(fmax, double (*f)(double, double));
|
/frameworks/base/libs/hwui/hwui/ |
Canvas.cpp | 40 const SkScalar strokeWidth = fmax(thickness, 1.0f);
|
/bionic/tests/ |
math_test.cpp | 805 TEST(MATH_TEST, fmax) { 806 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, 10.0)); 807 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, nan(""))); 808 ASSERT_DOUBLE_EQ(12.0, fmax(nan(""), 12.0)); [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/ |
opc-f.s | 391 fmax f4 = f5, f6 392 fmax.s0 f4 = f5, f6 393 fmax.s1 f4 = f5, f6 394 fmax.s2 f4 = f5, f6 395 fmax.s3 f4 = f5, f6
|
/frameworks/rs/driver/runtime/ |
rs_cl.c | 18 extern float __attribute__((overloadable)) fmax(float v, float v2); 19 extern float2 __attribute__((overloadable)) fmax(float2 v, float v2); 20 extern float3 __attribute__((overloadable)) fmax(float3 v, float v2); 21 extern float4 __attribute__((overloadable)) fmax(float4 v, float v2); 1935 HN_FUNC_HN_HN(fmax); variable 1936 HN_FUNC_HN_H(fmax); variable [all...] |
/external/clang/lib/Headers/ |
tgmath.h | 754 // fmax 762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} 768 #undef fmax macro 769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
|
/prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/ |
tgmath.h | 754 // fmax 762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} 768 #undef fmax macro 769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
|
/prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/ |
tgmath.h | 754 // fmax 762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);} 768 #undef fmax macro 769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
|