/external/fec/ |
D | vtest615.c | 35 #define CLIP 255 macro 122 symbols[6*i+0] = addnoise(parity(sr & V615POLYA),gain,Gain,OFFSET,CLIP); 123 symbols[6*i+1] = addnoise(parity(sr & V615POLYB),gain,Gain,OFFSET,CLIP); 124 symbols[6*i+2] = addnoise(parity(sr & V615POLYC),gain,Gain,OFFSET,CLIP); 125 symbols[6*i+3] = addnoise(parity(sr & V615POLYD),gain,Gain,OFFSET,CLIP); 126 symbols[6*i+4] = addnoise(parity(sr & V615POLYE),gain,Gain,OFFSET,CLIP); 127 symbols[6*i+5] = addnoise(parity(sr & V615POLYF),gain,Gain,OFFSET,CLIP);
|
/external/ImageMagick/coders/ |
D | clip.h | 27 MagickCoderExports(CLIP)
|
D | coders-list.h | 36 AddMagickCoder(CLIP)
|
/external/adhd/cras/src/fuzz/ |
D | cras_hfp_slc.dict | 15 "AT+CLIP"
|
/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/libhevc/encoder/ |
D | cbr_buffer_control.h | 43 #define CLIP(Number, Max, Min) \ macro
|
D | rate_control_api.c | 1369 CLIP( in get_frame_level_qp() 3250 CLIP(f_weigh_factor, 1.0f, 1.0f / MULT_FACTOR_SATD); in rc_get_qp_scene_change_bits() 3252 CLIP(min_scd_qscale, max_scd_q_scale, 1); in rc_get_qp_scene_change_bits() 3332 CLIP(min_error_q_scale, (WORD32)(max_scd_q_scale + 0.5), (WORD32)(min_scd_qscale + .5)); in rc_get_qp_scene_change_bits() 3935 CLIP(i4_num_temporal_layers, 3, 0); in rc_get_max_hme_sad_per_pixel() 4104 CLIP(f_hme_sad_per_pixel, ps_rate_control_api->f_max_hme_sad_per_pixel, 0.01f); in rc_ba_get_qp_offset_offline_data()
|
D | cbr_buffer_control.c | 352 CLIP(i4_tgt_bits, i4_max_tgt_bits, i4_min_tgt_bits); in cbr_buffer_constraint_check()
|
D | bit_allocation.c | 2302 CLIP(i4_ratio, 16, 2); in ba_get_qp_offset_offline_data() 2332 CLIP(i4_bin, 7, 1); in ba_get_qp_offset_offline_data()
|
/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 | 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()
|
/external/libaom/libaom/av1/common/ |
D | restoration.h | 27 #define CLIP(x, lo, hi) ((x) < (lo) ? (lo) : (x) > (hi) ? (hi) : (x)) macro
|
/external/libaom/libaom/av1/encoder/ |
D | encodemb.c | 153 const int multiplier = CLIP(qindex / DROPOUT_MULTIPLIER_Q_BASE, in av1_dropout_qcoeff() 157 CLIP(base_size, DROPOUT_BEFORE_BASE_MIN, DROPOUT_BEFORE_BASE_MAX); in av1_dropout_qcoeff() 160 CLIP(base_size, DROPOUT_AFTER_BASE_MIN, DROPOUT_AFTER_BASE_MAX); in av1_dropout_qcoeff()
|
D | temporal_filter.c | 715 const int y = CLIP(i + wi, 0, h - 1); // Y-coord on current plane. in av1_apply_temporal_filter_planewise_c() 716 const int x = CLIP(j + wj, 0, w - 1); // X-coord on current plane. in av1_apply_temporal_filter_planewise_c() 1160 return CLIP(strength, 0, group_boost / 300); in tf_estimate_strength()
|
D | pickrst.c | 1288 fi[0] = CLIP(fi[0], WIENER_FILT_TAP0_MINV, WIENER_FILT_TAP0_MAXV); in finalize_sym_filter() 1289 fi[1] = CLIP(fi[1], WIENER_FILT_TAP1_MINV, WIENER_FILT_TAP1_MAXV); in finalize_sym_filter() 1290 fi[2] = CLIP(fi[2], WIENER_FILT_TAP2_MINV, WIENER_FILT_TAP2_MAXV); in finalize_sym_filter() 1292 fi[2] = CLIP(fi[1], WIENER_FILT_TAP2_MINV, WIENER_FILT_TAP2_MAXV); in finalize_sym_filter() 1293 fi[1] = CLIP(fi[0], WIENER_FILT_TAP1_MINV, WIENER_FILT_TAP1_MAXV); in finalize_sym_filter()
|
/external/python/cpython3/Modules/ |
D | audioop.c | 53 #define CLIP 32635 macro 167 if ( pcm_val > CLIP ) pcm_val = CLIP; /* clip the magnitude */ in st_14linear2ulaw()
|
/external/python/cpython2/Modules/ |
D | audioop.c | 65 #define CLIP 32635 macro 180 if ( pcm_val > CLIP ) pcm_val = CLIP; /* clip the magnitude */ in st_14linear2ulaw()
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 246 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); }
|
D | program_parse.y | 175 %token CLIP COLOR 1421 stateClipPlaneItem: CLIP '[' stateClipPlaneNum ']' PLANE
|
/external/skqp/src/compute/skc/platforms/cl_12/kernels/ |
D | place.cl | 533 …// - implement NO CLIP + NO TRANSLATION fastpath -- CAN ATOMICALLY ALLOCATE SK+PK KEYS IN ONE STEP 537 // - implement NO CLIP + TRANSLATION path
|
/external/python/enum34/enum/ |
D | test.py | 266 CLIP = 2 variable in TestEnum.test_comparisons.Part 271 Season.SPRING < Part.CLIP
|
/external/mesa3d/docs/ |
D | envvars.rst | 253 emit messages about the clip unit (for old gens, includes the CLIP
|