HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 426 - 450 of 1329) sorted by null

<<11121314151617181920>>

  /external/openssl/crypto/jpake/
jpake.c 218 BIGNUM *t1 = BN_new(); local
225 /* t1 = g^b */
226 BN_mod_exp(t1, zkpg, p->zkpx.b, ctx->p.p, ctx->ctx);
229 /* t3 = t1 * t2 = g^{hx} * g^b = g^{hx+b} = g^r (allegedly) */
230 BN_mod_mul(t3, t1, t2, ctx->p.p, ctx->ctx);
241 BN_free(t1);
347 BIGNUM *t1 = BN_new(); local
352 * t1 = g^xa
354 BN_mod_exp(t1, ctx->p.g, ctx->xa, ctx->p.p, ctx->ctx);
355 /* t2 = t1 * g^{xc} = g^{xa} * g^{xc} = g^{xa + xc} *
383 BIGNUM *t1 = BN_new(); local
416 BIGNUM *t1 = BN_new(); local
    [all...]
  /external/opencv/cxcore/src/
cxcopy.cpp 125 type t1 = src[i*3+1]; \
129 dst[i*3+1] = t1; \
140 type t1 = src[i*4+1]; \
142 dst[i*4+1] = t1; \
145 t1 = src[i*4+3]; \
147 dst[i*4+3] = t1; \
759 type t1 = src[len - i - 1]; \
760 dst[i] = t1; \
769 type t1 = src[(len - i)*3 - 3]; \
770 dst[i*3] = t1; \
853 int t1 = ((int*)(src1 + i))[0]; local
880 int t1 = ((int*)(src1 + i))[0]; local
890 uchar t1 = src1[i]; local
    [all...]
cxconvert.cpp 71 arrtype t1 = (src)[1]; \
74 plane1[j] = t1; \
88 arrtype t1 = (src)[1]; \
92 plane1[j] = t1; \
108 arrtype t1 = (src)[1]; \
111 plane1[j] = t1; \
114 t1 = (src)[3]; \
117 plane3[j] = t1; \
133 arrtype t1 = (src)[(cn)]; \
136 (dst)[j+1] = t1; \
1694 double t1 = src[i+1]; local
1720 double t1 = src[i+1]; local
1745 double t1 = src[i+1]*a + b; local
1770 double t1 = src[i+1]*a + b; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha1-ppc.pl 58 $t1 ="r6";
84 andc $t1,$d,$b
86 or $t0,$t0,$t1
97 andc $t1,$d,$b
99 or $t0,$t0,$t1
151 or $t1,$b,$c
154 and $t1,$t1,$d
155 or $t0,$t0,$t1
208 subfic $t1,$inp,409
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-ppc.pl 58 $t1 ="r6";
84 andc $t1,$d,$b
86 or $t0,$t0,$t1
97 andc $t1,$d,$b
99 or $t0,$t0,$t1
151 or $t1,$b,$c
154 and $t1,$t1,$d
155 or $t0,$t0,$t1
208 subfic $t1,$inp,409
    [all...]
  /external/pixman/pixman/
pixman-mips-memcpy-asm.S 106 lw t1, 4(a1)
118 sw t1, 4(a0)
128 lw t1, 36(a1)
140 sw t1, 36(a0)
164 lw t1, 4(a1)
174 sw t1, 4(a0)
253 LWHI t1, 4(a1)
255 LWLO t1, 7(a1)
273 sw t1, 4(a0)
283 LWHI t1, 36(a1
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_core.c 785 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
976 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
    [all...]
  /external/openssh/
rijndael.c 859 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
1040 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
    [all...]
  /external/openssl/crypto/aes/
aes_core.c 785 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
976 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
    [all...]
  /external/qemu/
aes.c 889 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
1080 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
regdef.h 35 #define t1 $9 macro
90 #define t1 $13 macro
  /development/ndk/platforms/android-9/arch-mips/include/asm/
regdef.h 35 #define t1 $9 macro
90 #define t1 $13 macro
  /external/chromium_org/third_party/sqlite/src/test/
async2.test 34 CREATE TABLE t1(a PRIMARY KEY, b, c);
40 INSERT INTO t1 VALUES('abcdefghij', 'four', 'score');
94 SELECT * FROM t1;
106 SELECT * FROM t1;
  /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
  /external/clang/test/Sema/
expr-address-of.c 102 register struct {char* x;} t1 = {"Hello"}; local
103 char* dummy1 = &(t1.x[0]);
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 38 T t1; variable
42 t1 = t2;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorVoronoi.java 125 float t1 = (da[1] - da[0]) * 10.0f; local
126 if (t1 > 1.0f) {
127 t1 = 1.0f;
130 t1 *= texres.intensity;
132 t1 *= sc;
134 texres.red *= t1;
135 texres.green *= t1;
136 texres.blue *= t1;
  /external/kernel-headers/original/asm-mips/
regdef.h 29 #define t1 $9 macro
76 #define t1 $13 macro
  /ndk/sources/cxx-stl/gabi++/tests/
dynamic_cast_stress.cpp 62 auto t1 = Clock::now(); local
63 std::cout << US(t1-t0).count() << " microseconds\n";
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
atan.pass.cpp 42 std::complex<double> t1(-imag(x[i]), real(x[i]));
43 std::complex<double> t2 = atanh(t1);
cos.pass.cpp 43 std::complex<double> t1(-imag(x[i]), real(x[i]));
44 std::complex<double> z = cosh(t1);
sin.pass.cpp 43 std::complex<double> t1(-imag(x[i]), real(x[i]));
44 std::complex<double> t2 = sinh(t1);
tan.pass.cpp 44 std::complex<double> t1(-imag(x[i]), real(x[i]));
45 std::complex<double> t2 = tanh(t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
notify_all.pass.cpp 50 std::thread t1(f1);
63 t1.join();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
notify_all.pass.cpp 54 std::thread t1(f1);
67 t1.join();

Completed in 1480 milliseconds

<<11121314151617181920>>