Searched defs:t2 (Results 1 - 6 of 6) sorted by relevance

/system/bt/osi/test/
H A Dtime_test.cc59 uint32_t t2 = time_get_os_boottime_ms(); local
60 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS);
69 uint64_t t2 = time_get_os_boottime_us(); local
70 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000);
87 uint32_t t2 = time_get_os_boottime_ms(); local
90 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_MS);
91 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS);
108 uint64_t t2 = time_get_os_boottime_us(); local
111 ASSERT_TRUE(t2 > t1);
112 ASSERT_TRUE((t2
130 uint64_t t2 = time_gettimeofday_us(); local
148 uint64_t t2 = time_gettimeofday_us(); local
[all...]
/system/hwservicemanager/
H A DTokenManager.cpp131 bool TokenManager::constantTimeCompare(const hidl_vec<uint8_t> &t1, const hidl_vec<uint8_t> &t2) { argument
132 if (t1.size() != t2.size()) {
138 x |= t1[i] ^ t2[i];
/system/bt/stack/smp/
H A Dp_256_ecc_pp.cc43 uint32_t t2[KEY_LENGTH_DWORDS_P256]; local
65 multiprecision_sub_mod(t2, x1, t1, keyLength); // t2=x1-t1
67 multiprecision_mersenns_mult_mod(t2, t1, t2, keyLength); // t2=t2*t1
68 multiprecision_lshift_mod(t3, t2, keyLength);
69 multiprecision_add_mod(t2, t3, t2, keyLengt
92 uint32_t t2[KEY_LENGTH_DWORDS_P256]; local
[all...]
H A Daes.cc567 uint_8t tt, t0, t1, t2, t3; local
571 t2 = ctx->ksch[cc - 2];
576 t1 = s_box(t2);
577 t2 = s_box(t3);
583 t2 = s_box(t2);
589 ctx->ksch[cc + 2] = ctx->ksch[tt + 2] ^ t2;
/system/update_engine/
H A Domaha_request_action_unittest.cc2081 Time t1, t2; local
2083 Time::FromString("1/3/2012", &t2);
2086 fake_system_state_.fake_clock()->SetWallclockTime(t2);
/system/nfc/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c608 clock_t t1, t2; local
627 t2 = clock();
628 perf_update(&perf_poll, t2 - t1, 0);
629 if (_poll_t0) perf_update(&perf_poll_2_poll, t2 - _poll_t0, 0);
631 _poll_t0 = t2;
649 t2 = clock();
651 if (ret > 0) perf_update(&perf_read, clock() - t2, ret);

Completed in 450 milliseconds