| /src/lib/libm/src/ |
| s_scalbn.c | 19 * scalbn (double x, int n) 20 * scalbn(x,n) returns x* 2**n computed by exponent 42 __weak_alias(scalbn, _scalbn) 55 scalbn(double x, int n) function
|
| namespace.h | 87 #define scalbn _scalbn macro
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_cuda_cmath.h | 350 scalbn(__T __x, int __exp) { function 351 return std::scalbn((double)__x, __exp); 423 using ::scalbn;
|
| __clang_hip_cmath.h | 192 __DEF_FUN2_FI(float, scalbn) 565 scalbn(__T __x, int __exp) { function 566 return ::scalbn((double)__x, __exp); 651 using ::scalbn;
|
| tgmath.h | 1150 // scalbn 1158 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);} 1164 #undef scalbn macro 1165 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
|
| __clang_cuda_math.h | 277 __DEVICE__ double scalbn(double __a, int __b) { return __nv_scalbn(__a, __b); } function 284 return scalbn(__a, (int)__b);
|
| __clang_hip_math.h | 1012 double scalbn(double __x, int __n) { return __ocml_scalbn_f64(__x, __n); } function
|
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| tgmath.h | 114 #define scalbn(x,y) __TGMATH_REAL_2(x, y, scalbn) macro
|
| /src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| tgmath.h | 114 #define scalbn(x,y) __TGMATH_REAL_2(x, y, scalbn) macro
|
| /src/include/ |
| tgmath.h | 183 #define scalbn(a,b) __TG_FN1x(scalbn, (a), (b)) macro
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| APFloat.h | 454 friend IEEEFloat scalbn(IEEEFloat X, int Exp, roundingMode); 595 IEEEFloat scalbn(IEEEFloat X, int Exp, IEEEFloat::roundingMode); 690 friend DoubleAPFloat scalbn(const DoubleAPFloat &X, int Exp, roundingMode); 1253 friend APFloat scalbn(APFloat X, int Exp, roundingMode RM); 1264 inline APFloat scalbn(APFloat X, int Exp, APFloat::roundingMode RM) { function in namespace:llvm 1266 return APFloat(scalbn(X.U.IEEE, Exp, RM), X.getSemantics()); 1268 return APFloat(scalbn(X.U.Double, Exp, RM), X.getSemantics());
|
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| c99_functions.c | 399 double scalbn (double x, int y); 402 scalbn (double x, int y) function 419 return (float) scalbn (x, y);
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| c99_functions.c | 399 double scalbn (double x, int y); 402 scalbn (double x, int y) function 419 return (float) scalbn (x, y);
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-intrinsic.cc | 7694 res = scalbn (1., e); 7706 tree cond, nan, tmp, frexp, scalbn; local 7716 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind); 7737 tmp = build_call_expr_loc (input_location, scalbn, 2, 7768 x = scalbn (x, precision - e); 7780 tree arg, type, e, x, cond, nan, stmt, tmp, frexp, scalbn, fabs; local 7788 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind); 7808 tmp = build_call_expr_loc (input_location, scalbn, 2, x, tmp); 7829 /* SCALE (s, i) is translated into scalbn (s, i). */ 7833 tree args[2], type, scalbn; local 7851 tree args[2], type, tmp, frexp, scalbn, cond, nan, res; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-intrinsic.cc | 7719 res = scalbn (1., e); 7731 tree cond, nan, tmp, frexp, scalbn; local 7741 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind); 7762 tmp = build_call_expr_loc (input_location, scalbn, 2, 7793 x = scalbn (x, precision - e); 7805 tree arg, type, e, x, cond, nan, stmt, tmp, frexp, scalbn, fabs; local 7813 scalbn = gfc_builtin_decl_for_float_kind (BUILT_IN_SCALBN, expr->ts.kind); 7833 tmp = build_call_expr_loc (input_location, scalbn, 2, x, tmp); 7854 /* SCALE (s, i) is translated into scalbn (s, i). */ 7858 tree args[2], type, scalbn; local 7876 tree args[2], type, tmp, frexp, scalbn, cond, nan, res; local [all...] |