HomeSort by relevance Sort by last modified time
    Searched refs:clamp_max (Results 1 - 3 of 3) sorted by null

  /external/skia/legacy/src/core/
SkXfermode.cpp 59 static inline int clamp_max(int value, int max) { function
292 r = clamp_max(r, a);
293 g = clamp_max(g, a);
294 b = clamp_max(b, a);
    [all...]
  /external/skia/src/core/
SkXfermode.cpp 64 static inline int clamp_max(int value, int max) { function
297 r = clamp_max(r, a);
298 g = clamp_max(g, a);
299 b = clamp_max(b, a);
    [all...]
  /system/core/libpixelflinger/
scanline.cpp 602 const GGLfixed clamp_max = (size << 16) - FIXED_HALF; local
604 if (coord > clamp_max) coord = clamp_max;
608 const GGLfixed clamp_max = (size << 16); local
610 if (coord > clamp_max) coord = clamp_max;
    [all...]

Completed in 438 milliseconds