Home
last modified time | relevance | path

Searched refs:iptr (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/renderscript/v8/rs_support/scriptc/
Drs_cl.rsh454 * @param iptr iptr[0] will be set to the floor of the input value.
457 _RS_RUNTIME float __attribute__((overloadable)) fract(float v, float *iptr);
461 * Return the mantissa and place the exponent into iptr[0]
464 * @param iptr Must have the same vector size as v.
466 extern float __attribute__((overloadable)) frexp(float v, int *iptr);
/frameworks/rs/scriptc/
Drs_cl.rsh454 * @param iptr iptr[0] will be set to the floor of the input value.
457 _RS_RUNTIME float __attribute__((overloadable)) fract(float v, float *iptr);
461 * Return the mantissa and place the exponent into iptr[0]
464 * @param iptr Must have the same vector size as v.
466 extern float __attribute__((overloadable)) frexp(float v, int *iptr);
/frameworks/rs/driver/
DrsdRuntimeMath.cpp37 static float SC_fract(float v, float *iptr) { in SC_fract() argument
39 iptr[0] = (float)i; in SC_fract()
/frameworks/support/renderscript/v8/rs_support/driver/
DrsdRuntimeMath.cpp40 static float SC_fract(float v, float *iptr) { in SC_fract() argument
42 iptr[0] = (float)i; in SC_fract()
/frameworks/compile/libbcc/lib/Renderscript/runtime/
Drs_cl.c424 extern float __attribute__((overloadable)) fract(float v, float *iptr) { in FN_FUNC_FN_FN()
426 iptr[0] = i; in FN_FUNC_FN_FN()