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

12 3 4 5 6 7

  /external/qemu/
charpipe.c 29 * each half of the channel has its own object and buffer, and
70 /* this models each half of the charpipe */
453 CharPipeHalf* half; local
455 half = cp->a;
456 if (half->peer != NULL)
457 charpipehalf_poll(half);
459 half = cp->b;
460 if (half->peer != NULL)
461 charpipehalf_poll(half);
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 27 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
107 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
182 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
283 _EIGEN_DECLARE_CONST_Packet4f(half, 0.5f);
370 Packet4f half = pmul(_x, pset1<Packet4f>(.5f)); local
376 x = pmul(x, psub(pset1<Packet4f>(1.5f), pmul(half, pmul(x,x))));
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 32 * *dptr = (sum * scale + half) >> 24;
36 * *dptr = (sum * scale + half) >> 24;
40 * *dptr = (sum * scale + half) >> 24;
47 * *dptr = (sum * scale + half) >> 24;
52 * *dptr = (sum * scale + half) >> 24;
57 * *dptr = (sum * scale + half) >> 24;
75 uint32_t half = 1 << 23; local
77 uint32_t half = 0; local
90 *dptr = (sum * scale + half) >> 24; \
119 *dptr = (sum * scale + half) >> 24;
282 uint32_t half = 1 << 23; local
284 uint32_t half = 0; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkCullPoints.cpp 215 const SkScalar half = SK_ScalarHalf; local
217 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);
  /external/skia/src/effects/
SkBlurMask.cpp 32 * *dptr = (sum * scale + half) >> 24;
36 * *dptr = (sum * scale + half) >> 24;
40 * *dptr = (sum * scale + half) >> 24;
47 * *dptr = (sum * scale + half) >> 24;
52 * *dptr = (sum * scale + half) >> 24;
57 * *dptr = (sum * scale + half) >> 24;
75 uint32_t half = 1 << 23; local
77 uint32_t half = 0; local
90 *dptr = (sum * scale + half) >> 24; \
119 *dptr = (sum * scale + half) >> 24;
282 uint32_t half = 1 << 23; local
284 uint32_t half = 0; local
    [all...]
  /external/skia/src/utils/
SkCullPoints.cpp 215 const SkScalar half = SK_ScalarHalf; local
217 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TimeBar.java 161 int half = mScrubber.getWidth() / 2; local
162 int max = mProgressBar.right - half;
163 int min = mProgressBar.left - half;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 84 int half = outlen / 2; local
86 mPointData[i*8] = i - half; // start point X (Y set later)
89 mPointData[i*8+4] = i - half; // end point X (Y set later)
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 357 int half = n >>> 1; // loop while a non-leaf local
358 while (k < half) {
378 int half = n >>> 1; local
379 while (k < half) {
401 int half = (n >>> 1) - 1; local
404 for (int i = half; i >= 0; i--)
408 for (int i = half; i >= 0; i--)
  /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++)
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgamma_r.c 91 half= 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
275 r = half*y+p/q;
291 r = (x-half)*(t-one)+w;
e_lgammaf_r.c 24 half= 5.0000000000e-01, /* 0x3f000000 */ variable
208 r = half*y+p/q;
224 r = (x-half)*(t-one)+w;
s_erf.c 116 half= 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
264 r += (x-half);
265 return half - r ;
s_erff.c 24 half= 5.0000000000e-01, /* 0x3F000000 */ variable
173 r += (x-half);
174 return half - r ;
  /external/fdlibm/
e_lgamma_r.c 90 half= 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
282 r = half*y+p/q;
298 r = (x-half)*(t-one)+w;
s_erf.c 117 half= 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
273 r += (x-half);
274 return half - r ;
e_rem_pio2.c 73 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
125 n = (int) (t*invpio2+half);
  /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/chromium_org/v8/test/webkit/fast/regex/
toString.js 81 // The first half of this checks that:
84 // The second half checks that:
  /external/valgrind/main/none/tests/ppc32/
round.c 173 double half = (double)denorm_small/2; local
174 double qtr = half/2;
175 double D_hi = (double)*base + half + qtr;
176 double D_lo = (double)*base + half - qtr;
386 double qtr, half, fA, fB, fD; local
401 half = (double)whole/2;
402 qtr = half/2;
428 fB = s*(4+q)*half;
431 fA = s*(4+q)*half;
  /external/valgrind/main/none/tests/ppc64/
round.c 173 double half = (double)denorm_small/2; local
174 double qtr = half/2;
175 double D_hi = (double)*base + half + qtr;
176 double D_lo = (double)*base + half - qtr;
386 double qtr, half, fA, fB, fD; local
401 half = (double)whole/2;
402 qtr = half/2;
428 fB = s*(4+q)*half;
431 fA = s*(4+q)*half;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ffvertex_prog.c 1120 struct ureg half = undef; local
1371 struct ureg half = register_scalar_const(p, .5); local
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 1120 struct ureg half = undef; local
1371 struct ureg half = register_scalar_const(p, .5); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumWin.cpp 594 IntRect half = rect; local
598 half.setHeight(rect.height() / 2);
600 ThemePainter upPainter(info.context, half);
606 half.setY(rect.y() + rect.height() / 2);
608 ThemePainter downPainter(info.context, half);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java     [all...]

Completed in 742 milliseconds

12 3 4 5 6 7