OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getAdjusted64
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/Support/
ScaledNumberTest.cpp
71
EXPECT_EQ(
getAdjusted64
(0), SP64(0, 0));
72
EXPECT_EQ(
getAdjusted64
(0, 5), SP64(0, 5));
73
EXPECT_EQ(
getAdjusted64
(UINT32_MAX), SP64(UINT32_MAX, 0));
74
EXPECT_EQ(
getAdjusted64
(Max32In64 << 1), SP64(Max32In64 << 1, 0));
75
EXPECT_EQ(
getAdjusted64
(Max32In64 << 1, 1), SP64(Max32In64 << 1, 1));
76
EXPECT_EQ(
getAdjusted64
(Max32In64 << 31), SP64(Max32In64 << 31, 0));
77
EXPECT_EQ(
getAdjusted64
(Max32In64 << 32), SP64(Max32In64 << 32, 0));
78
EXPECT_EQ(
getAdjusted64
(Max32In64 + 1), SP64(Max32In64 + 1, 0));
79
EXPECT_EQ(
getAdjusted64
(UINT64_MAX), SP64(UINT64_MAX, 0));
/external/llvm/include/llvm/Support/
ScaledNumber.h
102
inline std::pair<uint64_t, int16_t>
getAdjusted64
(uint64_t Digits,
Completed in 1539 milliseconds