Home | History | Annotate | Download | only in runtime

Lines Matching refs:cosptr

748 extern float __attribute__((overloadable)) sincos(float v, float *cosptr) {
749 *cosptr = cos(v);
752 extern float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr) {
753 *cosptr = cos(v);
756 extern float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr) {
757 *cosptr = cos(v);
760 extern float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr) {
761 *cosptr = cos(v);
2166 extern half __attribute__((overloadable)) sincos(half v, half *cosptr) {
2167 *cosptr = cos(v);
2171 extern half2 __attribute__((overloadable)) sincos(half2 v, half2 *cosptr) {
2172 *cosptr = cos(v);
2175 extern half3 __attribute__((overloadable)) sincos(half3 v, half3 *cosptr) {
2176 *cosptr = cos(v);
2179 extern half4 __attribute__((overloadable)) sincos(half4 v, half4 *cosptr) {
2180 *cosptr = cos(v);
2304 extern half __attribute__((overloadable)) native_sincos(half v, half *cosptr) {
2305 return sincos(v, cosptr);
2307 extern half2 __attribute__((overloadable)) native_sincos(half2 v, half2 *cosptr) {
2308 return sincos(v, cosptr);
2310 extern half3 __attribute__((overloadable)) native_sincos(half3 v, half3 *cosptr) {
2311 return sincos(v, cosptr);
2313 extern half4 __attribute__((overloadable)) native_sincos(half4 v, half4 *cosptr) {
2314 return sincos(v, cosptr);