Searched refs:y_over_x (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_builtin_builder.c | 176 nir_atan(nir_builder *b, nir_ssa_def *y_over_x) in nir_atan() argument 178 const uint32_t bit_size = y_over_x->bit_size; in nir_atan() 180 nir_ssa_def *abs_y_over_x = nir_fabs(b, y_over_x); in nir_atan() 186 * / y_over_x if |y_over_x| <= 1.0; in nir_atan() 188 * \ 1.0 / y_over_x otherwise in nir_atan() 226 nir_ssa_def *result = nir_fmul(b, tmp, nir_fsign(b, y_over_x)); in nir_atan() 231 * !isnan(y_over_x) ? ... : y_over_x; in nir_atan() 238 nir_ssa_def *is_not_nan = nir_feq(b, y_over_x, y_over_ in nir_atan() [all...] |
H A D | nir_builtin_builder.h | 47 nir_ssa_def* nir_atan(nir_builder *b, nir_ssa_def *y_over_x);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_trigonometric.hpp | 107 /// Arc tangent. Returns an angle whose tangent is y_over_x. 115 GLM_FUNC_DECL vecType<T, P> atan(vecType<T, P> const & y_over_x);
|
/third_party/skia/include/sksl/ |
H A D | DSLCore.h | 249 DSLExpression Atan(DSLExpression y_over_x, PositionInfo pos = PositionInfo::Capture());
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLCore.cpp | 510 DSLExpression Atan(DSLExpression y_over_x, PositionInfo pos) { in Atan() argument 511 return DSLExpression(DSLCore::Call("atan", std::move(y_over_x)), pos); in Atan()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | builtin_functions.cpp | 1030 void do_atan(ir_factory &body, const glsl_type *type, ir_variable *res, operand y_over_x);
|
Completed in 17 milliseconds