Searched defs:copysign (Results 1 - 2 of 2) sorted by relevance

/frameworks/rs/driver/runtime/
H A Drs_f16_math.c1 /* Implementations for copysign, ilogb, and nextafter for float16 based on
21 extern half __attribute__((overloadable)) copysign(half x, half y) { function
H A Drs_cl.c415 float __attribute__((overloadable)) copysign(float v1, float v2) { function
418 FN_FUNC_FN_FN(copysign)
633 * the selection of a correct sign incorrect. We correct this. Use copysign
636 float sign = (p & 0x1) ? copysign(1.f, v) : 1.f;
638 return copysign(f, sign);
681 return copysign(posinf(), v);
687 return copysign(0.f, v);
1893 extern half __attribute__((overloadable)) copysign(half x, half y);
1894 SCALARIZE_HN_FUNC_HN_HN(copysign); variable

Completed in 189 milliseconds