OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFullSet
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Support/
ConstantRange.cpp
117
///
isFullSet
- Return true if this set contains all of the elements possible
119
bool ConstantRange::
isFullSet
() const {
150
if (
isFullSet
()) {
164
if (
isFullSet
() || isWrappedSet())
173
if (
isFullSet
() || (isWrappedSet() && getUpper() != 0))
214
return
isFullSet
();
226
if (
isFullSet
() || Other.isEmptySet()) return true;
227
if (isEmptySet() || Other.
isFullSet
()) return false;
269
if ( isEmptySet() || CR.
isFullSet
()) return *this;
270
if (CR.isEmptySet() ||
isFullSet
()) return CR
[
all
...]
/external/llvm/include/llvm/Support/
ConstantRange.h
56
explicit ConstantRange(uint32_t BitWidth, bool
isFullSet
= true);
89
///
isFullSet
- Return true if this set contains all of the elements possible
92
bool
isFullSet
() const;
/external/llvm/unittests/Support/
ConstantRangeTest.cpp
34
EXPECT_TRUE(Full.
isFullSet
());
44
EXPECT_FALSE(Empty.
isFullSet
());
46
EXPECT_TRUE(Empty.inverse().
isFullSet
());
54
EXPECT_FALSE(One.
isFullSet
());
64
EXPECT_FALSE(Some.
isFullSet
());
73
EXPECT_FALSE(Wrap.
isFullSet
());
175
EXPECT_TRUE(TFull.
isFullSet
());
179
EXPECT_TRUE(TSome.
isFullSet
());
399
ConstantRange(4, /*
isFullSet
=*/true));
/external/llvm/lib/IR/
Metadata.cpp
512
if (Range.
isFullSet
())
Verifier.cpp
[
all
...]
/external/llvm/lib/Analysis/
LazyValueInfo.cpp
266
if (NewR.
isFullSet
())
849
ConstantRange EdgesVals(BitWidth, DefaultCase/*
isFullSet
*/);
[
all
...]
InstructionSimplify.cpp
[
all
...]
ScalarEvolution.cpp
[
all
...]
Completed in 528 milliseconds