/external/speex/libspeex/ |
filters.c | 446 spx_word16_t *x2; local 450 x2=x+M-1; 465 y1k=ADD32(y1k,MULT16_16(a[j],ADD16(x[i+j],x2[i-j]))); 466 y2k=SUB32(y2k,MULT16_16(a[j],SUB16(x[i+j],x2[i-j]))); 468 y1k=ADD32(y1k,MULT16_16(a[j],ADD16(x[i+j],x2[i-j]))); 469 y2k=ADD32(y2k,MULT16_16(a[j],SUB16(x[i+j],x2[i-j]))); 477 void qmf_synth(const spx_word16_t *x1, const spx_word16_t *x2, const spx_word16_t *a, spx_word16_t *y, int N, int M, spx_word16_t *mem1, spx_word16_t *mem2, char *stack) 497 xx2[i] = x2[N2-1-i];
|
/external/tcpdump/ |
smbutil.c | 93 u_int32_t x, x2; local 96 x2 = ((x & 0xFFFF) << 16) | ((x & 0xFFFF0000) >> 16); 97 return int_unix_date(x2); 535 u_int32_t x1, x2; local 540 x2 = reverse ? EXTRACT_32BITS(buf + 4) : 542 x = (((u_int64_t)x1) << 32) | x2; [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastidct.cpp | 107 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 109 x2 = blk[16]; 114 x6 = W6 * x2; 115 x2 = W2 * x2; 116 x8 = x0 - x2; 117 x0 += x2; 118 x2 = x8; 132 blk[24] = (x2 + x3) >> 8; 136 blk[32] = (x2 - x3) >> 8 142 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 211 int32 x0, x2, x4, x6; local 261 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 373 int32 x0, x1, x2, x4, x5; local 432 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 502 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 578 int32 x1, x2, x4, x5; local 635 int32 x0, x2, x4, x6; local 746 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 869 int32 x0, x1, x2, x4, x5; local 924 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 990 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1063 int32 x1, x2, x4, x5; local 1118 int32 x0, x2, x4, x6; local 1223 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1369 int32 x0, x1, x2, x4, x5; local 1429 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1500 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local 1577 int32 x1, x2, x4, x5; local 1635 int32 x0, x2, x4, x6; local 1748 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local [all...] |
motion_comp.cpp | 1126 ULong x1, x2, x1m, x2m, y1, y2, y1m, y2m; \/* new way *\/ local [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlend.cpp | 115 uint32_t x2 = xend; local 119 for (;x1 < x2; x1++, out++) { 124 for (;x1 < x2; x1++, out++, in++) { 134 if((x1 + 8) < x2) { 135 uint32_t len = (x2 - x1) >> 3; 143 for (;x1 < x2; x1++, out++, in++) { 153 if((x1 + 8) < x2) { 154 uint32_t len = (x2 - x1) >> 3; 162 for (;x1 < x2; x1++, out++, in++) { 172 if((x1 + 8) < x2) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ResizeGesture.java | 173 int x2 = b.x + b.w; local 175 if (nx1 <= x2) { 177 w = x2 - x; 180 x = x2;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
TwofishEngine.java | 453 int x2 = BytesTo32Bits(src, srcIndex + 8) ^ gSubKeys[INPUT_WHITEN + 2]; local 462 x2 ^= t0 + t1 + gSubKeys[k++]; 463 x2 = x2 >>>1 | x2 << 31; 466 t0 = Fe32_0(x2); 473 Bits32ToBytes(x2 ^ gSubKeys[OUTPUT_WHITEN], dst, dstIndex); 490 int x2 = BytesTo32Bits(src, srcIndex) ^ gSubKeys[OUTPUT_WHITEN]; local 499 t0 = Fe32_0(x2); 508 x2 = (x2 << 1 | x2 >>> 31) ^ (t0 + t1 + gSubKeys[k--]) [all...] |
/external/chromium_org/content/common/gpu/client/ |
gl_helper_unittests.cc | 136 float x2 = x * x; local 137 float x3 = x2 * x; 139 return (a + 2) * x3 - (a + 3) * x2 + 1; 141 return a * x3 - 5 * a * x2 + 8 * a * x - 4 * a; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
PolygonShape.cpp | 242 float x2 = intersection2.point.x(); local 243 return (x1 == x2) ? intersection1.type < intersection2.type : x1 < x2; 322 previousInterval.setX2(std::max<float>(previousInterval.x2(), thisInterval.x2())); 340 float x2; local 351 x2 = intersection.point.x(); 353 x2 = (edge->vertex1().y() > edge->vertex2().y()) ? edge->vertex1().x() : edge->vertex2().x(); 356 if (x1 > x2) 357 std::swap(x1, x2); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i915_state.c | 515 int x1, y1, x2, y2; local 525 x2 = x + w - 1; 527 DBG("%s %d..%d,%d..%d (inverted)\n", __FUNCTION__, x1, x2, y1, y2); 534 x2 = x + w - 1; 536 DBG("%s %d..%d,%d..%d (not inverted)\n", __FUNCTION__, x1, x2, y1, y2); 541 x2 = CLAMP(x2, 0, ctx->DrawBuffer->Width - 1); 544 DBG("%s %d..%d,%d..%d (clamped)\n", __FUNCTION__, x1, x2, y1, y2); 548 i915->state.Buffer[I915_DESTREG_SR2] = (y2 << 16) | (x2 & 0xffff); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_noise.c | 259 float x1, y1, x2, y2; local 281 x2 = x0 - 1.0f + 2.0f * G2; /* Offsets for last corner in (x,y) unskewed coords */ 305 t2 = 0.5f - x2 * x2 - y2 * y2; 310 n2 = t2 * t2 * grad2(perm[ii + 1 + perm[jj + 1]], x2, y2); 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local 418 x2 = x0 - i2 + 2.0f * G3; /* Offsets for third corner in (x,y,z) coords */ 449 t2 = 0.6f - x2 * x2 - y2 * y2 - z2 * z2; 455 t2 * t2 * grad3(perm[ii + i2 + perm[jj + j2 + perm[kk + k2]]], x2, 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local [all...] |
/external/chromium_org/third_party/opus/src/src/ |
analysis.c | 119 float x2, y2; local 126 x2 = x*x; 128 if(x2<y2){ 129 float den = (y2 + cB*x2) * (y2 + cC*x2); 131 return -x*y*(y2 + cA*x2) / den + (y<0 ? -cE : cE); 135 float den = (x2 + cB*y2) * (x2 + cC*y2); 137 return x*y*(x2 + cA*y2) / den + (y<0 ? -cE : cE) - (x*y<0 ? -cE : cE);
|
/external/chromium_org/third_party/skia/src/effects/ |
SkBlurMask.cpp | 662 float x2 = x*x; local 663 float x3 = x2*x; 666 return 0.5625f - (x3 / 6.0f - 3.0f * x2 * 0.25f + 1.125f * x); 671 return 0.4375f + (-x3 / 6.0f - 3.0f * x2 * 0.25f - 1.125f * x); [all...] |
/external/chromium_org/ui/gfx/ |
transform_unittest.cc | 218 int x2; member in struct:gfx::__anon14954::TestCase 237 Point3F p2(value.x2, value.y2, 0); 279 int x2; member in struct:gfx::__anon14954::TestCase 297 Point3F p2(value.x2, value.y2, 0); 309 int x2; int y2; member in struct:gfx::__anon14954::TestCase 328 p2.SetPoint(value.x2, 0, 0); 338 p2.SetPoint(value.x2, value.y2, 0); 445 int x2; member in struct:gfx::__anon14954::TestCase 464 Point p2(value.x2, value.y2); 508 int x2; member in struct:gfx::__anon14954::TestCase 539 int x2; int y2; member in struct:gfx::__anon14954::TestCase [all...] |
/external/clang/test/Analysis/ |
dead-stores.c | 555 int x2 = (getInt(), getInt(), getInt()); //expected-warning{{Value stored to 'x2' during its initialization is never read}} // expected-warning{{unused variable 'x2'}} local
|
/external/clang/test/FixIt/ |
fixit.cpp | 74 int x2 *= 0; // expected-error {{invalid '*=' at end of declaration; did you mean '='?}} member in namespace:rdar8488464 93 int x2 *= 0; // expected-error {{invalid '*=' at end of declaration; did you mean '='?}} 94 (void)x2; 121 if (int x2 *= 0) { (void)x2; } // expected-error {{invalid '*=' at end of declaration; did you mean '='?}}
|
/external/clang/test/Index/ |
print-type-size.cpp | 92 struct x2{ struct in union:Incomplete::named
|
/external/clang/test/Sema/ |
conversion.c | 344 unsigned char x2 = u64 >> 56; local 348 return x1 + x2 + x3;
|
/external/clang/test/SemaCXX/ |
new-delete.cpp | 118 struct X2 { 123 void test_delete_conv(X0 x0, X1 x1, X2 x2) { 126 delete x2; // expected-error{{ambiguous conversion of delete expression of type 'X2' to a pointer}} 482 Foo2<Bar2> x2; member in namespace:PR12061
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans16_dspr2.c | 919 int x2 = input[13]; local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 246 int x2 = input[2]; local 249 if (!(x0 | x1 | x2 | x3)) { 257 s3 = sinpi_4_9 * x2; 258 s4 = sinpi_1_9 * x2; 261 s7 = x0 - x2 + x3; 265 x2 = sinpi_3_9 * s7; 270 s2 = x2; 319 int x2 = input[5]; local 326 if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7)) { 335 s2 = cospi_10_64 * x2 + cospi_22_64 * x3 643 int x2 = input[13]; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 108 int x0, x1, x2, x3; local 113 x2 = input[2]; 116 if (!(x0 | x1 | x2 | x3)) { 125 s4 = sinpi_3_9 * x2; 132 x2 = s1 - s3 + s6; 137 s2 = x2 - x3; 138 s3 = x2 - x0 + x3; 186 /*canbe16*/ int x0, x1, x2, x3; local 201 x2 = s1 - s2; 205 t2 = x2 * cospi_24_64 + x3 * cospi_8_64 244 \/*canbe16*\/ int x0, x1, x2, x3; local 370 \/*canbe16*\/ int x0, x1, x2, x3; local 489 int x2 = input[5]; local 675 \/*canbe16*\/ int x0, x1, x2, x3; local 791 int x2 = input[13]; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_state.c | 515 int x1, y1, x2, y2; local 525 x2 = x + w - 1; 527 DBG("%s %d..%d,%d..%d (inverted)\n", __FUNCTION__, x1, x2, y1, y2); 534 x2 = x + w - 1; 536 DBG("%s %d..%d,%d..%d (not inverted)\n", __FUNCTION__, x1, x2, y1, y2); 541 x2 = CLAMP(x2, 0, ctx->DrawBuffer->Width - 1); 544 DBG("%s %d..%d,%d..%d (clamped)\n", __FUNCTION__, x1, x2, y1, y2); 548 i915->state.Buffer[I915_DESTREG_SR2] = (y2 << 16) | (x2 & 0xffff); [all...] |
/external/mesa3d/src/mesa/program/ |
prog_noise.c | 259 float x1, y1, x2, y2; local 281 x2 = x0 - 1.0f + 2.0f * G2; /* Offsets for last corner in (x,y) unskewed coords */ 305 t2 = 0.5f - x2 * x2 - y2 * y2; 310 n2 = t2 * t2 * grad2(perm[ii + 1 + perm[jj + 1]], x2, y2); 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local 418 x2 = x0 - i2 + 2.0f * G3; /* Offsets for third corner in (x,y,z) coords */ 449 t2 = 0.6f - x2 * x2 - y2 * y2 - z2 * z2; 455 t2 * t2 * grad3(perm[ii + i2 + perm[jj + j2 + perm[kk + k2]]], x2, 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local [all...] |
/external/opencv/cv/src/ |
cvpyrsegmentation.cpp | 52 ushort x1, y1, x2, y2; member in struct:_CvRect16u 311 p_cur->rect.x2 = 0; 731 p_cur->rect.x2 = 0; [all...] |