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

1 2 3 4 5 6 7 8

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_cosh.c 43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
69 return half*t+half/t;
72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
73 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/opencv3/modules/photo/src/
hdr_common.cpp 65 int half = LDR_SIZE / 2; local
67 w.at<float>(i) = i < half ? i + 1.0f : LDR_SIZE - i;
  /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);
e_rem_pio2.c 73 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
125 n = (int) (t*invpio2+half);
  /external/opencv3/modules/photo/test/
test_denoise_tvl1.cpp 52 cv::Mat half = mask.colRange(0, img.cols/2); local
53 half = cv::Scalar::all(1);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
null_fenced_block.hpp 24 enum half_or_full_t { half, full }; enumerator in enum:asio::detail::null_fenced_block::half_or_full_t
  /external/webrtc/webrtc/common_audio/
window_generator.cc 54 const size_t half = (length + 1) / 2; local
57 for (size_t i = 0; i <= half; ++i) {
62 for (size_t i = length - 1; i >= half; --i) {
67 window[half - 1] = sqrtf(window[half - 1] / sum);
  /device/google/contexthub/lib/libm/
kf_sin.c 23 half = 5.0000000000e-01,/* 0x3f000000 */ variable
48 else return x-((z*(half*y-v*r)-y)-v*S1);
ef_rem_pio2.c 88 half = 5.0000000000e-01, /* 0x3f000000 */ variable
141 n = (__int32_t) (t*invpio2+half);
  /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);
  /frameworks/rs/driver/runtime/arch/
clamp.c 29 S_CLAMP(half); variable
94 V_CLAMP(half); variable
  /frameworks/rs/tests/cppf16/
compute.cpp 28 sp<const Element> half = Element::F16(rs); local
34 testAllocationCreation(rs, half, nDims);
  /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...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_sinl.c 24 half = 0.5; variable
58 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 78 const deUint32 half = 1u<<(NUM_SUBPIXEL_BITS*2 - 1); local
80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2);
  /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...]
  /prebuilts/go/darwin-x86/test/
fibo.go 12 // -half add values using two half-digit additions
34 half = flag.Bool("half", false, "use half-digit addition")
67 // (like add, but operating on half-digits at a time)
84 const W2 = W / 2 // half-digit size in bits
85 const M2 = (1 << W2) - 1 // lower half-digit mask
90 // lower half-digit
94 // upper half-digi
33 half = flag.Bool("half", false, "use half-digit addition") var
    [all...]
  /prebuilts/go/linux-x86/test/
fibo.go 12 // -half add values using two half-digit additions
34 half = flag.Bool("half", false, "use half-digit addition")
67 // (like add, but operating on half-digits at a time)
84 const W2 = W / 2 // half-digit size in bits
85 const M2 = (1 << W2) - 1 // lower half-digit mask
90 // lower half-digit
94 // upper half-digi
33 half = flag.Bool("half", false, "use half-digit addition") var
    [all...]
  /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/eigen/test/
denseLM.cpp 39 int half = n/2; local
40 VectorBlock<const VectorType> u(uv, 0, half);
41 VectorBlock<const VectorType> v(uv, half, half);
44 for (int i = 0; i < half; i++)
64 int half = n/2; local
65 VectorBlock<const VectorType> u(uv, 0, half);
66 VectorBlock<const VectorType> v(uv, half, half);
70 for (int i = 0; i < half; i++
85 int half = n\/2; local
    [all...]
sparseLM.cpp 38 int half = n/2; local
39 VectorBlock<const VectorType> u(uv, 0, half);
40 VectorBlock<const VectorType> v(uv, half, half);
44 for (int i = 0; i < half; i++)
65 int half = n/2; local
66 VectorBlock<const VectorType> u(uv, 0, half);
67 VectorBlock<const VectorType> v(uv, half, half);
72 for (int i = 0; i < half; i++
90 int half = n\/2; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
CalculateLimits.java 74 BigDecimal half = new BigDecimal(units == 1? 0: units / 2 - 1); local
76 min = minTrunc.subtract(minResidue.min(half));
77 max = maxTrunc.add(maxResidue.min(half));

Completed in 1496 milliseconds

1 2 3 4 5 6 7 8