OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iround
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/angle/src/common/
utilities.h
44
template <typename outT> outT
iround
(GLfloat value) { return static_cast<outT>(value > 0.0f ? floor(value + 0.5f) : ceil(value - 0.5f)); }
function in namespace:gl
/external/chromium_org/third_party/skia/tests/
MathTest.cpp
337
int
iround
= SkMulDiv255Round(a, b);
local
340
REPORTER_ASSERT(reporter,
iround
== round);
343
REPORTER_ASSERT(reporter, itrunc <=
iround
);
344
REPORTER_ASSERT(reporter,
iround
<= a);
345
REPORTER_ASSERT(reporter,
iround
<= b);
/external/chromium_org/third_party/angle/src/libGLESv2/
queryconversions.cpp
43
return gl::
iround
<QueryT>(value);
libGLESv2.cpp
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h
285
static inline int
IROUND
(float f)
333
#pragma aux
iround
= \
341
#define F_TO_I(f)
IROUND
(f)
352
* This floor operation is done by "(
iround
(f + .5) +
iround
(f - .5)) >> 1",
385
int i =
IROUND
(f);
399
* This ceil operation is done by "(
iround
(f + .5) +
iround
(f - .5) + 1) >> 1",
431
int i =
IROUND
(f);
/external/mesa3d/src/mesa/main/
imports.h
283
static inline int
IROUND
(float f)
331
#pragma aux
iround
= \
339
#define F_TO_I(f)
IROUND
(f)
350
* This floor operation is done by "(
iround
(f + .5) +
iround
(f - .5)) >> 1",
383
int i =
IROUND
(f);
397
* This ceil operation is done by "(
iround
(f + .5) +
iround
(f - .5) + 1) >> 1",
429
int i =
IROUND
(f);
Completed in 181 milliseconds