Searched refs:u128 (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/poly1305/
H A Dpoly1305_base2_44.c21 typedef unsigned __int128 u128; typedef
88 u128 d0, d1, d2;
114 d0 = ((u128)h0 * r0) + ((u128)h1 * s2) + ((u128)h2 * s1);
115 d1 = ((u128)h0 * r1) + ((u128)h1 * r0) + ((u128)h2 * s2);
116 d2 = ((u128)h0 * r2) + ((u128)h
[all...]
H A Dpoly1305.c102 typedef __uint128_t u128; typedef
156 u128 d0, d1;
169 h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0));
170 h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8));
178 d0 = ((u128)h0 * r0) +
179 ((u128)h1 * s1);
180 d1 = ((u128)h0 * r1) +
181 ((u128)h1 * r0) +
221 u128 t;
229 g0 = (u64)(t = (u128)h
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-tra.c558 result.u128.data = cvmx_read_csr(address);
559 result.u128.datahi = cvmx_read_csr(address);
565 result.u128.data = cvmx_read_csr(address);
566 result.u128.datahi = cvmx_read_csr(CVMX_TRA_READ_DAT_HI);
570 result.u128.data = cvmx_read_csr(address);
571 result.u128.datahi = 0;
588 result.u128.data = cvmx_read_csr(CVMX_TRAX_READ_DAT(tra_unit));
589 result.u128.datahi = cvmx_read_csr(CVMX_TRAX_READ_DAT_HI(tra_unit));
620 (unsigned long long)data.u128.data,
633 (unsigned long long)data.u128
[all...]
H A Dcvmx-tra.h378 } u128; member in union:__anon10356
/freebsd-13-stable/crypto/openssl/crypto/modes/
H A Dgcm128.c78 static void gcm_init_8bit(u128 Htable[256], u64 H[2])
81 u128 V;
94 u128 *Hi = Htable + i, H0 = *Hi;
102 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256])
104 u128 Z = { 0, 0 };
222 static void gcm_init_4bit(u128 Htable[16], u64 H[2])
224 u128 V;
241 u128 *Hi = Htable + i;
304 static void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16])
306 u128
[all...]
H A Dmodes_local.h108 } u128; typedef in typeref:struct:__anon7190
132 u128 Htable[256];
134 u128 Htable[16];
135 void (*gmult) (u64 Xi[2], const u128 Htable[16]);
136 void (*ghash) (u64 Xi[2], const u128 Htable[16], const u8 *inp,
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.h22 __extension__ typedef unsigned __int128 u128; typedef
33 typedef u128 UIntMax;
H A Dubsan_value.cpp99 return *reinterpret_cast<u128*>(Val);
/freebsd-13-stable/crypto/openssl/crypto/ec/
H A Dcurve25519.c388 typedef __uint128_t u128; typedef
392 u128 h0, h1, h2, h3, h4;
396 h0 = (u128)f_i * (g0 = g[0]);
397 h1 = (u128)f_i * (g1 = g[1]);
398 h2 = (u128)f_i * (g2 = g[2]);
399 h3 = (u128)f_i * (g3 = g[3]);
400 h4 = (u128)f_i * (g4 = g[4]);
403 h0 += (u128)f_i * (g4 *= 19);
404 h1 += (u128)f_i * g0;
405 h2 += (u128)f_
[all...]
/freebsd-13-stable/contrib/netbsd-tests/lib/libbluetooth/
H A Dt_sdp_get.c169 uuid_t u128 = { local
195 ATF_CHECK(uuid_equal(&value, &u128, NULL));
H A Dt_sdp_put.c132 const uuid_t u128 = { local
143 ATF_REQUIRE(sdp_put_uuid(&test, &u128));
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A De_aes.c258 void gcm_ghash_avx(u64 Xi[2], const u128 Htable[16], const u8 *in,

Completed in 172 milliseconds