Home
last modified time | relevance | path

Searched refs:cosptr (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/driver/runtime/
Drs_cl.c604 extern float __attribute__((overloadable)) sincos(float v, float *cosptr) { in FN_FUNC_FN()
605 *cosptr = cos(v); in FN_FUNC_FN()
608 extern float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr) { in sincos() argument
609 *cosptr = cos(v); in sincos()
612 extern float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr) { in sincos() argument
613 *cosptr = cos(v); in sincos()
616 extern float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr) { in sincos() argument
617 *cosptr = cos(v); in sincos()
/frameworks/rs/api/
Drs_core_math.spec797 @param *cosptr cosptr[0] will be set to the cosine value.
1822 @param *cosptr cosptr[0] will be set to the cosine value.
/frameworks/rs/scriptc/
Drs_core_math.rsh8642 * @param *cosptr cosptr[0] will be set to the cosine value.
8646 extern float __attribute__((overloadable))native_sincos(float v, float* cosptr);
8655 * @param *cosptr cosptr[0] will be set to the cosine value.
8659 extern float2 __attribute__((overloadable))native_sincos(float2 v, float2* cosptr);
8668 * @param *cosptr cosptr[0] will be set to the cosine value.
8672 extern float3 __attribute__((overloadable))native_sincos(float3 v, float3* cosptr);
8681 * @param *cosptr cosptr[0] will be set to the cosine value.
8685 extern float4 __attribute__((overloadable))native_sincos(float4 v, float4* cosptr);
9434 * @param *cosptr cosptr[0] will be set to the cosine value.
9438 extern float __attribute__((overloadable))sincos(float v, float* cosptr);
[all …]