/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | sqrtl.c | 19 } u128; typedef 22 static inline long double mkldbl(uint64_t top, u128 x) in mkldbl() 41 static inline u128 asu128(long double x) in asu128() 44 u128 r; in asu128() 74 static inline u128 add64(u128 a, uint64_t b) in add64() 76 u128 r; in add64() 84 static inline u128 add128(u128 a, u128 b) in add128() 86 u128 r; in add128() 94 static inline u128 sub64(u128 a, uint64_t b) in sub64() 96 u128 r; in sub64() [all …]
|
/third_party/musl/src/math/ |
D | sqrtl.c | 19 } u128; typedef 22 static inline long double mkldbl(uint64_t top, u128 x) in mkldbl() 41 static inline u128 asu128(long double x) in asu128() 44 u128 r; in asu128() 74 static inline u128 add64(u128 a, uint64_t b) in add64() 76 u128 r; in add64() 84 static inline u128 add128(u128 a, u128 b) in add128() 86 u128 r; in add128() 94 static inline u128 sub64(u128 a, uint64_t b) in sub64() 96 u128 r; in sub64() [all …]
|
/third_party/openssl/crypto/poly1305/ |
D | poly1305_base2_44.c | 21 typedef uint128_t u128; typedef 88 u128 d0, d1, d2; in poly1305_blocks() 114 d0 = ((u128)h0 * r0) + ((u128)h1 * s2) + ((u128)h2 * s1); in poly1305_blocks() 115 d1 = ((u128)h0 * r1) + ((u128)h1 * r0) + ((u128)h2 * s2); in poly1305_blocks() 116 d2 = ((u128)h0 * r2) + ((u128)h1 * r1) + ((u128)h2 * r0); in poly1305_blocks() 140 u128 t; in poly1305_emit() 148 h0 = (u64)(t = (u128)h0 + (h1 << 44)); h1 >>= 20; in poly1305_emit() 149 h1 = (u64)(t = (u128)h1 + (h2 << 24) + (t >> 64)); h2 >>= 40; in poly1305_emit() 153 g0 = (u64)(t = (u128)h0 + 5); in poly1305_emit() 154 g1 = (u64)(t = (u128)h1 + (t >> 64)); in poly1305_emit() [all …]
|
D | poly1305.c | 100 typedef uint128_t u128; typedef 154 u128 d0, d1; in poly1305_blocks() 167 h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0)); in poly1305_blocks() 168 h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8)); in poly1305_blocks() 176 d0 = ((u128)h0 * r0) + in poly1305_blocks() 177 ((u128)h1 * s1); in poly1305_blocks() 178 d1 = ((u128)h0 * r1) + in poly1305_blocks() 179 ((u128)h1 * r0) + in poly1305_blocks() 219 u128 t; in poly1305_emit() 227 g0 = (u64)(t = (u128)h0 + 5); in poly1305_emit() [all …]
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
D | bitfield-large.rs | 118 ::std::mem::transmute(self._bitfield_1.get(0usize, 128u8) as u128) in x() 124 let val: u128 = ::std::mem::transmute(val); in set_x() 133 let x: u128 = unsafe { ::std::mem::transmute(x) }; 163 ::std::mem::transmute(self._bitfield_1.get(0usize, 80u8) as u128) in x() 169 let val: u128 = ::std::mem::transmute(val); in set_x() 176 ::std::mem::transmute(self._bitfield_1.get(80usize, 48u8) as u128) in y() 182 let val: u128 = ::std::mem::transmute(val); in set_y() 194 let x: u128 = unsafe { ::std::mem::transmute(x) }; 198 let y: u128 = unsafe { ::std::mem::transmute(y) };
|
/third_party/elfutils/libdw/ |
D | libdw_form.c | 47 Dwarf_Word u128; in __libdw_form_val_compute_len() local 91 get_uleb128 (u128, valp, endp); in __libdw_form_val_compute_len() 92 result = u128 + (valp - startp); in __libdw_form_val_compute_len() 114 get_uleb128 (u128, valp, endp); in __libdw_form_val_compute_len() 122 get_uleb128 (u128, valp, endp); in __libdw_form_val_compute_len() 125 result = __libdw_form_val_len (cu, u128, valp); in __libdw_form_val_compute_len()
|
D | dwarf_getsrclines.c | 701 unsigned int u128; in read_srclines() local 902 get_uleb128 (u128, linep, lineendp); in read_srclines() 903 advance_pc (u128); in read_srclines() 925 get_uleb128 (u128, linep, lineendp); in read_srclines() 926 state.file = u128; in read_srclines() 936 get_uleb128 (u128, linep, lineendp); in read_srclines() 937 state.column = u128; in read_srclines() 1014 get_uleb128 (u128, linep, lineendp); in read_srclines()
|
/third_party/openssl/crypto/modes/ |
D | gcm128.c | 80 static void gcm_init_8bit(u128 Htable[256], u64 H[2]) in gcm_init_8bit() 83 u128 V; in gcm_init_8bit() 96 u128 *Hi = Htable + i, H0 = *Hi; in gcm_init_8bit() 104 static void gcm_gmult_8bit(u64 Xi[2], const u128 Htable[256]) in gcm_gmult_8bit() 106 u128 Z = { 0, 0 }; in gcm_gmult_8bit() 221 static void gcm_init_4bit(u128 Htable[16], u64 H[2]) in gcm_init_4bit() 223 u128 V; in gcm_init_4bit() 240 u128 *Hi = Htable + i; in gcm_init_4bit() 300 static void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]) in gcm_gmult_4bit() 302 u128 Z; in gcm_gmult_4bit() [all …]
|
/third_party/rust/crates/serde/test_suite/tests/ |
D | test_value.rs | 24 let de_u128 = IntoDeserializer::<value::Error>::into_deserializer(1u128); in test_integer128() 28 assert_eq!(1u128, u128::deserialize(de_u128).unwrap()); in test_integer128() 34 assert_eq!(1u128, u128::deserialize(de_i128).unwrap()); in test_integer128()
|
/third_party/rust/crates/num-traits/tests/ |
D | cast.rs | 16 use core::{i128, u128}; 156 assert_eq!(None, cast::<f64, u128>(big_f)); in cast_to_i128_checks_overflow() 159 assert_eq!(Some(normal_f as u128), cast::<f64, u128>(normal_f)); in cast_to_i128_checks_overflow() 162 assert_eq!(None, cast::<f64, u128>(small_f)); in cast_to_i128_checks_overflow() 248 float_test_edge!(f32 -> i128 u128); in cast_float_to_i128_edge_cases() 249 float_test_edge!(f64 -> i128 u128); in cast_float_to_i128_edge_cases() 312 int_test_edge!($t -> { i128 u128 } with i128 u128); in cast_int_to_128_edge_cases() 314 int_test_edge!(i128 -> { $( $t )+ } with i128 u128); in cast_int_to_128_edge_cases() 315 int_test_edge!(u128 -> { $( $t )+ } with i128 u128); in cast_int_to_128_edge_cases() 320 test_edge!(usize u8 u16 u32 u64 u128); in cast_int_to_128_edge_cases()
|
/third_party/rust/crates/num-traits/src/ |
D | cast.rs | 5 use core::{i128, u128}; 108 fn to_u128(&self) -> Option<u128> { in to_u128() argument 187 fn to_u128 -> u128; 260 fn to_u128 -> u128; 281 impl_to_primitive_uint!(u128); 387 fn to_u128 -> u128; 498 fn from_u128(n: u128) -> Option<Self> { in from_u128() 576 fn from_u128(n: u128) -> Option<$T> { 605 impl_from_primitive!(u128, to_u128); 635 fn to_u128 -> u128; [all …]
|
D | pow.rs | 103 pow_impl!(u128, u8, u32, u128::pow); 105 pow_impl!(u128, u16, u32, u128::pow); 107 pow_impl!(u128, u32, u32, u128::pow); 109 pow_impl!(u128, usize); 137 pow_impl!(Wrapping<u128>);
|
D | bounds.rs | 4 use core::{i128, u128}; 65 bounded_impl!(u128, u128::MIN, u128::MAX); 145 test_wrapping_bounded!(u128 i128); in wrapping_bounded_i128()
|
/third_party/rust/crates/num-traits/src/ops/ |
D | checked.rs | 28 checked_impl!(CheckedAdd, checked_add, u128); 51 checked_impl!(CheckedSub, checked_sub, u128); 75 checked_impl!(CheckedMul, checked_mul, u128); 99 checked_impl!(CheckedDiv, checked_div, u128); 140 checked_impl!(CheckedRem, checked_rem, u128); 188 checked_impl_unary!(CheckedNeg, checked_neg, u128); 234 checked_shift_impl!(CheckedShl, checked_shl, u128); 269 checked_shift_impl!(CheckedShr, checked_shr, u128);
|
D | overflowing.rs | 3 use core::{i128, u128}; 31 overflowing_impl!(OverflowingAdd, overflowing_add, u128); 54 overflowing_impl!(OverflowingSub, overflowing_sub, u128); 77 overflowing_impl!(OverflowingMul, overflowing_mul, u128);
|
D | saturating.rs | 33 deprecated_saturating_impl!(Saturating for i128 u128); 59 saturating_impl!(SaturatingAdd, saturating_add, u128); 82 saturating_impl!(SaturatingSub, saturating_sub, u128); 105 saturating_impl!(SaturatingMul, saturating_mul, u128);
|
D | wrapping.rs | 36 wrapping_impl!(WrappingAdd, wrapping_add, u128); 59 wrapping_impl!(WrappingSub, wrapping_sub, u128); 82 wrapping_impl!(WrappingMul, wrapping_mul, u128); 131 wrapping_unary_impl!(WrappingNeg, wrapping_neg, u128); 176 wrapping_shift_impl!(WrappingShl, wrapping_shl, u128); 211 wrapping_shift_impl!(WrappingShr, wrapping_shr, u128);
|
/third_party/openssl/include/crypto/ |
D | modes.h | 101 } u128; typedef 125 u128 Htable[256]; 127 u128 Htable[16]; 128 void (*gmult) (u64 Xi[2], const u128 Htable[16]); 129 void (*ghash) (u64 Xi[2], const u128 Htable[16], const u8 *inp,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
D | duration.cc | 118 uint128 u128 = 0; in MakeU128() local 120 ++u128; in MakeU128() 124 u128 += static_cast<uint64_t>(a); in MakeU128() 125 return u128; in MakeU128() 137 uint128 u128 = static_cast<uint64_t>(rep_hi); in MakeU128Ticks() local 138 u128 *= static_cast<uint64_t>(kTicksPerSecond); in MakeU128Ticks() 139 u128 += rep_lo; in MakeU128Ticks() 140 return u128; in MakeU128Ticks() 144 inline Duration MakeDurationFromU128(uint128 u128, bool is_neg) { in MakeDurationFromU128() argument 147 const uint64_t h64 = Uint128High64(u128); in MakeDurationFromU128() [all …]
|
/third_party/rust/crates/rustix/src/net/ |
D | ip.rs | 1305 u128::from_be_bytes(self.octets()) == u128::from_be_bytes(Ipv6Addr::UNSPECIFIED.octets()) in is_unspecified() 1332 u128::from_be_bytes(self.octets()) == u128::from_be_bytes(Ipv6Addr::LOCALHOST.octets()) in is_loopback() 1419 u128::from_be_bytes(self.octets()) == 0x2001_0001_0000_0000_0000_0000_0000_0001 in is_global() 1421 … || u128::from_be_bytes(self.octets()) == 0x2001_0001_0000_0000_0000_0000_0000_0002 in is_global() 1901 impl From<Ipv6Addr> for u128 { implementation 1916 fn from(ip: Ipv6Addr) -> u128 { in from() argument 1917 u128::from_be_bytes(ip.octets) in from() 1921 impl From<u128> for Ipv6Addr { 1938 fn from(ip: u128) -> Ipv6Addr { in from()
|
/third_party/openssl/ohos_lite/crypto/ec/ |
D | curve25519.c | 388 typedef __uint128_t u128; typedef 392 u128 h0, h1, h2, h3, h4; in fe51_mul() 396 h0 = (u128)f_i * (g0 = g[0]); in fe51_mul() 397 h1 = (u128)f_i * (g1 = g[1]); in fe51_mul() 398 h2 = (u128)f_i * (g2 = g[2]); in fe51_mul() 399 h3 = (u128)f_i * (g3 = g[3]); in fe51_mul() 400 h4 = (u128)f_i * (g4 = g[4]); in fe51_mul() 403 h0 += (u128)f_i * (g4 *= 19); in fe51_mul() 404 h1 += (u128)f_i * g0; in fe51_mul() 405 h2 += (u128)f_i * g1; in fe51_mul() [all …]
|
/third_party/openssl/crypto/ec/ |
D | curve25519.c | 398 typedef uint128_t u128; typedef 402 u128 h0, h1, h2, h3, h4; in fe51_mul() 406 h0 = (u128)f_i * (g0 = g[0]); in fe51_mul() 407 h1 = (u128)f_i * (g1 = g[1]); in fe51_mul() 408 h2 = (u128)f_i * (g2 = g[2]); in fe51_mul() 409 h3 = (u128)f_i * (g3 = g[3]); in fe51_mul() 410 h4 = (u128)f_i * (g4 = g[4]); in fe51_mul() 413 h0 += (u128)f_i * (g4 *= 19); in fe51_mul() 414 h1 += (u128)f_i * g0; in fe51_mul() 415 h2 += (u128)f_i * g1; in fe51_mul() [all …]
|
/third_party/rust/crates/serde/serde/src/de/ |
D | value.rs | 151 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 213 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 253 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str 293 primitive_deserializer!(u128, "a `u128`.", U128Deserializer, visit_u128); 325 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 428 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 507 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 600 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 698 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string 775 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string [all …]
|
/third_party/rust/crates/libc/src/ |
D | fixed_width_ints.rs | 56 pub type __uint128 = u128; 60 pub type __uint128_t = u128;
|
/third_party/rust/crates/log/src/kv/ |
D | value.rs | 332 fn visit_u128(&mut self, value: u128) -> Result<(), value_bag::Error> { in visit() 444 impl ToValue for u128 { implementation 474 impl<'v> From<&'v u128> for Value<'v> { 475 fn from(value: &'v u128) -> Self { in from() 489 Value::from_value_bag(unsafe { std::mem::transmute::<&std::num::NonZeroU128, &u128>(v) }) in from() 581 to_u128 -> u128, 667 fn visit_u128(&mut self, value: u128) -> Result<(), Error> { in visit_u128() 734 fn visit_u128(&mut self, value: u128) -> Result<(), Error> { in visit_u128()
|