Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 23 of 23) sorted by relevance

/system/bt/stack/smp/
Dp_256_ecc_pp.c46 DWORD t1[KEY_LENGTH_DWORDS_P256]; in ECC_Double() local
65 multiprecision_mersenns_squa_mod(t1, z1, keyLength); // t1=z1^2 in ECC_Double()
66 multiprecision_sub_mod(t2, x1, t1, keyLength); // t2=x1-t1 in ECC_Double()
67 multiprecision_add_mod(t1, x1, t1, keyLength); // t1=x1+t1 in ECC_Double()
68 multiprecision_mersenns_mult_mod(t2, t1, t2, keyLength); // t2=t2*t1 in ECC_Double()
83 multiprecision_lshift_mod(t1, t3, keyLength); // t1=2t3 in ECC_Double()
84 multiprecision_sub_mod(x3, x3, t1, keyLength); // x3=x3-t1 in ECC_Double()
85 multiprecision_sub_mod(t1, t3, x3, keyLength); // t1=t3-x3 in ECC_Double()
86 multiprecision_mersenns_mult_mod(t1, t1, t2, keyLength); // t1=t1*t2 in ECC_Double()
87 multiprecision_sub_mod(y3, t1, y3, keyLength); // y3=t1-y3 in ECC_Double()
[all …]
Daes.c532 { uint_8t tt, t0, t1, t2, t3; local
535 t1 = ctx->ksch[cc - 3];
541 t0 = s_box(t1) ^ rc;
542 t1 = s_box(t2);
550 t1 = s_box(t1);
556 ctx->ksch[cc + 1] = ctx->ksch[tt + 1] ^ t1;
/system/bt/osi/test/
Dtime_test.cpp42 uint32_t t1 = time_get_os_boottime_ms();
43 ASSERT_TRUE(t1 > 0);
52 uint32_t t1 = time_get_os_boottime_ms(); in TEST_F() local
54 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST_F()
69 uint32_t t1 = time_get_os_boottime_ms(); in TEST_F() local
74 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_MS); in TEST_F()
75 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS); in TEST_F()
/system/core/libpixelflinger/arch-mips64/
Dcol32cb16blend.S29 dext $t1,\src,\shift+5,6
31 dextu $t1,\src,\shift+5,6
33 mul $t1,$t1,\f
44 srl $t1,$t1,8
47 addu $t1,$t1,\sG
50 sll $t1,$t1,5
52 or \dreg,\dreg,$t1
Dt32cb16blend.S111 lw $t1,4($a1)
116 or $a7,$t0,$t1
124 pixel $a7,$t1,$a5,16
130 lw $t1,-4($a1)
133 or $a7,$t0,$t1
141 pixel $a7,$t1,$a5,16
/system/sepolicy/
Dmls23 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject);
27 (l1 dom l2 or t1 == mlstrustedsubject);
31 (l1 eq l2 or t1 == mlstrustedsubject);
40 ((h1 eq h2 and l1 eq l2) or t1 == mlstrustedsubject);
45 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
50 (l1 eq l2 or t1 == mlstrustedsubject or t2 == mlstrustedsubject);
60 (l2 eq h2 and (l1 eq l2 or t1 == mlstrustedsubject));
70 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject);
72 (t2 != app_data_file or l1 eq l2 or t1 == mlstrustedsubject);
81 (t2 == app_data_file or l1 dom l2 or t1 == mlstrustedsubject or t2 == mlstrustedobject);
[all …]
/system/core/libpixelflinger/arch-mips/
Dcol32cb16blend.S78 ext $t1,$a1,19,5 /* sB */
84 srl $t1, $a1, 19
85 andi $t1, 0x1f /* sB */
97 pixel $t2 $t7 $v0 $a3 $t0 $t1 0
98 pixel $t3 $t7 $v0 $a3 $t0 $t1 16
105 pixel $t7 $t8 $v0 $a3 $t0 $t1 0
106 pixel $t3 $t8 $v0 $a3 $t0 $t1 16
128 pixel $t2 $t7 $v0 $a3 $t0 $t1 0
Dt32cb16blend.S200 pixel $t3,$t4,$t1,0
201 sh $t1,-2($a0)
224 pixel $t3,$t4,$t1,0
225 andi $t1, 0xFFFF
226 pixel $t3,$t5,$t1,16
227 sw $t1,-8($a0)
241 pixel $t3,$t4,$t1,0
242 andi $t1, 0xFFFF
243 pixel $t3,$t5,$t1,16
244 sw $t1,-4($a0)
[all …]
/system/core/libpixelflinger/tests/codegen/
Dcodegen.cpp43 static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1) in ggl_test_codegen() argument
52 needs.t[1] = t1; in ggl_test_codegen()
90 uint32_t t1; in main() local
91 sscanf(argv[1], "%08x:%08x_%08x_%08x", &p, &n, &t0, &t1); in main()
92 ggl_test_codegen(n, p, t0, t1); in main()
/system/core/fastboot/
Dusbtest.cpp94 long long t0, t1; in test_null() local
103 t1 = NOW(); in test_null()
104 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0)); in test_null()
112 long long t0, t1; in test_zero() local
121 t1 = NOW(); in test_zero()
122 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0)); in test_zero()
/system/extras/tests/timetest/
Dtimetest.c61 struct timespec t1, dtmin, dtminp, dtmax; in main() local
77 clock_gettime(clock_id, &t1); in main()
82 dt = ts_sub(t, t1); in main()
83 t1 = t; in main()
/system/extras/tests/pftest/
Dpftest.c101 unsigned long long t1 = stop_watch(); in main() local
105 printf("%d, %f\n", numPages, (float) (t1 - t0) / WORKLOAD); in main()
/system/core/libpixelflinger/tests/arch-mips64/assembler/
Dasm_mips_test_jacket.S65 ld $t1, 104($s1)
82 sd $t1, 104($s1)
/system/core/libmincrypt/
Dsha256.c92 uint32_t t1 = H + s1 + ch + K[t] + W[t]; in SHA256_Transform() local
97 E = D + t1; in SHA256_Transform()
101 A = t1 + t2; in SHA256_Transform()
/system/extras/tests/tcp_nuke_addr/
Dtcp_nuke_addr_test.cpp146 std::thread t1(progressThread, &attempts); in main() local
147 t1.join(); in main()
/system/update_engine/
Dunittest_key.pem5 HoNy5A6EKQLfLBuJoU/QoCufldmwlFaFDKl+Koos6R1QYJfCNZfgocrW1PIh+8t1
Domaha_request_action_unittest.cc1751 Time t1; in TEST_F() local
1752 Time::FromString("1/1/2012", &t1); in TEST_F()
1754 kPrefsUpdateFirstSeenAt, t1.ToInternalValue())); in TEST_F()
1772 ASSERT_TRUE(timestamp == t1.ToInternalValue()); in TEST_F()
/system/extras/perfprofd/quipper/base/
Dlogging.h250 template<class t1, class t2>
251 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) { in MakeCheckOpString()
283 template <class t1, class t2> \
284 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
/system/bt/osi/src/
Dalarm.c619 period_ms_t t1 = now(); in alarm_queue_ready() local
622 assert(t1 >= t0); in alarm_queue_ready()
623 period_ms_t delta = t1 - t0; in alarm_queue_ready()
/system/bt/stack/rfcomm/
Drfc_int.h95 UINT8 t1; member
Drfc_ts_frames.c716 p_rx_frame->u.pn.t1 = *p_data++; in rfc_process_mx_message()
/system/netd/tests/
Dnetd_test.cpp405 auto t1 = std::chrono::steady_clock::now(); in RunGetAddrInfoStressTest_Binder() local
407 std::chrono::duration<double>(t1 - t0).count()); in RunGetAddrInfoStressTest_Binder()
/system/core/libpixelflinger/codeflinger/
Dtexturing.cpp72 const int t1 = (parts.reload & 2) ? scratches.obtain() : 0; in init_iterated_color() local
87 parts.argb_dx[i].reg = (parts.reload & 2) ? t1 : obtainReg(); in init_iterated_color()