HomeSort by relevance Sort by last modified time
    Searched refs:scaling (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
ftcalc.h 91 * the 64bit multiplication. Let `sa' and `sb' be the scaling factors of
92 * `a' and `b', respectively, then the scaling factor of the result is
98 FT_Long scaling );
108 FT_Long scaling );
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
ftcalc.h 91 * the 64bit multiplication. Let `sa' and `sb' be the scaling factors of
92 * `a' and `b', respectively, then the scaling factor of the result is
98 FT_Long scaling );
108 FT_Long scaling );
  /external/speex/libspeex/
filterbank.c 75 bank->scaling = (float*)speex_alloc(banks*sizeof(float));
108 bank->scaling[i] = 0;
112 bank->scaling[id] += bank->filter_left[i];
114 bank->scaling[id] += bank->filter_right[i];
117 bank->scaling[i] = Q15_ONE/(bank->scaling[i]);
129 speex_free(bank->scaling);
151 mel[i] = MULT16_32_P15(Q15(bank->scaling[i]),mel[i]);
187 mel[i] *= bank->scaling[i];
  /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/third_party/webrtc/voice_engine/test/auto_test/standard/
volume_test.cc 205 float scaling = -1.0f; local
208 channel_, scaling));
209 EXPECT_FLOAT_EQ(1.0f, scaling);
216 float scaling = 1.0f; local
218 channel_, scaling));
220 EXPECT_FLOAT_EQ(0.1f, scaling);
222 TEST_LOG("Channel scaling set to 0.1: audio should be barely audible.\n");
  /external/chromium_org/ash/desktop_background/
desktop_background_view.cc 33 // For our scaling ratios we need to round positive numbers.
42 // This is to avoid scaling the image at painting time, then scaling
109 float scaling = display_info.GetEffectiveUIScale(); local
110 if (scaling <= 1.0f)
111 scaling = 1.0f;
112 // Allow scaling up to the UI scaling.
116 0, 0, wallpaper.width() * scaling, wallpaper.height() * scaling);
    [all...]
  /external/eigen/test/eigen2/
eigen2_hyperplane.cpp 53 Scaling<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
61 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling).absDistance((rot*scaling) * p1), Scalar(1) );
63 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling*translation)
64 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
  /external/eigen/test/
geo_hyperplane.cpp 53 DiagonalMatrix<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
61 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling).absDistance((rot*scaling) * p1), Scalar(1) );
63 VERIFY_IS_MUCH_SMALLER_THAN( pl2.transform(rot*scaling*translation)
64 .absDistance((rot*scaling*translation) * p1), Scalar(1) );
  /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
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
time_stretch.h 105 int peak_index, int scaling) const;
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_volume_control_impl.cc 163 // scaling. WebRTC does not support setting the volume above 100%, and
391 float scaling)
394 "SetChannelOutputVolumeScaling(channel=%d, scaling=%3.2f)",
395 channel, scaling);
401 if (scaling < kMinOutputVolumeScaling ||
402 scaling > kMaxOutputVolumeScaling)
416 return channelPtr->SetChannelOutputVolumeScaling(scaling);
420 float& scaling)
423 "GetChannelOutputVolumeScaling(channel=%d, scaling=?)", channel);
437 return channelPtr->GetChannelOutputVolumeScaling(scaling);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator.c 158 int16_t scaling,n,k; local
168 scaling = WebRtcSpl_GetScalingSquare ((int16_t *) in, PITCH_CORR_LEN2, PITCH_CORR_LEN2);
173 ysum32 += WEBRTC_SPL_MUL_16_16_RSFT( (int16_t) in[n],(int16_t) in[n], scaling); // Q0
174 csum32 += WEBRTC_SPL_MUL_16_16_RSFT((int16_t) x[n],(int16_t) in[n], scaling); // Q0
199 ysum32 -= WEBRTC_SPL_MUL_16_16_RSFT( (int16_t) in[k-1],(int16_t) in[k-1], scaling);
200 ysum32 += WEBRTC_SPL_MUL_16_16_RSFT( (int16_t) in[PITCH_CORR_LEN2 + k - 1],(int16_t) in[PITCH_CORR_LEN2 + k - 1], scaling);
207 int32x4_t int_32x4_scale = vdupq_n_s32(-scaling);
228 if(scaling == 0) {
234 csum32 += (x[n] * inptr[n]) >> scaling;
filters_neon.S 49 @ Calculate scaling (the value of shifting).
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
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/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.c 51 * int iSign, double scaling);
66 * SCALING = normalizing constant by which the final result is *divided*
67 * if SCALING == -1, normalize by total dimension of the transform
68 * if SCALING < -1, normalize by the square-root of the total dimension
74 * WebRtcIsac_Fftn (3, dims, Re, Im, 1, scaling);
163 double scaling,
239 if (scaling && scaling != 1.0)
242 if (scaling < 0.0)
244 scaling = (double)nTotal
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
fft.c 51 * int iSign, double scaling);
66 * SCALING = normalizing constant by which the final result is *divided*
67 * if SCALING == -1, normalize by total dimension of the transform
68 * if SCALING < -1, normalize by the square-root of the total dimension
74 * WebRtcIsac_Fftn (3, dims, Re, Im, 1, scaling);
163 double scaling,
239 if (scaling && scaling != 1.0)
242 if (scaling < 0.0)
244 scaling = (double)nTotal
    [all...]
  /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
  /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/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 240 // Scale a base value by a scaling factor, and return the scaled
243 NonLoc baseVal, CharUnits scaling,
246 sb.makeArrayIndex(scaling.getQuantity()),
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 69 /** corresponding scaling transformation type */
70 typedef Scaling<Scalar,Dim> ScalingType;
237 void computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const;
239 void computeScalingRotation(ScalingMatrixType *scaling, RotationMatrixType *rotation) const;
527 *** Scaling, Translation and Rotation compatibility ***
606 /** decomposes the linear part of the transformation as a product rotation x scaling, the scaling being
619 void Transform<Scalar,Dim>::computeRotationScaling(RotationMatrixType *rotation, ScalingMatrixType *scaling) const
625 if(scaling)
627 scaling->noalias() = svd.matrixV() * sv.asDiagonal() * svd.matrixV().adjoint()
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftcalc.c 771 FT_Long scaling )
775 FT_Long val = 0x10000L * scaling;
796 FT_Long scaling )
800 FT_Long val = 0x10000L * scaling;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 147 lsl r8, r2, #16 ; prepare bottom halfword for scaling
149 lsl r9, r3, #16 ; prepare bottom halfword for scaling
201 lsl r8, r2, #16 ; prepare bottom halfword for scaling
203 lsl r9, r3, #16 ; prepare bottom halfword for scaling
  /external/libvpx/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 147 lsl r8, r2, #16 ; prepare bottom halfword for scaling
149 lsl r9, r3, #16 ; prepare bottom halfword for scaling
201 lsl r8, r2, #16 ; prepare bottom halfword for scaling
203 lsl r9, r3, #16 ; prepare bottom halfword for scaling
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 147 lsl r8, r2, #16 ; prepare bottom halfword for scaling
149 lsl r9, r3, #16 ; prepare bottom halfword for scaling
201 lsl r8, r2, #16 ; prepare bottom halfword for scaling
203 lsl r9, r3, #16 ; prepare bottom halfword for scaling
  /prebuilts/devtools/tools/lib/
ninepatch.jar 

Completed in 2112 milliseconds

12 3 4