OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rsRand
(Results
1 - 2
of
2
) sorted by null
/frameworks/rs/driver/runtime/
rs_core.c
160
extern float __attribute__((overloadable))
rsRand
(float min, float max);/* {
168
extern float __attribute__((overloadable))
rsRand
(float max) {
169
return
rsRand
(0.f, max);
176
extern int __attribute__((overloadable))
rsRand
(int max) {
177
return (int)
rsRand
((float)max);
180
extern int __attribute__((overloadable))
rsRand
(int min, int max) {
181
return (int)
rsRand
((float)min, (float)max);
rs_cl.c
713
float __attribute__((overloadable))
rsRand
(float min, float max) {
[
all
...]
Completed in 580 milliseconds