Searched defs:half (Results 1 - 25 of 56) sorted by relevance

123

/external/fdlibm/
H A De_cosh.c38 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;
H A Dk_sin.c49 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
73 else return x-((z*(half*y-v*r)-y)-v*S1);
H A De_rem_pio2.c73 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
125 n = (int) (t*invpio2+half);
/external/speex/libspeex/
H A Dvq_sse.h41 __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);
/external/eigen/test/
H A DsparseLM.cpp38 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;
90 int half = n/2; local
[all...]
H A DdenseLM.cpp39 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;
85 int half = n/2; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1Field.java60 public static void half(int[] x, int[] z) method in class:SecP192K1Field
H A DSecP192R1Field.java61 public static void half(int[] x, int[] z) method in class:SecP192R1Field
H A DSecP224K1Field.java61 public static void half(int[] x, int[] z) method in class:SecP224K1Field
H A DSecP224R1Field.java61 public static void half(int[] x, int[] z) method in class:SecP224R1Field
H A DSecP256K1Field.java62 public static void half(int[] x, int[] z) method in class:SecP256K1Field
H A DSecP256R1Field.java58 public static void half(int[] x, int[] z) method in class:SecP256R1Field
H A DSecP384R1Field.java64 public static void half(int[] x, int[] z) method in class:SecP384R1Field
H A DSecP521R1Field.java47 public static void half(int[] x, int[] z) method in class:SecP521R1Field
/external/deqp/framework/common/
H A DtcuBilinearImageCompare.cpp78 const deUint32 half = 1u<<(NUM_SUBPIXEL_BITS*2 - 1); local
80 const deUint32 rounded = (sum + half) >> (NUM_SUBPIXEL_BITS*2);
H A DtcuFloat.hpp285 deUint64 half = (1ull << (bitDiff - 1)) - 1; local
288 return Float(StorageType(s | (m + half + bias) >> bitDiff));
302 deUint64 half = (1ull << (bitDiff - 1)) - 1; local
305 m = (m + half + bias) >> bitDiff;
/external/eigen/Eigen/src/Core/arch/SSE/
H A DMathFunctions.h27 _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/freetype/src/base/
H A Dfttrigon.c407 FT_Int32 half = (FT_Int32)1L << ( shift - 1 ); local
410 vec->x = ( v.x + half + FT_SIGN_LONG( v.x ) ) >> shift;
411 vec->y = ( v.y + half + FT_SIGN_LONG( v.y ) ) >> shift;
/external/pdfium/third_party/freetype/src/base/
H A Dfttrigon.c406 FT_Int32 half = (FT_Int32)1L << ( shift - 1 ); local
409 vec->x = ( v.x + half + FT_SIGN_LONG( v.x ) ) >> shift;
410 vec->y = ( v.y + half + FT_SIGN_LONG( v.y ) ) >> shift;
/external/skia/src/opts/
H A DSkBlurImage_opts_SSE2.cpp45 const __m128i half = _mm_set1_epi32(1 << 23); local
66 result = _mm_add_epi32(result, half);
H A DSkBlurImage_opts_SSE4.cpp47 const __m128i half = _mm_set1_epi32(1 << 23); local
61 // Multiply each component by scale (i.e. divide by kernel size) and add half to round.
63 result = _mm_add_epi32(result, half);
H A DSkBlurImage_opts_neon.cpp124 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/Eigen/src/Core/products/
H A DSelfadjointMatrixMatrix.h169 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/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_sf_emit.c47 * Determine the vert_result corresponding to the given half of the given
48 * register. half=0 means the first half of a register, half=1 means the
49 * second half.
52 int half)
54 int vue_slot = (reg + c->urb_entry_read_offset) * 2 + half;
51 vert_reg_to_vert_result(struct brw_sf_compile *c, GLuint reg, int half) argument
/external/skia/src/utils/
H A DSkCullPoints.cpp207 const SkScalar half = SK_ScalarHalf; local
209 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);

Completed in 447 milliseconds

123