HomeSort by relevance Sort by last modified time
    Searched defs:scaling (Results 1 - 25 of 27) sorted by null

1 2

  /external/aac/libAACenc/src/
pre_echo_control.cpp 119 int scaling; local
132 scaling = 2*(mdctScale-*mdctScalenm1);
136 FDK_ASSERT(scaling>=0);
137 tmpThreshold1 = maxAllowedIncreaseFactor * (pbThresholdNm1[i]>>scaling);
151 scaling = 2*(*mdctScalenm1-mdctScale);
161 FDK_ASSERT(scaling>=0);
162 if((pbThreshold[i]>>(scaling+1)) > tmpThreshold1) {
163 pbThreshold[i] = tmpThreshold1<<(scaling+1);
adj_thr.cpp 246 #define Q_BITFAC (24) /* Q scaling used in FDKaacEnc_bitresCalcBitFac() calculation */
667 /* maximal number of bands is 64, results scaling factor 6 */
2348 int scaling = 0; local
2426 int scaling = 0; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
energy.c 24 int scaling = WebRtcSpl_GetScalingSquare(vector, vector_length, vector_length); local
30 en += WEBRTC_SPL_MUL_16_16_RSFT(*vectorptr, *vectorptr, scaling);
33 *scale_factor = scaling;
auto_correlation.c 32 int scaling = 0; local
50 scaling = 0;
58 scaling = 0;
61 scaling = nbits - t;
78 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1++, *xptr2++, scaling);
83 if (scaling == 0)
112 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
115 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
118 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
121 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
pre_echo_control.c 65 Word32 scaling; local
70 scaling = ((mdctScale - mdctScalenm1) << 1);
72 if ( scaling > 0 ) {
74 tmpThreshold1 = pbThresholdNm1[i] >> (scaling-1);
92 scaling = -scaling;
102 if(((pbThreshold[i] >> scaling) > tmpThreshold1)) {
103 pbThreshold[i] = tmpThreshold1 << scaling;
  /external/speex/libspeex/
filterbank.h 45 float *scaling; member in struct:__anon28205
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
filters.c 34 int16_t scaling = 0; local
44 // Calculate scaling (the value of shifting).
47 scaling = 0;
49 scaling = 32 - WebRtcSpl_NormU32(temp);
51 r[0] = (int32_t)(prod >> scaling);
59 sum = (int32_t)(prod >> scaling);
63 *scale = scaling;
filters_neon.c 39 int16_t scaling = 0; local
42 // Step 1, calculate r[0] and how much scaling is needed.
61 // Calculate the value of shifting (scaling).
71 scaling = (32 - zeros_high + 1);
73 scaling = 1;
75 reg64x1b = -scaling;
90 sum = (int32_t)(prod >> scaling);
145 "mov %[tmp], %[scaling], asr #31\n\t"
146 "vmov.32 d16, %[scaling], %[tmp]\n\t"
155 [scaling]"r"(-scaling
    [all...]
pitch_estimator.c 164 WebRtc_Word16 scaling,n,k; local
174 scaling = WebRtcSpl_GetScalingSquare ((WebRtc_Word16 *) in, PITCH_CORR_LEN2, PITCH_CORR_LEN2);
179 ysum32 += WEBRTC_SPL_MUL_16_16_RSFT( (WebRtc_Word16) in[n],(WebRtc_Word16) in[n], scaling); // Q0
180 csum32 += WEBRTC_SPL_MUL_16_16_RSFT((WebRtc_Word16) x[n],(WebRtc_Word16) in[n], scaling); // Q0
205 ysum32 -= WEBRTC_SPL_MUL_16_16_RSFT( (WebRtc_Word16) in[k-1],(WebRtc_Word16) in[k-1], scaling);
206 ysum32 += WEBRTC_SPL_MUL_16_16_RSFT( (WebRtc_Word16) in[PITCH_CORR_LEN2 + k - 1],(WebRtc_Word16) in[PITCH_CORR_LEN2 + k - 1], scaling);
213 int32x4_t int_32x4_scale = vdupq_n_s32(-scaling);
234 if(scaling == 0) {
240 csum32 += (x[n] * inptr[n]) >> scaling;
  /external/chromium_org/ash/desktop_background/
desktop_background_view.cc 33 // For our scaling ratios we need to round positive numbers.
70 float scaling = display_info.ui_scale(); local
71 if (scaling <= 1.0f)
72 scaling = 1.0f;
73 // Allow scaling up to the UI scaling.
77 0, 0, wallpaper.width() * scaling, wallpaper.height() * scaling);
  /device/lge/mako/camera/inc/
omx_jpeg_ext.h 88 /*assume main img scaling*/
93 int scaling; member in struct:omx_jpeg_thumbnail
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 470 XTransform scaling = { { local
475 XRenderSetPictureTransform(display_, picture, &scaling);
  /external/chromium_org/third_party/freetype/src/cff/
cffparse.c 132 FT_Long* scaling )
143 if ( scaling )
144 *scaling = 0;
267 if ( scaling )
278 *scaling = exponent - fraction_length + 1;
287 /* Make `scaling' as small as possible. */
303 *scaling = exponent;
311 *scaling = exponent - 4;
316 *scaling = exponent - 5;
389 /* but return `10^scaling' times the number read in *
458 FT_Long scaling; local
    [all...]
cffobjs.c 614 /* scaling is done with `units_per_em' then (at this point, */
615 /* it already contains the scaling factor, but without */
657 FT_Long scaling; local
661 scaling = FT_MIN( top->units_per_em, sub->units_per_em );
663 scaling = 1;
667 scaling );
670 scaling );
674 scaling );
696 /* scaling for the subfont (see section 5.11 of the PLRM) */
    [all...]
  /external/freetype/src/cff/
cffparse.c 133 FT_Long* scaling )
144 if ( scaling )
145 *scaling = 0;
279 if ( scaling )
290 *scaling = exponent - fraction_length + 1;
299 /* Make `scaling' as small as possible. */
320 *scaling = exponent;
328 *scaling = exponent - 4;
333 *scaling = exponent - 5;
415 FT_Long scaling )
523 FT_Long scaling; local
    [all...]
cffobjs.c 633 /* scaling is done with `units_per_em' then (at this point, */
634 /* it already contains the scaling factor, but without */
676 FT_Long scaling; local
685 scaling = FT_MIN( top->units_per_em, sub->units_per_em );
687 scaling = 1;
691 scaling );
694 scaling );
698 scaling );
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pitch_fr.cpp 63 6. Modified scaling threshold and group all shifts (avoiding
215 Word16 scaling, h_fac, *s_excf, scaled_excf[L_SUBFR];
238 scaling = 0;
244 scaling = 2;
283 s_excf[0] = shr (exc[k], scaling);
331 Word16 scaling; local
367 scaling = 0;
374 scaling = 2;
431 *(p_s_excf) = temp >> scaling;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvoiceengine.cc 2469 float scaling; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tex_sample.c 1644 float scaling = 1.0 \/ (1 << level0); local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 1644 float scaling = 1.0 \/ (1 << level0); local
    [all...]
  /hardware/samsung_slsi/exynos5/include/
fimg2d.h 110 enum scaling { enum
199 enum scaling mode;
242 struct fimg2d_scale scaling; member in struct:fimg2d_param
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
fimg2d.h 148 enum scaling { enum
291 enum scaling mode;
342 * @scaling: common scaling info for src and mask image.
353 struct fimg2d_scale scaling; member in struct:fimg2d_param
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texfilter.c 1650 GLfloat scaling = 1.0 \/ (1 << level); local
1777 GLfloat scaling = 1.0F \/ (1 << level); local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 1650 GLfloat scaling = 1.0 \/ (1 << level); local
1777 GLfloat scaling = 1.0F \/ (1 << level); local
    [all...]
  /prebuilts/devtools/tools/lib/
ninepatch.jar 

Completed in 607 milliseconds

1 2