OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitcastv
(Results
1 - 4
of
4
) sorted by null
/external/llvm/unittests/IR/
ValueHandleTest.cpp
25
std::unique_ptr<BitCastInst>
BitcastV
;
29
BitcastV
(new BitCastInst(ConstantV, Type::getInt32Ty(Context))) {}
38
WeakVH WVH(
BitcastV
.get());
39
EXPECT_EQ(
BitcastV
.get(), WVH);
50
WeakVH BitcastWVH(
BitcastV
.get());
54
EXPECT_TRUE(
BitcastV
.get() == BitcastWVH);
55
EXPECT_TRUE(BitcastWVH ==
BitcastV
.get());
59
EXPECT_TRUE(
BitcastV
.get() != ConstantWVH);
64
Value *BV =
BitcastV
.get();
71
EXPECT_EQ(BV < CV,
BitcastV
.get() < ConstantWVH)
[
all
...]
ValueMapTest.cpp
27
std::unique_ptr<BitCastInst>
BitcastV
;
32
BitcastV
(new BitCastInst(ConstantV, Type::getInt32Ty(Context))),
49
VM[this->
BitcastV
.get()] = 7;
50
EXPECT_EQ(7, VM.lookup(this->
BitcastV
.get()));
52
this->
BitcastV
->replaceAllUsesWith(this->AddV.get());
54
EXPECT_EQ(0u, VM.count(this->
BitcastV
.get()));
57
EXPECT_EQ(0u, VM.count(this->
BitcastV
.get()));
68
VM[this->
BitcastV
.get()] = 7;
72
VM.find(this->
BitcastV
.get());
74
EXPECT_EQ(this->
BitcastV
.get(), I->first)
[
all
...]
/external/swiftshader/third_party/LLVM/unittests/Support/
ValueHandleTest.cpp
28
std::auto_ptr<BitCastInst>
BitcastV
;
32
BitcastV
(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))) {
42
WeakVH WVH(
BitcastV
.get());
43
EXPECT_EQ(
BitcastV
.get(), WVH);
54
WeakVH BitcastWVH(
BitcastV
.get());
58
EXPECT_TRUE(
BitcastV
.get() == BitcastWVH);
59
EXPECT_TRUE(BitcastWVH ==
BitcastV
.get());
63
EXPECT_TRUE(
BitcastV
.get() != ConstantWVH);
68
Value *BV =
BitcastV
.get();
75
EXPECT_EQ(BV < CV,
BitcastV
.get() < ConstantWVH)
[
all
...]
/external/swiftshader/third_party/LLVM/unittests/VMCore/
ValueMapTest.cpp
28
OwningPtr<BitCastInst>
BitcastV
;
33
BitcastV
(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
51
VM[this->
BitcastV
.get()] = 7;
52
EXPECT_EQ(7, VM.lookup(this->
BitcastV
.get()));
54
this->
BitcastV
->replaceAllUsesWith(this->AddV.get());
56
EXPECT_EQ(0, VM.count(this->
BitcastV
.get()));
59
EXPECT_EQ(0, VM.count(this->
BitcastV
.get()));
70
VM[this->
BitcastV
.get()] = 7;
74
VM.find(this->
BitcastV
.get());
76
EXPECT_EQ(this->
BitcastV
.get(), I->first)
[
all
...]
Completed in 119 milliseconds