/external/arm-optimized-routines/math/test/testcases/directed/ |
D | logf.tst | 1 ; logf.tst - Directed test cases for logf 6 func=logf op1=7fc00001 result=7fc00001 errno=0 7 func=logf op1=ffc00001 result=7fc00001 errno=0 8 func=logf op1=7f800001 result=7fc00001 errno=0 status=i 9 func=logf op1=ff800001 result=7fc00001 errno=0 status=i 10 func=logf op1=ff810000 result=7fc00001 errno=0 status=i 11 func=logf op1=7f800000 result=7f800000 errno=0 12 func=logf op1=ff800000 result=7fc00001 errno=EDOM status=i 13 func=logf op1=3f800000 result=00000000 errno=0 14 func=logf op1=00000000 result=ff800000 errno=ERANGE status=z [all …]
|
/external/autotest/client/bin/ |
D | base_sysinfo.py | 64 def __init__(self, logf, log_in_keyval): argument 65 self.logf = logf 75 path = os.path.join(logdir, self.logf) 92 def __init__(self, path, logf=None, log_in_keyval=False): argument 93 if not logf: 94 logf = os.path.basename(path) 95 super(logfile, self).__init__(logf, log_in_keyval) 101 r %= (self.path, self.logf, self.log_in_keyval) 107 return (self.path, self.logf) == (other.path, other.logf) 121 return hash((self.path, self.logf)) [all …]
|
/external/musl/src/math/i386/ |
D | logf.s | 1 .global logf symbol 2 .type logf,@function 3 logf: label
|
/external/rust/crates/libm/src/math/ |
D | acoshf.rs | 1 use super::{log1pf, logf, sqrtf}; 21 return logf(2.0 * x - 1.0 / (x + sqrtf(x * x - 1.0))); in acoshf() 24 return logf(x) + LN2; in acoshf()
|
D | asinhf.rs | 1 use super::{log1pf, logf, sqrtf}; 20 x = logf(x) + LN2; in asinhf() 23 x = logf(2.0 * x + 1.0 / (sqrtf(x * x + 1.0) + x)); in asinhf()
|
D | lgammaf_r.rs | 16 use super::{floorf, k_cosf, k_sinf, logf}; 133 return (-logf(x), signgam); in lgammaf_r() 147 nadj = logf(PI / (t * x)); in lgammaf_r() 160 r = -logf(x); in lgammaf_r() 237 r += logf(z); in lgammaf_r() 241 t = logf(x); in lgammaf_r() 248 r = x * (logf(x) - 1.0); in lgammaf_r()
|
D | j0f.rs | 16 use super::{cosf, fabsf, logf, sinf, sqrtf}; 137 return u / v + TPI * (j0f(x) * logf(x)); in y0f() 139 return U00 + TPI * logf(x); in y0f()
|
D | mod.rs | 146 mod logf; module 260 pub use self::logf::logf;
|
/external/musl/src/math/ |
D | lgammaf_r.c | 123 return -logf(x); in __lgammaf_r() 134 nadj = logf(pi/(t*x)); in __lgammaf_r() 143 r = -logf(x); in __lgammaf_r() 202 r += logf(z); in __lgammaf_r() 206 t = logf(x); in __lgammaf_r() 212 r = x*(logf(x)-1.0f); in __lgammaf_r()
|
D | acoshf.c | 23 return logf(2*x - 1/(x+sqrtf(x*x-1))); in acoshf() 25 return logf(x) + 0.693147180559945309417232121458176568f; in acoshf()
|
D | asinhf.c | 16 x = logf(x) + 0.693147180559945309417232121458176568f; in asinhf() 19 x = logf(2*x + 1/(sqrtf(x*x+1)+x)); in asinhf()
|
/external/arm-optimized-routines/math/test/ |
D | runulp.sh | 96 t logf 0 0xffff0000 10000 97 t logf 0x1p-4 0x1p4 50000 98 t logf 0 inf 50000 291 logf __s_logf $runs 292 logf __v_logf $runv 293 logf __vn_logf $runvn 294 logf _ZGVnN4v_logf $runvn
|
/external/eigen/Eigen/src/Core/arch/GPU/ |
D | MathFunctions.h | 24 return make_float4(logf(a.x), logf(a.y), logf(a.z), logf(a.w));
|
/external/arm-optimized-routines/math/ |
D | logf.c | 27 logf (float x) in logf() function 77 strong_alias (logf, __logf_finite) 78 hidden_alias (logf, __ieee754_logf)
|
D | v_logf.c | 36 return v_call_f32 (logf, x, y, cmp); in specialcase() 41 V_NAME(logf) (v_f32_t x) in V_NAME() argument
|
/external/ltp/testcases/kernel/syscalls/syslog/ |
D | syslog08 | 92 for logf in messages maillog 94 if [ ! -e /var/log/$logf ]; then 95 tst_resm TBROK "/var/log/$logf no such log file"
|
/external/autotest/server/site_tests/servo_LogGrab/ |
D | servo_LogGrab.py | 67 for logf in os.listdir(outdir): 68 if not logf.startswith(self.servo_host.JOINT_LOG_PREFIX): 71 logpath = os.path.join(outdir, logf) 82 'timestamps.' % logf)
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_util.h | 102 return etna_float_to_fixp55(logf((float)width) * RCPLOG2); in etna_log2_fixp55() 109 return etna_float_to_fixp88(logf((float)width) * RCPLOG2); in etna_log2_fixp88()
|
/external/llvm/tools/llvm-diff/ |
D | DiffConsumer.h | 47 virtual void logf(const LogBuilder &Log) = 0; 86 void logf(const LogBuilder &Log) override;
|
D | DifferenceEngine.cpp | 161 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify() 239 Engine.logf("arguments %l and %r differ") in diffCallSites() 332 Engine.logf("right switch has extra case %r") << CaseValue; in diff() 340 Engine.logf("left switch has extra case %l") << I->first; in diff() 356 if (Complain) Engine.logf("operands %l and %r differ") << LO << RO; in diff() 665 logf("function %l exists only in left module") << LFn; in diff() 671 logf("function %r exists only in right module") << RFn; in diff()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 39 TLI_DEFINE_VECFUNC("logf", "vlogf", 4) 93 TLI_DEFINE_VECFUNC("logf", "__logf4_massv", 4) 228 TLI_DEFINE_VECFUNC("logf", "__svml_logf4", 4) 229 TLI_DEFINE_VECFUNC("logf", "__svml_logf8", 8) 230 TLI_DEFINE_VECFUNC("logf", "__svml_logf16", 16)
|
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.c | 188 part_info->log_q = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in av1_intra_mode_cnn_partition() 571 features[f_idx++] = logf(1.0f + sms_tree->sms_none_feat[sub_idx]); in simple_motion_search_prune_part_features() 578 features[f_idx++] = logf(1.0f + sub_tree->sms_none_feat[0]); in simple_motion_search_prune_part_features() 579 features[f_idx++] = logf(1.0f + sub_tree->sms_none_feat[1]); in simple_motion_search_prune_part_features() 585 features[f_idx++] = logf(1.0f + sms_tree->sms_rect_feat[sub_idx]); in simple_motion_search_prune_part_features() 594 features[f_idx++] = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in simple_motion_search_prune_part_features() 711 features[f_idx++] = logf(1.0f + (float)none_rdc->rate); in av1_simple_motion_search_early_term_none() 712 features[f_idx++] = logf(1.0f + (float)none_rdc->dist); in av1_simple_motion_search_early_term_none() 713 features[f_idx++] = logf(1.0f + (float)none_rdc->rdcost); in av1_simple_motion_search_early_term_none() 778 const float log_q_sq = logf(1.0f + (float)(dc_q * dc_q) / 256.0f); in av1_get_max_min_partition_features() [all …]
|
/external/e2fsprogs/e2fsck/ |
D | util.c | 82 if (ctx->logf) in fatal_error() 83 fprintf(ctx->logf, "Exit status: %d\n", exit_value); in fatal_error() 94 if (ctx->logf) { in log_out() 96 vfprintf(ctx->logf, fmt, pvar); in log_out() 108 if (ctx->logf) { in log_err() 110 vfprintf(ctx->logf, fmt, pvar); in log_err()
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_math.h | 103 static inline float logf( float f ) in logf() function 110 #ifdef logf 111 #undef logf 112 #define logf(x) ((float)log((double)(x)))
|
/external/llvm/test/CodeGen/XCore/ |
D | float-intrinsics.ll | 70 define float @logf(float %F) { 71 ; CHECK-LABEL: logf: 72 ; CHECK: bl logf
|