Home
last modified time | relevance | path

Searched refs:uint128_t (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/ec/
Dp256-64.c40 typedef __uint128_t uint128_t; typedef
89 typedef uint128_t limb;
423 a = ((uint128_t)small[0]) * small[0]; in smallfelem_square()
429 a = ((uint128_t)small[0]) * small[1]; in smallfelem_square()
436 a = ((uint128_t)small[0]) * small[2]; in smallfelem_square()
443 a = ((uint128_t)small[0]) * small[3]; in smallfelem_square()
449 a = ((uint128_t)small[1]) * small[2]; in smallfelem_square()
456 a = ((uint128_t)small[1]) * small[1]; in smallfelem_square()
462 a = ((uint128_t)small[1]) * small[3]; in smallfelem_square()
469 a = ((uint128_t)small[2]) * small[3]; in smallfelem_square()
[all …]
/external/valgrind/memcheck/tests/vbit-test/
Dvbits.h9 typedef uint64_t uint128_t[2]; typedef
20 uint128_t u128;
34 uint128_t u128;
/external/boringssl/src/crypto/poly1305/
Dpoly1305_vec.c36 typedef unsigned __int128 uint128_t; typedef
44 static uint128_t INLINE add128(uint128_t a, uint128_t b) { return a + b; } in add128()
46 static uint128_t INLINE add128_64(uint128_t a, uint64_t b) { return a + b; } in add128_64()
48 static uint128_t INLINE mul64x64_128(uint64_t a, uint64_t b) { in mul64x64_128()
49 return (uint128_t)a * b; in mul64x64_128()
52 static uint64_t INLINE lo128(uint128_t a) { return (uint64_t)a; } in lo128()
54 static uint64_t INLINE shr128(uint128_t v, const int shift) { in shr128()
59 return (uint64_t)((((uint128_t)hi << 64) | lo) >> shift); in shr128_pair()
194 uint128_t d[3]; in poly1305_first_block()
771 uint128_t d[3]; in CRYPTO_poly1305_finish()
/external/lldb/source/Core/
DRegisterValue.cpp627 const uint128_t mask = ~(sign_bit) + 1u; in SignExtend()