/external/libhevc/encoder/ |
D | cbr_buffer_control.h | 43 #define CLIP(Number, Max, Min) \ macro
|
/external/libavc/encoder/ |
D | irc_cbr_buffer_control.h | 44 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ macro
|
/external/v4l-utils/lib/libv4lconvert/processing/ |
D | gamma.c | 23 #define CLIP(color) (unsigned char)(((color) > 0xff) ? 0xff : (((color) < 0) ? 0 : (color))) macro
|
D | whitebalance.c | 31 #define CLIP(color, min, max) (((color) > (max)) ? (max) : (((color) < (min)) ? (min) : (color))) macro
|
/external/fec/ |
D | vtest615.c | 35 #define CLIP 255 macro
|
/external/v4l-utils/lib/libv4lconvert/ |
D | mr97310a.c | 26 #define CLIP(x) ((x) < 0 ? 0 : ((x) > 0xff) ? 0xff : (x)) macro
|
D | pac207.c | 30 #define CLIP(color) (unsigned char)(((color) > 0xFF) ? 0xff : (((color) < 0) ? 0 : (color))) macro
|
D | sq905c.c | 31 #define CLIP(x) ((x) < 0 ? 0 : ((x) > 0xff) ? 0xff : (x)) macro
|
D | nv12_16l16.c | 38 #define CLIP(color) \ macro
|
D | rgbyuv.c | 93 #define CLIP(color) (unsigned char)(((color) > 0xFF) ? 0xff : (((color) < 0) ? 0 : (color))) macro
|
/external/libmpeg2/common/ |
D | impeg2_macros.h | 29 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ macro
|
/external/libpng/contrib/gregbook/ |
D | rpng2-win.c | 136 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
|
D | rpng2-x.c | 143 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
|
/external/libopus/dnn/ |
D | osce.c | 53 #define CLIP(a, min, max) (((a) < (min) ? (min) : (a)) > (max) ? (max) : (a)) macro
|
/external/libaom/av1/common/ |
D | restoration.h | 31 #define CLIP(x, lo, hi) ((x) < (lo) ? (lo) : (x) > (hi) ? (hi) : (x)) macro
|
/external/libdav1d/src/ |
D | itx_1d.c | 37 #define CLIP(a) iclip(a, min, max) macro
|
/external/python/enum34/enum/ |
D | test.py | 266 CLIP = 2 variable in TestEnum.test_comparisons.Part
|
/external/python/cpython3/Lib/test/ |
D | test_enum.py | 1310 CLIP = 2 variable in TestSpecial.test_comparisons.Part
|