HomeSort by relevance Sort by last modified time
    Searched defs:IROUND (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/mesa/src/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);
  /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 218 milliseconds