HomeSort by relevance Sort by last modified time
    Searched refs:scale (Results 1 - 25 of 3712) 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/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);
SimpleBigDecimal.java 10 * point is called the <code>scale</code> of the <code>SimpleBigDecimal</code>.
11 * Unlike in {@link java.math.BigDecimal BigDecimal}, the scale is not adjusted
13 * taking part in the same arithmetic operation must have equal scale. The
15 * <code>SimpleBigDecimal</code> with double scale.
23 private final int scale; field in class:SimpleBigDecimal
30 * @param scale The scale of the <code>SimpleBigDecimal</code> to be
34 public static SimpleBigDecimal getInstance(BigInteger value, int scale)
36 return new SimpleBigDecimal(value.shiftLeft(scale), scale);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
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);
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);
  /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/aac/libFDK/include/mips/
scale_mips.h 110 * \brief Scale input value by 2^{scale} and saturate output to 2^{dBits-1}
116 #define SATURATE_RIGHT_SHIFT(src, scale, dBits) \
117 (__builtin_mips_shll_s_w((src) >> (scale), (DFRACT_BITS - (dBits))) >> \
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timescale/
TimeScaleAPITest.java 50 for (int scale = 0; scale < UniversalTimeScale.MAX_SCALE; scale += 1) {
52 UniversalTimeScale.bigDecimalFrom(bigZero, scale);
54 errln("bigDecimalFrom(bigZero, " + scale + ") threw IllegalArgumentException.");
76 for (int scale = 0; scale < UniversalTimeScale.MAX_SCALE; scale += 1) {
78 UniversalTimeScale.bigDecimalFrom(0.0, scale);
80 errln("bigDecimalFrom(0.0, " + scale + ") threw IllegalArgumentException.")
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timescale/
TimeScaleAPITest.java 47 for (int scale = 0; scale < UniversalTimeScale.MAX_SCALE; scale += 1) {
49 UniversalTimeScale.bigDecimalFrom(bigZero, scale);
51 errln("bigDecimalFrom(bigZero, " + scale + ") threw IllegalArgumentException.");
73 for (int scale = 0; scale < UniversalTimeScale.MAX_SCALE; scale += 1) {
75 UniversalTimeScale.bigDecimalFrom(0.0, scale);
77 errln("bigDecimalFrom(0.0, " + scale + ") threw IllegalArgumentException.")
    [all...]
  /frameworks/base/core/java/android/view/
IWindowSessionCallback.aidl 26 void onAnimatorScaleChanged(float scale);
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewItemDrawingParams.java 26 float scale; field in class:PreviewItemDrawingParams
32 PreviewItemDrawingParams(float transX, float transY, float scale, float overlayAlpha) {
35 this.scale = scale;
39 public void update(float transX, float transY, float scale) {
44 || anim.finalScale == scale) {
52 this.scale = scale;
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
ImageViewState.java 8 * Wraps the scale, center and orientation of a displayed image for easy restoration on screen rotate.
13 private final float scale; field in class:ImageViewState
21 public ImageViewState(float scale, PointF center, int orientation) {
22 this.scale = scale;
29 return scale;
  /external/aac/libFDK/include/arm/
scale_arm.h 110 inline static INT shiftRightSat(INT src, int scale) {
115 : "r"(src >> scale), "M"(SAMPLE_BITS));
120 #define SATURATE_INT_PCM_RIGHT_SHIFT(src, scale) shiftRightSat(src, scale)
122 inline static INT shiftLeftSat(INT src, int scale) {
127 : "r"(src << scale), "M"(SAMPLE_BITS));
132 #define SATURATE_INT_PCM_LEFT_SHIFT(src, scale) shiftLeftSat(src, scale)
151 #define SATURATE_RIGHT_SHIFT(src, scale, dBits) \
152 ((((LONG)(src) ^ ((LONG)(src) >> (DFRACT_BITS - 1))) >> (scale)) > \
    [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);
  /external/skqp/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);
  /external/clang/lib/Headers/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /external/skia/src/core/
SkScaleToSides.h 19 // Scale must be less than or equal to the ratio limit / (*a + *b).
21 static void AdjustRadii(double limit, double scale, SkScalar* a, SkScalar* b) {
22 SkASSERTF(scale < 1.0 && scale > 0.0, "scale: %g", scale);
24 *a = (float)((double)*a * scale);
25 *b = (float)((double)*b * scale);
60 SkASSERTF(*a >= 0.0f && *b >= 0.0f, "a: %g, b: %g, limit: %g, scale: %g", *a, *b, limit,
61 scale);
    [all...]
  /external/skqp/src/core/
SkScaleToSides.h 19 // Scale must be less than or equal to the ratio limit / (*a + *b).
21 static void AdjustRadii(double limit, double scale, SkScalar* a, SkScalar* b) {
22 SkASSERTF(scale < 1.0 && scale > 0.0, "scale: %g", scale);
24 *a = (float)((double)*a * scale);
25 *b = (float)((double)*b * scale);
60 SkASSERTF(*a >= 0.0f && *b >= 0.0f, "a: %g, b: %g, limit: %g, scale: %g", *a, *b, limit,
61 scale);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/lib64/clang/6.0.1/include/
avx512pfintrin.h 34 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) __extension__ ({\
36 (long long const *)(addr), (int)(scale), \
39 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) __extension__ ({\
41 (long long const *)(addr), (int)(scale), \
44 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) ({\
47 (int)(scale), (int)(hint)); })
49 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) ({\
52 (int)(scale), (int)(hint)); })
54 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) __extension__ ({\
56 (long long const *)(addr), (int)(scale), \
    [all...]

Completed in 650 milliseconds

1 2 3 4 5 6 7 8 91011>>