Home
last modified time | relevance | path

Searched defs:CLIP (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libswresample/
Ddither_template.c22 # define CLIP(v) while(0) macro
27 # define CLIP(v) while(0) macro
32 # define CLIP(v) v = FFMAX(FFMIN(v, INT32_MAX), INT32_MIN) macro
37 # define CLIP(v) v = FFMAX(FFMIN(v, INT16_MAX), INT16_MIN) macro
/third_party/ffmpeg/libavcodec/
Dflacdsp_lpc_template.c34 # define CLIP(x) av_clipl_int32(x) macro
38 # define CLIP(x) (x) macro
Dbit_depth_template.c79 # define CLIP(a) av_clip_uintp2(a, BIT_DEPTH) macro
99 # define CLIP(a) av_clip_uint8(a) macro
Dv210enc_init.h36 #define CLIP(v, depth) av_clip(v, 1<<(depth-8), ((1<<depth)-(1<<(depth-8))-1)) macro
Dqdrw.c37 CLIP = 0x0001, enumerator
/third_party/ffmpeg/libavfilter/
Dblend_modes.c38 #define CLIP(x) (av_clip_uint8(x)) macro
43 #define CLIP(x) (x) macro
48 #define CLIP(x) ((int)av_clip_uintp2(x, DEPTH)) macro
Dvf_curves.c217 #define CLIP(v) (nbits == 8 ? av_clip_uint8(v) : av_clip_uintp2_c(v, nbits)) macro
/third_party/pulseaudio/src/pulsecore/
Dg711.c161 #define CLIP 8159 macro
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng2-win.c136 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
Drpng2-x.c143 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
/third_party/skia/m133/third_party/externals/libpng/contrib/gregbook/
Drpng2-win.c136 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
Drpng2-x.c143 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro
/third_party/python/Modules/
Daudioop.c62 #define CLIP 32635 macro
/third_party/backends/backend/
Dmustek.c2438 # define CLIP(x) ((x) < 0 ? 0 : ((x) > 255 ? 255 : (x))) in send_gamma_table_se() macro
/third_party/python/Lib/test/
Dtest_enum.py924 CLIP = 2 variable in TestSpecial.test_comparisons.Part