HomeSort by relevance Sort by last modified time
    Searched defs:c0 (Results 76 - 100 of 269) sorted by null

1 2 34 5 6 7 8 91011

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/
Primes.java 483 byte[] c0 = new byte[dLen];
488 hash(d, primeSeed, c0, 0);
494 int c = extract32(c0) ^ extract32(c1);
515 BigInteger c0 = rec.getPrime(); local
527 BigInteger c0x2 = c0.shiftLeft(1);
531 BigInteger c = tx2.multiply(c0).add(ONE);
542 c = tx2.multiply(c0).add(ONE);
563 if (c.gcd(z.subtract(ONE)).equals(ONE) && z.modPow(c0, c).equals(ONE))
  /external/clang/test/SemaCXX/
scope-check.cpp 80 C c0; local
97 C c0; local
117 C c0; local
227 C c0 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}} local
239 const C c0 = 17; local
242 const C &c2 = c0;
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 515 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
518 Scalar c0 = m(0,0)*m(1,1)*m(2,2) + Scalar(2)*m(1,0)*m(2,0)*m(2,1) - m(0,0)*m(2,1)*m(2,1) - m(1,1)*m(2,0)*m(2,0) - m(2,2)*m(1,0)*m(1,0); local
529 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
556 VectorType c0, c1; local
557 n0 = (c0 = representative.cross(mat.col((i0+1)%3))).squaredNorm();
559 if(n0>n1) res = c0/std::sqrt(n0);
  /external/eigen/unsupported/Eigen/src/SVD/
BDCSVD.h 375 RealScalar lambda, phi, c0, s0; local
429 c0 = 1;
434 c0 = alphaK * lambda / r0;
445 // we shift q1 at the left with a factor c0
446 m_naiveU.col(firstCol).segment( firstCol, k + 1) << (q1 * c0);
452 // q2 *= c0
453 m_naiveU.col(lastCol + 1).segment(firstCol + k + 1, n - k) *= c0;
463 // we shift q1 at the left with a factor c0
464 m_naiveU(0, firstCol) = (q1 * c0);
469 // q2 *= c0
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
BiDiConformanceTest.java 380 char c0, c1, c2; local
381 while(skipWhitespace() && (c0=line.charAt(lineIndex))!=';') {
385 if(c0=='L') {
398 } else if(c0=='R') {
411 } else if(c0=='E') {
421 } else if(c0=='A') {
429 } else if(c0=='C' && (lineIndex+1)<line.length() && line.charAt(lineIndex+1)=='S') {
431 } else if(c0=='B') {
437 } else if(c0=='S') {
439 } else if(c0=='W' && (lineIndex+1)<line.length() && line.charAt(lineIndex+1)=='S')
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
BiDiConformanceTest.java 376 char c0, c1, c2; local
377 while(skipWhitespace() && (c0=line.charAt(lineIndex))!=';') {
381 if(c0=='L') {
394 } else if(c0=='R') {
407 } else if(c0=='E') {
417 } else if(c0=='A') {
425 } else if(c0=='C' && (lineIndex+1)<line.length() && line.charAt(lineIndex+1)=='S') {
427 } else if(c0=='B') {
433 } else if(c0=='S') {
435 } else if(c0=='W' && (lineIndex+1)<line.length() && line.charAt(lineIndex+1)=='S')
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 251 int c0 = buf[len - 1]; local
253 isdigit(static_cast<unsigned char>(c0))) {
256 buf[len - 2] = c0;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 77 int c0 = c; local
78 int c1 = c0 + dcdy;
82 mask |= ((c0 + 0 * dcdx) >> 31) & (1 << 0);
83 mask |= ((c0 + 1 * dcdx) >> 31) & (1 << 1);
84 mask |= ((c0 + 2 * dcdx) >> 31) & (1 << 2);
85 mask |= ((c0 + 3 * dcdx) >> 31) & (1 << 3);
  /external/opencv3/modules/features2d/src/
fast.cpp 134 __m128i c0 = _mm_setzero_si128(), c1 = c0, max0 = c0, max1 = c0; local
141 c0 = _mm_and_si128(_mm_sub_epi8(c0, m0), m0);
144 max0 = _mm_max_epu8(max0, c0);
  /external/skia/src/core/
SkColorMatrixFilterRowMajor255.cpp 88 // c0-c3 are already in [0,1].
89 const Sk4f c0 = Sk4f::Load(array + 0); local
117 Sk4f dst4 = c0 * r4 + c1 * g4 + c2 * b4 + c3 * a4 + c4;
  /external/skia/tests/
WritePixelsTest.cpp 138 unsigned c0 = SkGetPackedR32(color); local
141 c0 = SkMulDiv255Ceiling(c0, a);
144 return SkPackARGB32NoCheck(a, c0, c1, c2);
  /external/v8/src/
json-parser.cc 228 uint8_t c0 = input_chars[i]; local
229 if (c0 != expected_chars[i] || c0 == '"' || c0 < 0x20 || c0 == '\\') {
724 uc32 c0 = c0_; local
726 if (c0 == '\\') {
727 c0_ = c0;
733 if (c0 < 0x20) return Handle<String>::null();
735 static_cast<uint16_t>(c0));
    [all...]
  /external/webp/src/dsp/
alpha_processing_sse2.c 125 const __m128i c0 = _mm_packs_epi32(b0, b1); local
126 const __m128i d0 = _mm_packus_epi16(c0, c0);
  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.java 304 char[] c0 = new char[]{'a'}; local
307 char[] cr = mRemote.charArray(c0, c1, c2);
  /frameworks/base/rs/java/android/renderscript/
Matrix4f.java 404 int c0 = (i+1) % 4; local
411 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
413 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] -
415 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] -
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 405 int c0 = (i+1) % 4; local
412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
414 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] -
416 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] -
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 190 float[] c0 = Arrays.copyOf(c, 2); local
191 m0.mapPoints(c0);
192 if (!CropMath.inclusiveContains(outer, c0[0], c0[1])) {
280 float[] c0 = Arrays.copyOf(c, 2); local
281 m0.mapPoints(c0);
282 if (!CropMath.inclusiveContains(outer, c0[0], c0[1])) {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ScriptGroupTest.java 338 ScriptGroup.Closure c0 = local
346 c0.getReturn());
  /external/clang/test/Analysis/
pr22954.c 176 struct cc c0; local
177 c0.s2 = strdup("hello");
178 c0.s1 = &x[0];
180 memcpy(c0.s1, input, 4);
183 clang_analyzer_eval(c0.s1[0] == 'a'); // expected-warning{{UNKNOWN}}
184 clang_analyzer_eval(c0.s1[1] == 'b'); // expected-warning{{UNKNOWN}}
185 clang_analyzer_eval(c0.s1[2] == 'c'); // expected-warning{{UNKNOWN}}
186 clang_analyzer_eval(c0.s1[3] == 'd'); // expected-warning{{UNKNOWN}}
187 free(c0.s2); // no-warning
    [all...]
  /external/clang/test/Sema/
designated-initializers.c 199 char c0; variable
218 .double_ptr = &d0, &c0,
220 &c0,
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp 176 void renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
178 void renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
180 void renderQuad (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec2& p3, const Vec4& c0, const Vec4& c1, const Vec4& c2, const Vec4& c3) const;
303 void DefaultFBOMultisampleCase::renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
313 c0.x(), c0.y(), c0.z(), c0.w(),
352 void DefaultFBOMultisampleCase::renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
357 c0, c1, c2) local
    [all...]
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 486 Scalar c0 = nzcolQ ? tval(Qidx(0)) : Scalar(0); local
491 if(sqrNorm == RealScalar(0) && numext::imag(c0) == RealScalar(0))
493 beta = numext::real(c0);
499 beta = sqrt(numext::abs2(c0) + sqrNorm);
500 if(numext::real(c0) >= RealScalar(0))
504 tval(Qidx(itq)) /= (c0 - beta);
505 tau = numext::conj((beta-c0) / beta);
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 57 * C0 control codes and space are encoded with their US-ASCII bytes.
58 * "prev" is reset for C0 controls but not for space.
76 /* adjust trail byte counts for the use of some C0 control byte values */
130 * 12 commonly used C0 control codes (and space) are only used to encode
153 * The other 20 C0 controls are also encoded directly (to preserve order)
380 * ISO C0 control & space:
469 /* skip some C0 controls and make the trail byte range contiguous */
549 * Direct-encoded C0 control code or space.
550 * Reset prev for C0 control codes but not for space.
628 * Unpack a packed BOCU-1 non-C0/space byte sequence and ge
946 static const UChar c0[]={ 1, 0xe40, 0x20, 9 }; variable
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
b2Math.h 398 b2Vec2 c0, c; ///< center world positions member in struct:b2Sweep
402 /// c0 and a0 are the positions at alpha0.
698 xf->p = (1.0f - beta) * c0 + beta * c;
710 c0 += beta * (c - c0);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btRigidBody.h 404 btVector3 c0 = (r0).cross(normal); local
406 btVector3 vec = (c0 * getInvInertiaTensorWorld()).cross(r0);

Completed in 1230 milliseconds

1 2 34 5 6 7 8 91011