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

1 2 3

  /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);
s_erff.c 24 half= 5.0000000000e-01, /* 0x3F000000 */ variable
151 r += (x-half);
152 return half - r ;
  /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);
  /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/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);
  /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);
  /external/chromium_org/third_party/skia/src/opts/
SkBlurImage_opts_SSE2.cpp 45 const __m128i half = _mm_set1_epi32(1 << 23); local
66 result = _mm_add_epi32(result, half);
SkBlurImage_opts_SSE4.cpp 52 const __m128i half = _mm_set1_epi32(1 << 23); local
68 result = _mm_add_epi32(result, half);
SkBlurImage_opts_neon.cpp 124 const uint32x4_t half = vdupq_n_u32(1 << 23); local
143 // ( half+sumA*scale half+sumR*scale half+sumG*scale half+sumB*scale )
144 uint32x4_t result = vmlaq_u32(half, sum, scale);
  /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/chromium_org/third_party/freetype/src/base/
fttrigon.c 381 FT_Int32 half = (FT_Int32)1L << ( shift - 1 ); local
384 vec->x = ( v.x + half + FT_SIGN_LONG( v.x ) ) >> shift;
385 vec->y = ( v.y + half + FT_SIGN_LONG( v.y ) ) >> shift;
  /external/chromium_org/third_party/skia/src/utils/
SkCullPoints.cpp 207 const SkScalar half = SK_ScalarHalf; local
209 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 27 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
111 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
178 _EIGEN_DECLARE_CONST_Packet2d(half, 0.5);
262 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
363 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
453 Packet4f half = pmul(_x, pset1<Packet4f>(.5f)); local
459 x = pmul(x, psub(pset1<Packet4f>(1.5f), pmul(half, pmul(x,x))));
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixMatrix.h 169 Index half = (std::min)(end_k,j2); local
170 for(Index k=k2; k<half; k++)
176 if(half==j2 && half<k2+rows)
182 half--;
185 for(Index k=half+1; k<k2+rows; k++)
  /external/freetype/src/base/
fttrigon.c 381 FT_Int32 half = (FT_Int32)1L << ( shift - 1 ); local
384 vec->x = ( v.x + half + FT_SIGN_LONG( v.x ) ) >> shift;
385 vec->y = ( v.y + half + FT_SIGN_LONG( v.y ) ) >> shift;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
SorterTemplate.java 147 int half = len / 2; local
148 int mid= lo + half;
151 len = len - half -1;
153 len = half;
162 int half = len / 2; local
163 int mid = lo + half;
165 len = half;
168 len = len - half -1;
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/arm64/
ComplexToRealFixup.S 96 #define half v0.2s define
157 fmov half, #0.5
188 fmul dT0,dT0,half[0]
189 fmul dT1,dT1,half[0]
211 fmul dX1r,qT0,half[0]
212 fmul dX1i,qT1,half[0]
222 fmul dX0r,qT2,half[0]
223 fmul dX0i,qT3,half[0]
armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S 114 #define half v13.2s define
118 fmov half, 0.5
143 fmul dY0, dY0, half[0]
144 fmul dY1, dY1, half[0]
204 fmul dT2, dT2, half[0]
205 fmul dT3, dT3, half[0]
207 fmul dT0, dT0, half[0]
208 fmul dT1, dT1, half[0]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S 97 //@ half = 0.5
98 #define half s15 define
106 @// Initialize half now.
109 vmov.f32 half, N @// half = 0.5
158 vmul.f32 x0r, half
159 vmul.f32 x0i, half
207 vmul.f32 y1r, half
208 vmul.f32 y1i, half
209 vmul.f32 st4, half
    [all...]

Completed in 530 milliseconds

1 2 3