/third_party/ffmpeg/libavcodec/ |
D | v210_template.c | 25 #define CLIP(v, depth) av_clip(v, 1<<(depth-8), ((1<<depth)-(1<<(depth-8))-1)) macro 28 val = CLIP(*a++, depth) << (10-depth); \ 29 val |= (CLIP(*b++, depth) << (20-depth)) | \ 30 (CLIP(*c++, depth) << (30-depth)); \ 68 val = CLIP(*y++, DEPTH) << (10-DEPTH); in RENAME() 75 val |= (CLIP(*u++, DEPTH) << (20-DEPTH)) | (CLIP(*y++, DEPTH) << (30-DEPTH)); in RENAME() 79 val = CLIP(*v++, DEPTH) << (10-DEPTH) | (CLIP(*y++, DEPTH) << (20-DEPTH)); in RENAME()
|
D | flacdsp_lpc_template.c | 26 #undef CLIP 34 # define CLIP(x) av_clipl_int32(x) macro 38 # define CLIP(x) (x) macro 103 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC() 104 res[i+1] = smp[i+1] - CLIP(p1 >> shift); in FUNC() 125 res[i ] = smp[i ] - CLIP(p0 >> shift); in FUNC() 126 res[i+1] = smp[i+1] - CLIP(p1 >> shift); in FUNC()
|
D | bit_depth_template.c | 42 # undef CLIP 79 # define CLIP(a) av_clip_uintp2(a, BIT_DEPTH) macro 99 # define CLIP(a) av_clip_uint8(a) macro
|
D | h264pred_template.c | 473 src[16+i] = CLIP((b ) >> 5); in FUNCC() 474 src[17+i] = CLIP((b+ H) >> 5); in FUNCC() 475 src[18+i] = CLIP((b+2*H) >> 5); in FUNCC() 476 src[19+i] = CLIP((b+3*H) >> 5); in FUNCC() 793 src[0] = CLIP((b ) >> 5); in FUNCC() 794 src[1] = CLIP((b+ H) >> 5); in FUNCC() 795 src[2] = CLIP((b+2*H) >> 5); in FUNCC() 796 src[3] = CLIP((b+3*H) >> 5); in FUNCC() 797 src[4] = CLIP((b+4*H) >> 5); in FUNCC() 798 src[5] = CLIP((b+5*H) >> 5); in FUNCC() [all …]
|
D | qdrw.c | 36 CLIP = 0x0001, enumerator 342 case CLIP: in decode_frame()
|
D | h264qpel_template.c | 533 #define op_avg(a, b) a = (((a)+CLIP(((b) + 16)>>5)+1)>>1) 535 #define op_put(a, b) a = CLIP(((b) + 16)>>5) 536 #define op2_avg(a, b) a = (((a)+CLIP(((b) + 512)>>10)+1)>>1) 537 #define op2_put(a, b) a = CLIP(((b) + 512)>>10)
|
/third_party/ffmpeg/libswresample/ |
D | dither_template.c | 22 # 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 74 CLIP(d1); in RENAME() 84 #undef CLIP
|
/third_party/gstreamer/gstplugins_good/gst/law/ |
D | mulaw-conversion.c | 32 #define CLIP 32635 macro 69 if (((guint16) sample) > CLIP) in mulaw_encode() 70 sample = CLIP; /* clip the magnitude */ in mulaw_encode()
|
/third_party/pulseaudio/src/pulsecore/ |
D | g711.c | 161 #define CLIP 8159 macro 216 if ( pcm_val > CLIP ) pcm_val = CLIP; /* clip the magnitude */ in st_14linear2ulaw()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_curves.c | 217 #define CLIP(v) (nbits == 8 ? av_clip_uint8(v) : av_clip_uintp2_c(v, nbits)) macro 240 y[i] = CLIP(point->y * scale); in interpolate() 298 y[i] = CLIP(point->y * scale); in interpolate() 322 y[x] = CLIP(yy * scale); in interpolate() 332 y[i] = CLIP(point->y * scale); in interpolate()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
D | rpng2-win.c | 136 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro 994 angle = CLIP(angle, 0.0, 360.0); 995 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
|
D | rpng2-x.c | 143 #define CLIP(a,min,max) MAX(min,MIN((a),max)) macro 1246 angle = CLIP(angle, 0.0, 360.0); in rpng2_x_load_bg_image() 1247 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw)); in rpng2_x_load_bg_image() 2014 angle = CLIP(angle, 0.0, 360.0); in rpng2_x_reload_bg_image() 2015 grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw)); in rpng2_x_reload_bg_image()
|
/third_party/python/Modules/ |
D | audioop.c | 53 #define CLIP 32635 macro 167 if ( pcm_val > CLIP ) pcm_val = CLIP; /* clip the magnitude */ in st_14linear2ulaw()
|
/third_party/mesa3d/src/mesa/program/ |
D | program_lexer.l | 246 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
|
D | program_parse.y | 182 %token CLIP COLOR 1438 stateClipPlaneItem: CLIP '[' stateClipPlaneNum ']' PLANE
|
/third_party/ffmpeg/libavcodec/mips/ |
D | h264qpel_mmi.c | 107 #define op2_avg(a, b) a = (((a)+CLIP(((b) + 512)>>10)+1)>>1) 108 #define op2_put(a, b) a = CLIP(((b) + 512)>>10)
|
/third_party/python/Lib/test/ |
D | test_enum.py | 398 CLIP = 2 variable in TestEnum.test_comparisons.Part 403 Season.SPRING < Part.CLIP
|
/third_party/mesa3d/docs/ |
D | envvars.rst | 271 emit messages about the clip unit (for old gens, includes the CLIP
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_vertex_program2.txt | 407 CLIP PLANEi where i is an integer between 0 and n; specifying a value of i 409 CLIP PLANEi = CLIP PLANE0 + i.
|
/third_party/openGLES/extensions/NV/ |
D | NV_vertex_program2.txt | 407 CLIP PLANEi where i is an integer between 0 and n; specifying a value of i 409 CLIP PLANEi = CLIP PLANE0 + i.
|
/third_party/mesa3d/docs/relnotes/ |
D | 19.1.0.rst | 2549 - iris: RASTER + SF + some CLIP, fix DIRTY vs. NEW
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | ulyss10.txt | 2658 IN THE DARKMANS CLIP AND KISS.
|