Searched defs:scale (Results 201 - 225 of 429) sorted by relevance

1234567891011>>

/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.c55 // - scale : Scale for smoothing (should be less than 1.0).
61 float scale,
63 assert(scale < 1.0f);
64 *mean_value += (new_value - *mean_value) * scale;
60 MeanEstimatorFloat(float new_value, float scale, float* mean_value) argument
/external/aac/libFDK/src/arm/
H A Dqmf_arm.cpp542 int scale = ((DFRACT_BITS-SAMPLE_BITS)-1-qmf->outScalefactor); local
591 const FIXP_DBL max_pos = (FIXP_DBL) 0x00007FFF << scale;
592 const FIXP_DBL max_neg = (FIXP_DBL) 0xFFFF8001 << scale;
594 scale = -scale;
595 const FIXP_DBL max_pos = (FIXP_DBL) 0x7FFFFFFF >> scale;
596 const FIXP_DBL max_neg = (FIXP_DBL) 0x80000001 >> scale;
598 const FIXP_DBL add_neg = (1 << scale) - 1;
604 FDK_ASSERT(scale >= 0);
622 timeOut[0] = result1 >> scale;
[all...]
/external/aac/libSBRenc/src/
H A Dnf_est.cpp180 INT scale, l, k; local
247 accu = fDivNorm(meanSbr, meanOrig, &scale);
250 fMult(RELAXATION_FRACT,fMult(weightFac,accu)) >>( RELAXATION_SHIFT-scale ) ) ;
258 accu = fDivNorm(diff, meanOrig, &scale);
259 scale -= 2;
261 if ( (scale>0) && (accu > ((FIXP_DBL)MAXVAL_DBL)>>scale) ) {
265 *noiseLevel = scaleValue(accu, scale);
/external/iproute2/tc/
H A Dtc_util.c122 double scale; member in struct:rate_suffix
162 *rate = (bps * s->scale) / 8.;
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DBone.java192 * Returns the local scale of the bone, relative to the parent bone.
194 * @return The local scale of the bone, relative to the parent bone.
219 * Returns the scale of the bone in model space.
221 * @return The scale of the bone in model space.
252 * Returns the inverse world bind pose scale.
257 * @return the inverse world bind pose scale.
288 * Returns the world bind pose scale.
293 * @return the world bind pose scale.
330 //scale
331 //For scale paren
437 setUserTransforms(Vector3f translation, Quaternion rotation, Vector3f scale) argument
508 setAnimTransforms(Vector3f translation, Quaternion rotation, Vector3f scale) argument
525 blendAnimTransforms(Vector3f translation, Quaternion rotation, Vector3f scale, float weight) argument
559 setBindTransforms(Vector3f translation, Quaternion rotation, Vector3f scale) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java861 * a given float scale factor.
863 * @param scale
864 * the value to scale by.
867 public Matrix3f multLocal(float scale) { argument
868 m00 *= scale;
869 m01 *= scale;
870 m02 *= scale;
871 m10 *= scale;
872 m11 *= scale;
873 m12 *= scale;
1332 scale(Vector3f scale) argument
[all...]
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DRenderDeviceJme.java257 Color color, float scale,
290 float x0 = centerX + (x - centerX) * scale;
291 float y0 = centerY + (y - centerY) * scale;
295 tempMat.setScale(w * scale, h * scale, 0);
255 renderImage(RenderImage image, int x, int y, int w, int h, int srcX, int srcY, int srcW, int srcH, Color color, float scale, int centerX, int centerY) argument
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
H A DTerrainGrid.java194 public TerrainGrid(String name, int patchSize, int maxVisibleSize, Vector3f scale, TerrainGridTileLoader terrainQuadGrid, argument
199 this.stepScale = scale;
209 public TerrainGrid(String name, int patchSize, int maxVisibleSize, Vector3f scale, TerrainGridTileLoader terrainQuadGrid) { argument
210 this(name, patchSize, maxVisibleSize, scale, terrainQuadGrid, new Vector2f(), 0);
218 public TerrainGrid(String name, int patchSize, int maxVisibleSize, Vector3f scale, HeightMapGrid heightMapGrid, argument
223 this.stepScale = scale;
233 public TerrainGrid(String name, int patchSize, int maxVisibleSize, Vector3f scale, HeightMapGrid heightMapGrid) { argument
234 this(name, patchSize, maxVisibleSize, scale, heightMapGrid, new Vector2f(), 0);
/external/libvorbis/lib/
H A Dpsytune.c328 float scale=4.f/framesize; local
342 fft[0]*=scale;
345 float temp=scale*FAST_HYPOT(fft[j],fft[j+1]);
/external/quake/quake/src/QW/client/
H A Dr_surf.c129 Combine and scale multiple lightmaps into the 8.8 format in blocklights
138 unsigned scale; local
166 scale = r_drawsurf.lightadj[maps]; // 8.8 fraction
168 blocklights[i] += lightmap[i] * scale;
/external/quake/quake/src/QW/server/
H A Dsv_phys.c377 void SV_AddGravity (edict_t *ent, float scale) argument
379 ent->v.velocity[2] -= scale * movevars.gravity * host_frametime;
/external/quake/quake/src/WinQuake/
H A Dr_part.cpp667 float scale; local
729 // hack a scale up to keep particles from disapearing
730 scale = (p->org[0] - r_origin[0])*vpn[0] + (p->org[1] - r_origin[1])*vpn[1]
732 if (scale < 20)
733 scale = 1;
735 scale = 1 + scale * 0.004;
761 *pPos++ = p->org[0] + up[0]*scale;
762 *pPos++ = p->org[1] + up[1]*scale;
763 *pPos++ = p->org[2] + up[2]*scale;
[all...]
H A Dr_surf.cpp146 Combine and scale multiple lightmaps into the 8.8 format in blocklights
155 unsigned scale; local
183 scale = r_drawsurf.lightadj[maps]; // 8.8 fraction
185 blocklights[i] += lightmap[i] * scale;
/external/skia/bench/
H A DGradientBench.cpp41 /// Ignores scale
44 float scale) {
51 float scale) {
55 return SkGradientShader::CreateRadial(center, center.fX * scale,
60 /// Ignores scale
63 float scale) {
71 /// Ignores scale
74 float scale) {
88 float scale);
154 float scale
42 MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, SkUnitMapper* mapper, float scale) argument
49 MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, SkUnitMapper* mapper, float scale) argument
61 MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, SkUnitMapper* mapper, float scale) argument
72 Make2Radial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, SkUnitMapper* mapper, float scale) argument
[all...]
/external/skia/include/core/
H A DSkPoint.h246 /** Scale the point's coordinates by scale, writing the answer into dst.
249 void scale(SkScalar scale, SkPoint* dst) const;
251 /** Scale the point's coordinates by scale, writing the answer back into
254 void scale(SkScalar value) { this->scale(value, this); } function in struct:SkPoint
/external/skia/samplecode/
H A DClockFaceView.cpp156 static void apply_shader(SkPaint* paint, float scale) argument
162 r7(rast, p, scale);
H A DSampleTextEffects.cpp271 static unsigned scale_dist(unsigned dist, unsigned scale) { argument
277 // return SkAlphaMul(dist, scale);
324 // canvas->scale(SK_Scalar1*2, SK_Scalar1*2, 0, 0);
/external/skia/src/effects/
H A DSkBlurMask.cpp112 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1)); local
134 *dst++ = SkToU8(tmp * scale >> 24);
157 *dst++ = SkToU8(tmp * scale >> 24);
176 uint32_t scale = (1 << 24) / ((2*rx + 1)*(2*ry + 1)); local
204 *dst++ = SkToU8(tmp * scale >> 24);
221 *dst++ = SkToU8(tmp * scale >> 24);
223 *dst++ = SkToU8(tmp * scale >> 24);
225 *dst++ = SkToU8(tmp * scale >> 24);
227 *dst++ = SkToU8(tmp * scale >> 24);
239 *dst++ = SkToU8(tmp * scale >> 2
[all...]
/external/skia/src/opts/
H A DSkBlitRow_opts_SSE2.cpp43 // Move scale factors to upper byte of word
61 // Multiply by scale.
63 // where rs.h stands for the higher byte of r * scale, and
64 // bs.h the higher byte of b * scale.
71 // Multiply by scale.
75 // Clear the lower byte of the a*scale and g*scale results
358 unsigned scale = 256 - SkAlpha255To256(colorA); local
363 *dst = color + SkAlphaMulQ(*src, scale);
372 __m128i src_scale_wide = _mm_set1_epi16(scale);
515 SkBlendLCD16_SSE2(__m128i &srci, __m128i &dst, __m128i &mask, __m128i &scale) argument
635 __m128i scale = _mm_set1_epi16(srcA); local
[all...]
/external/skia/src/utils/
H A DSkCamera.cpp68 float scale = 1.0f / mag; local
69 unit->fX = fX * scale;
70 unit->fY = fY * scale;
71 unit->fZ = fZ * scale;
87 SkFixed scale = SkFixedDiv(SK_Fract1, mag);
88 unit->fX = SkFixedMul(fX, scale);
89 unit->fY = SkFixedMul(fY, scale);
90 unit->fZ = SkFixedMul(fZ, scale);
H A DSkProxyCanvas.cpp41 bool SkProxyCanvas::scale(SkScalar sx, SkScalar sy) { function in class:SkProxyCanvas
42 return fProxy->scale(sx, sy);
/external/skia/src/views/
H A DSkTouchGesture.cpp191 float SkTouchGesture::limitTotalZoom(float scale) const {
192 // this query works 'cause we know that we're square-scale w/ no skew/rotation
195 if (scale > 1 && curr * scale > MAX_ZOOM_SCALE) {
196 scale = MAX_ZOOM_SCALE / curr;
197 } else if (scale < 1 && curr * scale < MIN_ZOOM_SCALE) {
198 scale = MIN_ZOOM_SCALE / curr;
200 return scale;
243 float scale local
305 double scale = dist1 / dist0; local
[all...]
/external/speex/libspeex/
H A Dsb_celp.c643 spx_word32_t scale; /*Q14*/ local
661 scale = SHL32(MULT16_16(PDIV32_16(SHL32(EXTEND32(gc),SIG_SHIFT-6),filter_ratio),(1+el)),6);
688 signal_div(target, target, scale, st->subframeSize);
699 signal_mul(innov, innov, scale, st->subframeSize);
712 signal_mul(innov2, innov2, MULT16_32_P15(QCONST16(0.4f,15),scale), st->subframeSize);
1044 spx_word32_t scale; local
1053 scale = SHL32(PDIV32(SHL32(MULT16_16(gc, el),3), filter_ratio),SIG_SHIFT-3);
1057 signal_mul(exc,exc,scale,st->subframeSize);
1066 signal_mul(innov2, innov2, MULT16_32_P15(QCONST16(0.4f,15),scale), st->subframeSize);
/external/srec/srec/include/
H A Dsample.h188 float scale; member in struct:__anon12437
/external/v8/src/ia32/
H A Dassembler-ia32-inl.h429 void Operand::set_sib(ScaleFactor scale, Register index, Register base) { argument
431 ASSERT((scale & -4) == 0);
434 buf_[1] = scale << 6 | index.code() << 3 | base.code();

Completed in 512 milliseconds

1234567891011>>