OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clamp_max
(Results
1 - 2
of
2
) sorted by null
/external/skia/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
...]
/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 704 milliseconds