Home
last modified time | relevance | path

Searched refs:argf (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/libc/AOR_v20.02/math/test/
Dulp.c239 static inline v_float argf(float x) { return (v_float){x,x,x,fv[secondcall]}; } in argf() function
242 static float v_sinf(float x) { return __v_sinf(argf(x))[0]; } in v_sinf()
243 static float v_cosf(float x) { return __v_cosf(argf(x))[0]; } in v_cosf()
244 static float v_expf_1u(float x) { return __v_expf_1u(argf(x))[0]; } in v_expf_1u()
245 static float v_expf(float x) { return __v_expf(argf(x))[0]; } in v_expf()
246 static float v_exp2f_1u(float x) { return __v_exp2f_1u(argf(x))[0]; } in v_exp2f_1u()
247 static float v_exp2f(float x) { return __v_exp2f(argf(x))[0]; } in v_exp2f()
248 static float v_logf(float x) { return __v_logf(argf(x))[0]; } in v_logf()
249 static float v_powf(float x, float y) { return __v_powf(argf(x),argf(y))[0]; } in v_powf()
256 static float vn_sinf(float x) { return __vn_sinf(argf(x))[0]; } in vn_sinf()
[all …]
/external/arm-optimized-routines/math/test/
Dulp.c238 static inline v_float argf(float x) { return (v_float){x,x,x,fv[secondcall]}; } in argf() function
241 static float v_sinf(float x) { return __v_sinf(argf(x))[0]; } in v_sinf()
242 static float v_cosf(float x) { return __v_cosf(argf(x))[0]; } in v_cosf()
243 static float v_expf_1u(float x) { return __v_expf_1u(argf(x))[0]; } in v_expf_1u()
244 static float v_expf(float x) { return __v_expf(argf(x))[0]; } in v_expf()
245 static float v_exp2f_1u(float x) { return __v_exp2f_1u(argf(x))[0]; } in v_exp2f_1u()
246 static float v_exp2f(float x) { return __v_exp2f(argf(x))[0]; } in v_exp2f()
247 static float v_logf(float x) { return __v_logf(argf(x))[0]; } in v_logf()
248 static float v_powf(float x, float y) { return __v_powf(argf(x),argf(y))[0]; } in v_powf()
255 static float vn_sinf(float x) { return __vn_sinf(argf(x))[0]; } in vn_sinf()
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dunary_op_test.cc152 auto argf = ConstantR0<float>(&builder, -3.0f); in XLA_TEST_F() local
153 auto absf = Abs(argf); in XLA_TEST_F()
167 auto argf = ConstantR0<float>(&builder, -4.0f); in XLA_TEST_F() local
168 auto sgnf = Sign(argf); // -1 in XLA_TEST_F()
/external/lua/src/
Dldblib.c284 static int checkupval (lua_State *L, int argf, int argnup) { in checkupval() argument
286 luaL_checktype(L, argf, LUA_TFUNCTION); /* closure */ in checkupval()
287 luaL_argcheck(L, (lua_getupvalue(L, argf, nup) != NULL), argnup, in checkupval()