HomeSort by relevance Sort by last modified time
    Searched refs:half (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsRectActivity.java 57 final float half = mBitmap1.getHeight() / 2.0f; local
58 mSrcRect = new Rect((int) fourth, (int) (half - half / 2.0f),
59 (int) (fourth + fourth), (int) (half + half / 2.0f));
60 mDstRect = new RectF(fourth, half - half / 2.0f, fourth + fourth, half + half / 2.0f);
61 mDstRect2 = new RectF(fourth, half - half / 2.0f
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
binary_search.hpp 43 typename traits::difference_type half; local
47 half = len >> 1;
49 std::advance(middle, half);
53 len = len - half - 1;
56 len = half;
68 typename traits::difference_type half; local
72 half = len >> 1;
74 std::advance(middle, half);
78 len = len - half - 1;
81 len = half;
93 typename traits::difference_type half; local
118 typename traits::difference_type half; local
143 typename traits::difference_type half; local
175 typename traits::difference_type half; local
    [all...]
  /external/fdlibm/
e_cosh.c 38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
40 static double one = 1.0, half=0.5, huge = 1.0e300; variable
72 return half*t+half/t;
75 /* |x| in [22, ieee_log(maxdouble)] return half*ieee_exp(|x|) */
76 if (ix < 0x40862E42) return half*__ieee754_exp(ieee_fabs(x));
82 w = __ieee754_exp(half*ieee_fabs(x));
83 t = half*w;
k_sin.c 49 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
73 else return x-((z*(half*y-v*r)-y)-v*S1);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_cosh.c 41 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
67 return half*t+half/t;
70 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
71 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
e_coshf.c 22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
47 return half*t+half/t;
50 /* |x| in [9, log(maxfloat)] return half*exp(|x|) */
51 if (ix < 0x42b17217) return half*__ieee754_expf(fabsf(x));
k_sin.c 51 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
69 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/jmonkeyengine/engine/src/test/jme3test/math/
TestHalfFloat.java 48 short half = FastMath.convertFloatToHalf(flt); local
49 float flt2 = FastMath.convertHalfToFloat(half);
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 137 // half (which makes a difference only if odd).
141 long half = n >>> 1; local
142 long nextn = ((bits & 2) == 0) ? half : n - half;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayOutput.java 217 int half = (int) value; local
218 data[writeAt] = (byte) half;
219 data[writeAt + 1] = (byte) (half >> 8);
220 data[writeAt + 2] = (byte) (half >> 16);
221 data[writeAt + 3] = (byte) (half >> 24);
223 half = (int) (value >> 32);
224 data[writeAt + 4] = (byte) half;
225 data[writeAt + 5] = (byte) (half >> 8);
226 data[writeAt + 6] = (byte) (half >> 16);
227 data[writeAt + 7] = (byte) (half >> 24)
    [all...]
ByteArrayAnnotatedOutput.java 222 int half = (int) value; local
223 data[writeAt] = (byte) half;
224 data[writeAt + 1] = (byte) (half >> 8);
225 data[writeAt + 2] = (byte) (half >> 16);
226 data[writeAt + 3] = (byte) (half >> 24);
228 half = (int) (value >> 32);
229 data[writeAt + 4] = (byte) half;
230 data[writeAt + 5] = (byte) (half >> 8);
231 data[writeAt + 6] = (byte) (half >> 16);
232 data[writeAt + 7] = (byte) (half >> 24)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_large_unittest.cc 125 // Test sizes at half of size_t.
129 const size_t half = (zero - 2) / 2 + 1; local
131 TryAllocMightFail(half - i);
132 TryAllocMightFail(half + i);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_large_unittest.cc 125 // Test sizes at half of size_t.
129 const size_t half = (zero - 2) / 2 + 1; local
131 TryAllocMightFail(half - i);
132 TryAllocMightFail(half + i);
  /system/media/audio_utils/
fixedfft.cpp 23 * half of the twiddle factors are stored. Although there are still ways to make
101 static inline int32_t half(int32_t a) function
128 int32_t x = half(v[i]);
129 int32_t y = half(v[i + p]);
139 int32_t x = half(v[i]);
155 v[m] = half(v[m]);
158 int32_t x = half(v[i]);
159 int32_t z = half(v[n - i]);
161 x = half(x + (z ^ 0xFFFF));
  /external/speex/libspeex/
vq_sse.h 41 __m128 half; local
44 half = _mm_set_ps1(.5f);
50 __m128 d = _mm_mul_ps(E[i], half);
80 __m128 half; local
83 half = _mm_set_ps1(.5f);
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 211 int half = (int) value; local
212 data[writeAt] = (byte) half;
213 data[writeAt + 1] = (byte) (half >> 8);
214 data[writeAt + 2] = (byte) (half >> 16);
215 data[writeAt + 3] = (byte) (half >> 24);
217 half = (int) (value >> 32);
218 data[writeAt + 4] = (byte) half;
219 data[writeAt + 5] = (byte) (half >> 8);
220 data[writeAt + 6] = (byte) (half >> 16);
221 data[writeAt + 7] = (byte) (half >> 24)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 223 int half = (int) value; local
224 data[writeAt] = (byte) half;
225 data[writeAt + 1] = (byte) (half >> 8);
226 data[writeAt + 2] = (byte) (half >> 16);
227 data[writeAt + 3] = (byte) (half >> 24);
229 half = (int) (value >> 32);
230 data[writeAt + 4] = (byte) half;
231 data[writeAt + 5] = (byte) (half >> 8);
232 data[writeAt + 6] = (byte) (half >> 16);
233 data[writeAt + 7] = (byte) (half >> 24)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 220 int half = (int) value; local
221 data[writeAt] = (byte) half;
222 data[writeAt + 1] = (byte) (half >> 8);
223 data[writeAt + 2] = (byte) (half >> 16);
224 data[writeAt + 3] = (byte) (half >> 24);
226 half = (int) (value >> 32);
227 data[writeAt + 4] = (byte) half;
228 data[writeAt + 5] = (byte) (half >> 8);
229 data[writeAt + 6] = (byte) (half >> 16);
230 data[writeAt + 7] = (byte) (half >> 24)
    [all...]
  /frameworks/wilhelm/tests/sandbox/
intbufq.c 66 frame_t half[HALF_FRAMES]; variable
165 half[i].left = sine[i].left;
166 half[i].right = sawtooth[i].right / 2;
197 buffer = half;
198 size = sizeof(half);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 301 half = n/2
304 half = half+1
305 return ' '*half + s + ' '*(n-half)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 301 half = n/2
304 half = half+1
305 return ' '*half + s + ' '*(n-half)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sortperf.py 133 half = n // 2
134 L = range(half - 1, -1, -1)
135 L.extend(range(half))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sortperf.py 133 half = n // 2
134 L = range(half - 1, -1, -1)
135 L.extend(range(half))
  /external/eigen/unsupported/Eigen/src/MoreVectorization/
MathFunctions.h 25 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5);
27 _EIGEN_DECLARE_CONST_Packet4f(3half, 1.5);
48 //so first compare with half
  /frameworks/rs/cpu_ref/linkloader/include/
ELFTypes.h 125 typedef detail::ELFHalf half; typedef in struct:ELFPrimitiveTypes
146 typedef detail::ELFHalf half; typedef in struct:ELFPrimitiveTypes
187 typedef typename ELFPrimitiveTypes<BITWIDTH>::half half_t; \
205 typedef ELFPrimitiveTypes<BITWIDTH>::half half_t; \

Completed in 818 milliseconds

1 2 3 4 5 6 7