HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 151 - 175 of 1224) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/openssl/crypto/sha/asm/
sha512-ia64.pl 120 T1=r24; T2=r25;
121 s0=r26; s1=r27; t0=r28; t1=r29;
197 $t0="t0", $t1="t1", $code.=<<___ if ($BITS==32);
205 dep.z $t1=E,32,32 }
209 { .mii; or $t1=$t1,E
212 { .mmi; and T1=F,E
219 xor T1=T1,r8 // T1=((e & f) ^ (~e & g)
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/sha/asm/
sha1-armv4-large.pl 68 $t1="r10";
78 ldr $t1,[$Xi,#13*4]
82 eor $t0,$t0,$t1
84 eor $t1,$c,$d @ F_xx_xx
99 ldrb $t1,[$inp,#2]
104 orr $t0,$t0,$t1,lsl#8
105 eor $t1,$c,$d @ F_xx_xx
112 eor $t1,$c,$d @ F_xx_xx
118 and $t1,$b,$t1,ror#
    [all...]
  /external/fio/crc/
sha512.c 107 uint64_t a, b, c, d, e, f, g, h, t1, t2; local
124 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[i ];
125 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2;
126 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[i+1];
127 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2;
128 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[i+2];
129 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/mips/lib/
memset.S 80 LONG_SLL t1, a1, 8
81 or a1, t1
82 LONG_SLL t1, a1, 16
84 or a1, t1
85 LONG_SLL t1, a1, 32
87 or a1, t1
120 1: ori t1, a2, 0x3f /* # of full blocks */
121 xori t1, 0x3f
122 beqz t1, .Lmemset_partial /* no block to fill */
125 PTR_ADDU t1, a0 /* end address *
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_log.h 90 double hfsq,s,z,R,w,t1,t2; local
95 t1= w*(Lg2+w*(Lg4+w*Lg6));
97 R = t2+t1;
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
cross_correlation_mips.c 21 int32_t t0 = 0, t1 = 0, t2 = 0, t3 = 0, sum = 0; local
43 "lh %[t1], 0(%[pseq2]) \n\t"
46 "mul %[t0], %[t0], %[t1] \n\t"
71 "lh %[t1], 0(%[pseq2]) \n\t"
74 "mul %[t0], %[t0], %[t1] \n\t"
86 "lh %[t1], 0(%[pseq2]) \n\t"
87 "mul %[t0], %[t0], %[t1] \n\t"
96 : [step_seq2] "+r" (step_seq2), [t0] "=&r" (t0), [t1] "=&r" (t1),
  /external/chromium_org/tools/profile_chrome/
trace_packager_unittest.py 14 t1 = {'traceEvents': [{'ts': 123, 'ph': 'b'}]}
22 f1.write(json.dumps(t1))
34 self.assertEquals(output['traceEvents'], t1['traceEvents'])
  /external/clang/test/SemaTemplate/
function-template-specialization.cpp 40 template <typename T> bool f0(T &t1);
41 template <> bool f0<float>(float &t1);
43 template <> bool PR5833::f0<float>(float &t1) {}
  /external/compiler-rt/test/tsan/
load_shared_lib.cc 43 pthread_t t1, t2; local
44 pthread_create(&t1, NULL, access_callback, (void*)1);
46 pthread_join(t1, NULL);
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 32 time_point t1; local
36 t1 = Clock::now();
38 ns d = t1 - t0 - ms(250);
mutex.fail.cpp 32 time_point t1; local
35 t1 = Clock::now();
37 ns d = t1 - t0 - ms(250);
mutex.pass.cpp 32 time_point t1; local
35 t1 = Clock::now();
37 ns d = t1 - t0 - ms(250);
  /external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 32 time_point t1; local
35 t1 = Clock::now();
37 ns d = t1 - t0 - ms(250);
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
copy.fail.cpp 59 std::thread t1 = t0; local
60 assert(t1.get_id() == id);
62 t1.join();
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
get_id.pass.cpp 48 std::thread t1; local
49 std::thread::id id1 = t1.get_id();
51 assert(t1.get_id() == std::thread::id());
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_move_pair.pass.cpp 45 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1;
48 T1 t1(std::allocator_arg, A1<int>(5), std::move(t0));
50 assert(std::get<0>(t1) == 2);
51 assert(std::get<1>(t1)->id_ == 3);
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
make_tuple.pass.cpp 43 constexpr auto t1 = std::make_tuple(0, 1, 3.14); local
44 constexpr int i1 = std::get<1>(t1);
45 constexpr double d1 = std::get<2>(t1);
  /external/llvm/unittests/Support/
ManagedStatic.cpp 50 pthread_t t1, t2; local
51 pthread_create(&t1, &a1, test1::helper, nullptr);
53 pthread_join(t1, nullptr);
  /external/chromium_org/sync/internal_api/public/util/
immutable.h 206 static void Swap(T* t1, T* t2) {
210 swap(*t1, *t2);
218 static void Swap(T* t1, T* t2) {
219 t1->swap(*t2);
227 static void Swap(T* t1, T* t2) {
228 t1->Swap(t2);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.h 49 SkDQuad subDivide(double t1, double t2) const;
50 static SkDQuad SubDivide(const SkPoint a[3], double t1, double t2) {
53 return quad.subDivide(t1, t2);
55 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const;
57 double t1, double t2) {
60 return quad.subDivide(a, c, t1, t2);
  /bionic/libc/arch-mips/include/machine/
regdef.h 58 #define t1 $13 macro
63 #define t1 $9 macro
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regdef.h 58 #define t1 $13 macro
63 #define t1 $9 macro
  /development/ndk/platforms/android-L/arch-mips/include/machine/
regdef.h 58 #define t1 $13 macro
63 #define t1 $9 macro
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
cmp.c 64 BN_ULONG t1, t2, *ap, *bp; local
74 t1 = ap[i];
76 if (t1 != t2) {
77 return (t1 > t2) ? 1 : -1;
87 BN_ULONG t1, t2; local
121 t1 = a->d[i];
123 if (t1 > t2) {
125 } if (t1 < t2) {
  /external/clang/test/CodeGenCXX/
member-functions.cpp 71 T t1, t2; local
74 T result = t1 + t2;

Completed in 458 milliseconds

1 2 3 4 5 67 8 91011>>