Home
last modified time | relevance | path

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

/trueos/crypto/openssl/crypto/ec/
HDecp_nistp521.c44 typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit typedef
132 typedef uint128_t largefelem[NLIMBS];
388 static const uint128_t two127m70 = in felem_diff128()
389 (((uint128_t) 1) << 127) - (((uint128_t) 1) << 70); in felem_diff128()
390 static const uint128_t two127m69 = in felem_diff128()
391 (((uint128_t) 1) << 127) - (((uint128_t) 1) << 69); in felem_diff128()
428 out[0] = ((uint128_t) in[0]) * in[0]; in felem_square()
429 out[1] = ((uint128_t) in[0]) * inx2[1]; in felem_square()
430 out[2] = ((uint128_t) in[0]) * inx2[2] + ((uint128_t) in[1]) * in[1]; in felem_square()
431 out[3] = ((uint128_t) in[0]) * inx2[3] + ((uint128_t) in[1]) * inx2[2]; in felem_square()
[all …]
HDecp_nistp256.c44 typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit typedef
114 typedef uint128_t limb;
501 a = ((uint128_t) small[0]) * small[0]; in smallfelem_square()
507 a = ((uint128_t) small[0]) * small[1]; in smallfelem_square()
514 a = ((uint128_t) small[0]) * small[2]; in smallfelem_square()
521 a = ((uint128_t) small[0]) * small[3]; in smallfelem_square()
527 a = ((uint128_t) small[1]) * small[2]; in smallfelem_square()
534 a = ((uint128_t) small[1]) * small[1]; in smallfelem_square()
540 a = ((uint128_t) small[1]) * small[3]; in smallfelem_square()
547 a = ((uint128_t) small[2]) * small[3]; in smallfelem_square()
[all …]
HDecp_nistp224.c43 typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit typedef
74 typedef uint128_t widelimb;
/trueos/usr.sbin/bluetooth/sdpd/
HDuuid.c37 uint128_t uuid_base = {
47 uint128_t uuid_public_browse_group = {
HDuuid-private.h35 extern uint128_t uuid_base;
36 extern uint128_t uuid_public_browse_group;
HDssar.c63 uint128_t uuid, puuid; in server_prepare_service_search_attribute_response()
HDssr.c61 uint128_t uuid, puuid; in server_prepare_service_search_response()
/trueos/lib/libsdp/
HDsearch.c359 alen = sizeof(uint128_t); in sdp_search()
HDsdp.h291 typedef struct int128 uint128_t; typedef
/trueos/contrib/llvm/tools/lldb/source/Core/
HDRegisterValue.cpp627 const uint128_t mask = ~(sign_bit) + 1u; in SignExtend()