Home
last modified time | relevance | path

Searched defs:CLIP (Results 1 – 12 of 12) 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
Dv210_template.c25 #define CLIP(v, depth) av_clip(v, 1<<(depth-8), ((1<<depth)-(1<<(depth-8))-1)) macro
Dqdrw.c36 CLIP = 0x0001, enumerator
/third_party/gstreamer/gstplugins_good/gst/law/
Dmulaw-conversion.c32 #define CLIP 32635 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/ffmpeg/libavfilter/
Dvf_curves.c217 #define CLIP(v) (nbits == 8 ? av_clip_uint8(v) : av_clip_uintp2_c(v, nbits)) macro
/third_party/python/Modules/
Daudioop.c53 #define CLIP 32635 macro
/third_party/python/Lib/test/
Dtest_enum.py398 CLIP = 2 variable in TestEnum.test_comparisons.Part