Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/tests/unit/
Dtest_timer.cpp595 Time t2; in TestTimerTime() local
606 t2 = t1; in TestTimerTime()
609 VerifyOrQuit(t1 == t2, "Time == failed."); in TestTimerTime()
610 VerifyOrQuit(!(t1 != t2), "Time != failed."); in TestTimerTime()
611 VerifyOrQuit(!(t1 < t2), "Time < failed."); in TestTimerTime()
612 VerifyOrQuit((t1 <= t2), "Time <= failed."); in TestTimerTime()
613 VerifyOrQuit(!(t1 > t2), "Time > failed."); in TestTimerTime()
614 VerifyOrQuit((t1 >= t2), "Time >= failed."); in TestTimerTime()
615 VerifyOrQuit(t2 - t1 == 0, "Time difference failed"); in TestTimerTime()
617 t2 = t1 + duration; in TestTimerTime()
[all …]
Dtest_meshcop.cpp119 MeshCoP::Timestamp t2; in TestTimestamp() local
134 t2.SetToInvalid(); in TestTimestamp()
135 VerifyOrQuit(!t2.IsValid()); in TestTimestamp()
136 VerifyOrQuit(MeshCoP::Timestamp::Compare(t2, t2) == 0); in TestTimestamp()
138 t2.ConvertTo(info); in TestTimestamp()
143 VerifyOrQuit(MeshCoP::Timestamp::Compare(t1, t2) > 0); in TestTimestamp()
144 VerifyOrQuit(MeshCoP::Timestamp::Compare(t2, t1) < 0); in TestTimestamp()
146 t2 = t1; in TestTimestamp()
147 VerifyOrQuit(MeshCoP::Timestamp::Compare(t1, t2) == 0); in TestTimestamp()
148 VerifyOrQuit(t2.IsValid()); in TestTimestamp()
[all …]
/openthread-latest/third_party/mbedtls/repo/3rdparty/p256-m/p256-m/
Dp256-m.c924 uint32_t t1[8], t2[8], t3[8]; in point_add() local
930 m256_mul_p(t2, t1, z1); in point_add()
934 m256_mul_p(t2, t2, y2); in point_add()
940 m256_sub_p(t2, t2, y1); in point_add()
953 m256_mul_p(x1, t2, t2); in point_add()
960 m256_mul_p(t3, t3, t2); in point_add()
/openthread-latest/third_party/mbedtls/repo/3rdparty/everest/library/
DHacl_Curve25519.c442 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_first_carry_pass() local
447 uint64_t t2_ = t2 + (t1_ >> (uint32_t)51U); in Hacl_EC_Format_fcontract_first_carry_pass()
470 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_second_carry_pass() local
475 uint64_t t2_ = t2 + (t1_ >> (uint32_t)51U); in Hacl_EC_Format_fcontract_second_carry_pass()
533 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_store() local
537 uint64_t o1 = t2 << (uint32_t)38U | t1 >> (uint32_t)13U; in Hacl_EC_Format_fcontract_store()
538 uint64_t o2 = t3 << (uint32_t)25U | t2 >> (uint32_t)26U; in Hacl_EC_Format_fcontract_store()
/openthread-latest/third_party/mbedtls/repo/3rdparty/everest/library/legacy/
DHacl_Curve25519.c487 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_first_carry_pass() local
492 uint64_t t2_ = t2 + (t1_ >> (uint32_t)51U); in Hacl_EC_Format_fcontract_first_carry_pass()
515 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_second_carry_pass() local
520 uint64_t t2_ = t2 + (t1_ >> (uint32_t)51U); in Hacl_EC_Format_fcontract_second_carry_pass()
578 uint64_t t2 = input[2U]; in Hacl_EC_Format_fcontract_store() local
582 uint64_t o1 = t2 << (uint32_t)38U | t1 >> (uint32_t)13U; in Hacl_EC_Format_fcontract_store()
583 uint64_t o2 = t3 << (uint32_t)25U | t2 >> (uint32_t)26U; in Hacl_EC_Format_fcontract_store()
/openthread-latest/third_party/mbedtls/repo/library/
Dx509.c1037 const mbedtls_x509_time *t2) in mbedtls_x509_time_cmp() argument
1042 ((t2->year << 9) | (t2->mon << 5) | (t2->day))); in mbedtls_x509_time_cmp()
1048 ((t2->hour << 12) | (t2->min << 6) | (t2->sec))); in mbedtls_x509_time_cmp()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dx509.h385 int mbedtls_x509_time_cmp(const mbedtls_x509_time *t1, const mbedtls_x509_time *t2);