Searched refs:CLIP (Results 1 – 8 of 8) sorted by relevance
/external/libmpeg2/common/ |
D | impeg2_macros.h | 29 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ macro
|
/external/libavc/encoder/ |
D | irc_cbr_buffer_control.h | 44 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ macro
|
D | irc_cbr_buffer_control.c | 238 CLIP(i4_tgt_bits, i4_max_tgt_bits, i4_min_tgt_bits); in irc_cbr_buffer_constraint_check()
|
/external/libmpeg2/decoder/ |
D | impeg2d_mc.c | 1316 CLIP(i2_pix_x, (u2_frm_wd-16), 0); in impeg2d_set_mc_params() 1317 CLIP(i2_pix_y, (u2_frm_ht-16), 0); in impeg2d_set_mc_params() 1347 CLIP(i2_pix_x, ((u2_frm_wd / 2)-8), 0); in impeg2d_set_mc_params() 1348 CLIP(i2_pix_y, ((u2_frm_ht / 2)-8), 0); in impeg2d_set_mc_params()
|
/external/libpng/contrib/gregbook/ |
D | rpng2-win.c | 137 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro 988 angle = CLIP(angle, 0.0, 360.0); in rpng2_win_load_bg_image() 989 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw)); in rpng2_win_load_bg_image()
|
D | rpng2-x.c | 141 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro 1237 angle = CLIP(angle, 0.0, 360.0); in rpng2_x_load_bg_image() 1238 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw)); in rpng2_x_load_bg_image() 2005 angle = CLIP(angle, 0.0, 360.0); in rpng2_x_reload_bg_image() 2006 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw)); in rpng2_x_reload_bg_image()
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 264 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
|
D | program_parse.y | 171 %token CLIP COLOR 1561 stateClipPlaneItem: CLIP '[' stateClipPlaneNum ']' PLANE
|