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

  /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/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/pixman/pixman/
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...]

Completed in 1099 milliseconds