Searched refs:RawType (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h248 // RawType: the raw floating-point type (either float or double)
249 template <typename RawType>
254 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
259 static const size_t kBitCount = 8*sizeof(RawType);
263 std::numeric_limits<RawType>::digits - 1;
298 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
305 static RawType ReinterpretBits(const Bits bits) {
312 static RawType Infinity() {
317 static RawType Max();
358 RawType value
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp42 const IPDBRawSymbol &RawType = SymbolType->getRawSymbol(); local
44 return RawType.getLength();
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc3241 template <typename RawType>
3244 typedef testing::internal::FloatingPoint<RawType> Floating;
3271 EXPECT_EQ(sizeof(RawType), sizeof(Bits));
3277 testing::internal::FloatingEqMatcher<RawType> (*matcher_maker)(RawType)) {
3278 Matcher<RawType> m1 = matcher_maker(0.0);
3284 Matcher<RawType> m2 = matcher_maker(close_to_positive_zero_);
3287 Matcher<RawType> m3 = matcher_maker(1.0);
3294 Matcher<RawType> m4 = matcher_maker(-infinity_);
3297 Matcher<RawType> m
[all...]
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1695 // RawType: the raw floating-point type (either float or double)
1698 template <typename RawType>
1701 RawType lhs_value,
1702 RawType rhs_value) {
1703 const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value);
1710 lhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1714 rhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2689 template <typename RawType>
2694 RawType close_to_positive_zero;
2695 RawType close_to_negative_zero;
2696 RawType further_from_negative_zero;
2698 RawType close_to_one;
2699 RawType further_from_one;
2701 RawType infinity;
2702 RawType close_to_infinity;
2703 RawType further_from_infinity;
2705 RawType nan
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp907 const Metadata *RawType = getRawType(); local
908 while (RawType) {
910 if (auto *T = dyn_cast<DIType>(RawType))
914 if (auto *DT = dyn_cast<DIDerivedType>(RawType)) {
916 RawType = DT->getRawBaseType();
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc1433 template <typename RawType>
1436 RawType val1,
1437 RawType val2) {
1444 const FloatingPoint<RawType> lhs(val1), rhs(val2);
1454 val1_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1458 val2_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp904 const IPDBRawSymbol &RawType = SymbolType->getRawSymbol(); local
906 return RawType.getLength();

Completed in 131 milliseconds