HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 226 - 250 of 793) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_ossl.c 311 BIGNUM u1,u2,t1; local
335 BN_init(&t1);
380 DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
381 /* BN_copy(&u1,&t1); */
383 if (!BN_mod(&u1,&t1,dsa->q,ctx)) goto err;
396 BN_free(&t1);
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec2_mult.c 86 BIGNUM *t1; local
91 t1 = BN_CTX_get(ctx);
92 if (t1 == NULL) goto err;
95 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
96 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
98 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err;
99 if (!group->meth->field_mul(group, t1, &group->b, t1, ctx)) goto err;
100 if (!BN_GF2m_add(x, x, t1)) goto err
118 BIGNUM *t1, *t2; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkCubicClipper.cpp 35 SkScalar t1 = ycrv[0] / (ycrv[0] - ycrv[3]); local
37 SkScalar t1 = SkDivBits(ycrv[0], ycrv[0] - ycrv[3], 16); local
47 t0 = t1;
57 t1 -= y0123 / yder;
59 t1 -= SkDivBits(y0123, yder, 16);
61 converged = SkScalarAbs(t1 - t0) <= tol; // NaN-safe
64 *t = t1; // Return the result.
68 if (t1 < 0 || t1 > SK_Scalar1)
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5.cpp 53 unsigned &t1 = (unsigned&) a->bitX; // expected-error {{non-const reference cannot bind to bit-field 'bitX'}} local
  /external/clang/test/CXX/expr/expr.post/expr.const.cast/
p1-0x.cpp 41 unsigned &t1 = const_cast<unsigned&>(a.foo(), a.ubf); // expected-error {{const_cast from bit-field lvalue to reference type}} local
  /external/clang/test/CodeGen/
attributes.c 39 // CHECK: define void @t1() [[NR:#[0-9]+]] {
40 void t1() __attribute__((noreturn));
41 void t1() { while (1) {} } function
builtins-nvptx.c 152 float t1 = __nvvm_fmax_f(f1, f2); local
complex.c 59 void t1() { function
libcalls-fno-builtin.c 31 double t1(double x) { return ceil(x); } function
32 // CHECK: t1
ms_struct-bitfield-1.c 10 } ATTR t1; variable in typeref:struct:__anon18305
11 static int a1[(sizeof(t1) == 8) -1];
  /external/clang/test/CodeGenCXX/
delete.cpp 3 void t1(int *a) { function
76 // CHECK-NEXT: [[T1:%.*]] = bitcast i8* [[ALLOC]] to i64*
77 // CHECK-NEXT: [[COUNT:%.*]] = load i64* [[T1]]
  /external/clang/test/Sema/
compound-literal.c 7 static struct foo t1 = __builtin_choose_expr(0, (struct foo){0,0}, (struct foo){0,0}); variable in typeref:struct:foo
missing-field-initializers.c 38 struct Three t1 = { variable in typeref:struct:Three
pragma-ms_struct.c 25 } __attribute__((__ms_struct__)) t1; variable in typeref:struct:__anon18721
thread-specifier.c 13 __thread int t1; variable
  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha256.c 74 ulong32 S[8], W[64], t0, t1; local
99 t1 = Sigma0(a) + Maj(a, b, c); \
101 h = t0 + t1;
111 t1 = Sigma0(a) + Maj(a, b, c); \
113 h = t0 + t1;
sha512.c 99 ulong64 S[8], W[80], t0, t1; local
121 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]);
129 S[0] = t0 + t1;
134 t1 = Sigma0(a) + Maj(a, b, c); \
136 h = t0 + t1;
  /external/dropbear/libtomcrypt/src/hashes/
tiger.c 39 #define t1 (table) macro
    [all...]
  /external/eigen/Eigen/src/Geometry/arch/
Geometry_SSE.h 77 Packet2d t1, t2; local
80 * t1 = ww*xy + yy*zw
82 * res.xy = t1 +/- swap(t2)
84 t1 = padd(pmul(a_ww, b_xy), pmul(a_yy, b_zw));
88 pstore(&res.x(), _mm_addsub_pd(t1, preverse(t2)));
90 pstore(&res.x(), padd(t1, pxor(mask,preverse(t2))));
94 * t1 = ww*zw - yy*xy
96 * res.zw = t1 -/+ swap(t2) = swap( swap(t1) +/- t2)
98 t1 = psub(pmul(a_ww, b_zw), pmul(a_yy, b_xy))
    [all...]
  /external/eigen/test/
geo_homogeneous.cpp 50 T1MatrixType t1 = T1MatrixType::Random(); local
51 VERIFY_IS_APPROX(t1 * (v0.homogeneous().eval()), t1 * v0.homogeneous());
52 VERIFY_IS_APPROX(t1 * (m0.colwise().homogeneous().eval()), t1 * m0.colwise().homogeneous());
  /external/fdlibm/
e_log.c 92 double hfsq,f,s,z,R,w,t1,t2,dk; local
127 t1= w*(Lg2+w*(Lg4+w*Lg6));
130 R = t2+t1;
  /external/freetype/src/autofit/
afwarp.h 37 FT_Pos t1, t2; member in struct:AF_WarperRec_
  /external/icu4c/tools/ctestfw/unicode/
utimer.h 201 double t1, t2; local
203 t1 = (double)timer1->start.tv_sec + (double)timer1->start.tv_usec/(1000*1000);
205 return (t2-t1);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_vbtmp.h 81 const GLuint t1 = GET_TEXSOURCE(1); local
82 tc1 = (GLuint (*)[4])VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->data;
83 tc1_stride = VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->stride;
84 if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->size < 3) {
87 else if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->size < 4) {
238 if (TCL_DEBUG) fprintf(stderr, "t1: %.2f %.2f ", v[0].f, v[1].f);
  /external/openssl/crypto/bn/asm/
x86_64-gcc.c 236 BN_ULONG t1,t2; local
243 t1=a[0]; t2=b[0];
244 r[0]=(t1-t2-c)&BN_MASK2;
245 if (t1 != t2) c=(t1 < t2);
248 t1=a[1]; t2=b[1];
249 r[1]=(t1-t2-c)&BN_MASK2;
250 if (t1 != t2) c=(t1 < t2);
253 t1=a[2]; t2=b[2]
355 BN_ULONG t1,t2; local
459 BN_ULONG t1,t2; local
499 BN_ULONG t1,t2; local
575 BN_ULONG t1,t2; local
    [all...]

Completed in 494 milliseconds

1 2 3 4 5 6 7 8 91011>>