/frameworks/av/libvideoeditor/vss/common/inc/ |
M4VIFI_Defines.h | 33 #define Y16(r, g, b) CLIP( ( ( (80593 * r)+(77855 * g)+(30728 * b)) >> 15)) 34 #define U16(r, g, b) CLIP(128+ ( ( -(45483 * r)-(43936 * g)+(134771 * b)) >> 15 )) 35 #define V16(r, g, b) CLIP(128+ ( ( (134771 * r)-(55532 * g)-(21917 * b)) >> 15 )) 52 Rx = CLIP(((Yx37 + (Vx * 51) + 16) >> 5) - 223); \ 53 Gx = CLIP(((Yx37 - ((Ux+(Vx<<1)) * 13) +16) >> 5) + 135); \ 54 Bx = CLIP(((Yx37 + (Ux * 65) + 16) >> 5) - 277) 57 Rx = CLIP(((Yx2568 + (Vx * 0x3343) + (M4VIFI_Int32)0xffe40800) >> 13)); \ 58 Gx = CLIP(((Yx2568 - (Ux * 0x0c92) - (Vx * 0x1a1e) + (M4VIFI_Int32)0x00110180) >> 13)); \ 59 Bx = CLIP(((Yx2568 + (Ux * 0x40cf) + (M4VIFI_Int32)0xffdd4200) >> 13)); 103 #define Y24(r,g,b) CLIP(( ( (19595 * r) + (38470 * g) + (9437 * b) ) >>16) [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/ |
program_parse.tab.h | 65 CLIP = 283, 173 #define CLIP 283
|
program_parse.tab.c | 250 CLIP = 283, 358 #define CLIP 283 [all...] |
/external/pixman/pixman/ |
pixman-bits-image.c | 421 satot = CLIP (satot, 0, 0xff); 422 srtot = CLIP (srtot, 0, 0xff); 423 sgtot = CLIP (sgtot, 0, 0xff); 424 sbtot = CLIP (sbtot, 0, 0xff); 519 satot = CLIP (satot, 0, 0xff); 520 srtot = CLIP (srtot, 0, 0xff); 521 sgtot = CLIP (sgtot, 0, 0xff); 522 sbtot = CLIP (sbtot, 0, 0xff); 856 satot = CLIP (satot, 0, 0xff); 857 srtot = CLIP (srtot, 0, 0xff) [all...] |
pixman-private.h | 98 pixman_bool_t have_clip_region; /* FALSE if there is no clip */ 99 pixman_bool_t client_clip; /* Whether the source clip was 101 pixman_bool_t clip_sources; /* Whether the clip applies when 881 #define CLIP(v, low, high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v))) [all...] |
pixman-inlines.h | 73 *c = CLIP (*c, 0, size - 1); [all...] |
/external/libpng/contrib/gregbook/ |
rpng2-win.c | 108 #define CLIP(a,min,max) MAX(min,MIN((a),max)) [all...] |
rpng2-x.c | 125 #define CLIP(a,min,max) MAX(min,MIN((a),max)) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_lexer.l | 264 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
|
program_parse.y | 171 %token CLIP COLOR [all...] |
/external/mesa3d/src/mesa/program/ |
program_lexer.l | 264 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
|
program_parse.y | 171 %token CLIP COLOR [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
lex.yy.c | [all...] |