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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
scaling_tab.cpp 50 const int32 scale[63] = {0, 262145, 131073, 87382, 65537, 52430, 43692, 37450, 32769, 29128, variable
  /external/compiler-rt/test/asan/TestCases/
debug_mapping.cc 1 // Checks that the debugging API returns correct shadow scale and offset.
10 // CHECK: SHADOW_SCALE: [[SCALE:[0-9]+]]
14 size_t scale, offset; local
15 __asan_get_shadow_mapping(&scale, &offset);
17 fprintf(stderr, "scale: %d\n", (int)scale);
20 // CHECK: scale: [[SCALE]]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
gain_dequant.c 33 int16_t scale; local
36 /* obtain correct scale factor */
38 scale=WEBRTC_SPL_ABS_W16(maxIn);
39 scale = WEBRTC_SPL_MAX(1638, scale); /* if lower than 0.1, set it to 0.1 */
44 return (int16_t)((scale * gain[index] + 8192) >> 14);
my_corr.c 34 int scale; local
36 /* Calculate correlation between the two sequences. Scale the
40 scale=WebRtcSpl_GetSizeInBits(max);
42 scale = 2 * scale - 26;
43 if (scale<0) {
44 scale=0;
50 WebRtcSpl_CrossCorrelation(corr, seq2, seq1, dim2, loops, scale, 1);
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hx711.cxx 34 upm::HX711 *scale = new upm::HX711(3, 2); local
37 scale->setScale(2837);
38 scale->tare();
39 std::cout << scale->getUnits() << std::endl;
  /external/skia/src/codec/
SkRawAdapterCodec.cpp 17 float scale = 1.f / static_cast<float>(sampleSize); local
18 return this->codec()->getScaledDimensions(scale);
SkWebpAdapterCodec.cpp 17 float scale = get_scale_from_sample_size(sampleSize); local
18 return this->codec()->getScaledDimensions(scale);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrt.c 54 int scale; local
85 /* Scale to avoid overflow. */
89 scale = 1;
91 scale = 0;
104 if (scale)
s_csqrtl.c 54 int scale; local
85 /* Scale to avoid overflow. */
89 scale = 1;
91 scale = 0;
104 if (scale)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ScaleXPointMap.java 5 protected final ECFieldElement scale; field in class:ScaleXPointMap
7 public ScaleXPointMap(ECFieldElement scale)
9 this.scale = scale;
14 return p.scaleX(scale);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/
cordic.py 6 scale = units/math.pi variable
18 angle2 = round(angle*scale) # arctangent in FT_Angle units
  /external/skia/fuzz/
FuzzScaleToSides.cpp 33 double scale = (double)width / ((double)radius1 + (double)radius2); local
34 if (scale >= 1.0 || scale <= 0.0) {
37 SkDebugf("%g %g %g %g\n", radius1, radius2, width, scale);
38 SkScaleToSides::AdjustRadii(width, scale, &radius1, &radius2);
  /external/skia/gm/
bitmaprecttest.cpp 31 // scaling the image down by the matrix' scale
43 SkScalar scale = 0.472560018f; local
45 canvas->scale(scale, scale);
49 canvas->scale(-1, 1);
repeated_bitmap.cpp 22 SkScalar scale = SkTMin(128.0f / image->width(), local
31 canvas->scale(scale, scale);
  /external/skia/src/core/
SkBitmapProcState_filter.h 31 int scale = 256 - 16*y - 16*x + xy; local
32 uint32_t lo = (a00 & mask) * scale;
33 uint32_t hi = ((a00 >> 8) & mask) * scale;
35 scale = 16*x - xy;
36 lo += (a01 & mask) * scale;
37 hi += ((a01 >> 8) & mask) * scale;
39 scale = 16*y - xy;
40 lo += (a10 & mask) * scale;
41 hi += ((a10 >> 8) & mask) * scale;
61 int scale = 256 - 16*y - 16*x + xy local
91 int scale = 256 - 16*t; local
113 int scale = 256 - 16*t; local
    [all...]
  /external/skia/tests/
ScaleToSidesTest.cpp 52 double scale = width / ((double)radius1 + (double)radius2); local
55 scale = std::min(scale, interestingValues[s-1]);
57 if (scale < 1.0 && scale > 0.0) {
58 SkScaleToSides::AdjustRadii(width, scale, &radius1, &radius2);
  /hardware/bsp/intel/peripheral/sensors/mraa/sensors/
LSM303dAccelerometer.hpp 39 * @param scale Sensor sensitivity scaling
44 int scale = LM303D_SCALE_2G);
72 int scale; member in class:LSM303dAccelerometer
  /development/perftests/panorama/feature_stab/db_vlvm/
db_image_homography.h 82 double scale,t[3]; local
88 db_StitchSimilarity3DRaw(&scale,R,t,xp,x,2,1,0,1,0);
104 Find scale, rotation and translation of the similarity that
144 \param scale (out)
151 \param allow_scaling compute scale (if 0, scale=1)
155 DB_API void db_StitchSimilarity2DRaw(double *scale,double R[4],double t[2],
165 \param allow_scaling compute scale (if 0, scale=1)
  /external/aac/libAACdec/src/arm/
block_arm.cpp 115 int scale = SpecScale_window-pSfbScale[window*16+band]; local
116 if (scale)
125 tmp0 >>= scale; local
126 tmp1 >>= scale; local
127 tmp2 >>= scale; local
128 tmp3 >>= scale; local
  /external/dng_sdk/source/
dng_xy_coord.cpp 60 real64 scale = 0.999999 / (temp.x + temp.y); local
61 temp.x *= scale;
62 temp.y *= scale;
  /external/freetype/src/base/
ftadvanc.c 32 FT_Fixed scale; local
43 scale = face->size->metrics.y_scale;
45 scale = face->size->metrics.x_scale;
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
158 /* scale from 26.6 to 16.16 */
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftadvanc.c 32 FT_Fixed scale; local
43 scale = face->size->metrics.y_scale;
45 scale = face->size->metrics.x_scale;
51 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
158 /* scale from 26.6 to 16.16 */
  /external/libopus/silk/
stereo_find_predictor.c 44 opus_int scale, scale1, scale2; local
50 scale = silk_max_int( scale1, scale2 );
51 scale = scale + ( scale & 1 ); /* make even */
52 nrgy = silk_RSHIFT32( nrgy, scale - scale2 );
53 nrgx = silk_RSHIFT32( nrgx, scale - scale1 );
55 corr = silk_inner_prod_aligned_scale( x, y, scale, length );
65 scale = silk_RSHIFT( scale, 1 )
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
54 * though that can still sometimes happen with this scale factor...
56 const float scale = 0.9999f; local
57 const float sc = (2 * in_st[0] - 1) * scale;
58 const float tc = (2 * in_st[1] - 1) * scale;
  /external/opencv3/modules/core/perf/
perf_arithm.cpp 230 double scale = 0.5; local
241 TEST_CYCLE() multiply(a, b, c, scale);
251 double scale = 0.5; local
255 TEST_CYCLE() divide(a, b, c, scale);
265 double scale = 0.5; local
269 TEST_CYCLE() divide(scale, b, c);

Completed in 2383 milliseconds

1 2 3 4 5 6 7 8 91011>>