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

/external/mesa3d/src/mesa/main/
H A Dimports.h286 static INLINE int iround(float f) function
292 #define IROUND(x) iround(x)
294 static INLINE int iround(float f) function
303 #define IROUND(x) iround(x)
305 long iround(float f);
306 #pragma aux iround = \
313 #define IROUND(x) iround(x)
337 * This floor operation is done by "(iround(f + .5) + iround(f - .5)) >> 1",
384 * This ceil operation is done by "(iround(
[all...]
/external/skia/tests/
H A DMathTest.cpp282 int iround = SkMulDiv255Round(a, b); local
285 REPORTER_ASSERT(reporter, iround == round);
288 REPORTER_ASSERT(reporter, itrunc <= iround);
289 REPORTER_ASSERT(reporter, iround <= a);
290 REPORTER_ASSERT(reporter, iround <= b);

Completed in 73 milliseconds