OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FLOORF
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h
127
#define
floorf
(f) ((float) floor(f))
macro
149
static inline float truncf(float x) { return x < 0.0f ? ceilf(x) :
floorf
(x); }
255
***
FLOORF
: floor of float
265
#define
FLOORF
(x)
floorf
(x)
273
#define
FLOORF
(x) ((GLfloat) floor(x))
/external/mesa3d/src/mesa/main/
imports.h
127
#define
floorf
(f) ((float) floor(f))
macro
148
static inline float truncf(float x) { return x < 0.0f ? ceilf(x) :
floorf
(x); }
253
***
FLOORF
: floor of float
263
#define
FLOORF
(x)
floorf
(x)
271
#define
FLOORF
(x) ((GLfloat) floor(x))
Completed in 148 milliseconds