/external/cronet/third_party/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : lo_(low), hi_(high) {} 28 constexpr int128::int128(int v) 30 constexpr int128::int128(long v) // NOLINT(runtime/int) 32 constexpr int128::int128(long long v) // NOLINT(runtime/int) 35 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 37 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 58 class int128; variable 123 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 139 uint128& operator=(int128 v); 338 class int128 { 340 int128() = default; 343 constexpr int128(int v); // NOLINT(runtime/explicit) 344 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 345 constexpr int128(long v); // NOLINT(runtime/int) 346 constexpr int128(unsigned long v); // NOLINT(runtime/int) 347 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/openscreen/third_party/abseil/src/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 54 class int128; variable 119 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 135 uint128& operator=(int128 v); 334 class int128 { 336 int128() = default; 339 constexpr int128(int v); // NOLINT(runtime/explicit) 340 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 341 constexpr int128(long v); // NOLINT(runtime/int) 342 constexpr int128(unsigned long v); // NOLINT(runtime/int) 343 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 58 class int128; variable 123 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 139 uint128& operator=(int128 v); 338 class int128 { 340 int128() = default; 343 constexpr int128(int v); // NOLINT(runtime/explicit) 344 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 345 constexpr int128(long v); // NOLINT(runtime/int) 346 constexpr int128(unsigned long v); // NOLINT(runtime/int) 347 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/libtextclassifier/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 54 class int128; variable 119 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 135 uint128& operator=(int128 v); 334 class int128 { 336 int128() = default; 339 constexpr int128(int v); // NOLINT(runtime/explicit) 340 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 341 constexpr int128(long v); // NOLINT(runtime/int) 342 constexpr int128(unsigned long v); // NOLINT(runtime/int) 343 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 58 class int128; variable 123 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 139 uint128& operator=(int128 v); 338 class int128 { 340 int128() = default; 343 constexpr int128(int v); // NOLINT(runtime/explicit) 344 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 345 constexpr int128(long v); // NOLINT(runtime/int) 346 constexpr int128(unsigned long v); // NOLINT(runtime/int) 347 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 54 class int128; variable 119 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 135 uint128& operator=(int128 v); 334 class int128 { 336 int128() = default; 339 constexpr int128(int v); // NOLINT(runtime/explicit) 340 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 341 constexpr int128(long v); // NOLINT(runtime/int) 342 constexpr int128(unsigned long v); // NOLINT(runtime/int) 343 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
D | int128_test.cc | 484 absl::int128 nonnegative_signed_values[] = { in TEST() 491 for (absl::int128 value : nonnegative_signed_values) { in TEST() 492 EXPECT_EQ(value, absl::int128(absl::uint128(value))); in TEST() 496 EXPECT_EQ(value, absl::int128(assigned_value)); in TEST() 499 absl::int128 negative_values[] = { in TEST() 503 for (absl::int128 value : negative_values) { in TEST() 518 static_assert(std::is_constructible<absl::int128, TypeParam>::value, in TYPED_TEST() 520 static_assert(std::is_assignable<absl::int128&, TypeParam>::value, in TYPED_TEST() 522 static_assert(!std::is_assignable<TypeParam&, absl::int128>::value, in TYPED_TEST() 532 static_assert(std::is_constructible<absl::int128, TypeParam>::value, in TYPED_TEST() [all …]
|
/external/tensorflow/third_party/absl/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : 29 constexpr int128::int128(int v) 31 constexpr int128::int128(long v) // NOLINT(runtime/int) 33 constexpr int128::int128(long long v) // NOLINT(runtime/int) 36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 58 class int128; variable 123 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 139 uint128& operator=(int128 v); 338 class int128 { 340 int128() = default; 343 constexpr int128(int v); // NOLINT(runtime/explicit) 344 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 345 constexpr int128(long v); // NOLINT(runtime/int) 346 constexpr int128(unsigned long v); // NOLINT(runtime/int) 347 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|
/external/angle/third_party/abseil-cpp/absl/numeric/ |
D | int128_have_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 37 inline int128& int128::operator=(__int128 v) { 42 constexpr uint64_t Int128Low64(int128 v) { 46 constexpr int64_t Int128High64(int128 v) { 52 constexpr int128::int128(int64_t high, uint64_t low) 59 constexpr int128::int128(int v) : v_{v} {} 61 constexpr int128::int128(long v) : v_{v} {} // NOLINT(runtime/int) 63 constexpr int128::int128(long long v) : v_{v} {} // NOLINT(runtime/int) 65 constexpr int128::int128(__int128 v) : v_{v} {} [all …]
|
D | int128_no_intrinsic.inc | 16 // This file contains :int128 implementation details that depend on internal 18 // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; } 22 constexpr int64_t Int128High64(int128 v) { return v.hi_; } 26 constexpr int128::int128(int64_t high, uint64_t low) : lo_(low), hi_(high) {} 28 constexpr int128::int128(int v) 30 constexpr int128::int128(long v) // NOLINT(runtime/int) 32 constexpr int128::int128(long long v) // NOLINT(runtime/int) 35 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {} 37 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {} [all …]
|
D | int128.h | 59 class int128; variable 124 constexpr uint128(int128 v); // NOLINT(runtime/explicit) 140 uint128& operator=(int128 v); 347 class int128 { 349 int128() = default; 352 constexpr int128(int v); // NOLINT(runtime/explicit) 353 constexpr int128(unsigned int v); // NOLINT(runtime/explicit) 354 constexpr int128(long v); // NOLINT(runtime/int) 355 constexpr int128(unsigned long v); // NOLINT(runtime/int) 356 constexpr int128(long long v); // NOLINT(runtime/int) [all …]
|