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

/frameworks/rs/driver/runtime/
H A Drs_core.c160 extern float __attribute__((overloadable)) rsRand(float min, float max);/* {
168 extern float __attribute__((overloadable)) rsRand(float max) { function
169 return rsRand(0.f, max);
176 extern int __attribute__((overloadable)) rsRand(int max) { function
177 return (int)rsRand((float)max);
180 extern int __attribute__((overloadable)) rsRand(int min, int max) { function
181 return (int)rsRand((float)min, (float)max);
H A Drs_cl.c713 float __attribute__((overloadable)) rsRand(float min, float max) { function

Completed in 4924 milliseconds