OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotCond
(Results
1 - 4
of
4
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSelect.cpp
664
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
665
return BinaryOperator::CreateAnd(
NotCond
, FalseVal);
672
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
673
return BinaryOperator::CreateOr(
NotCond
, TrueVal);
697
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
698
return new ZExtInst(
NotCond
, SI.getType());
703
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
704
return new SExtInst(
NotCond
, SI.getType());
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp
[
all
...]
/build/kati/
find.cc
89
class
NotCond
: public FindCond {
91
NotCond
(FindCond* c) : c_(c) {}
492
return new
NotCond
(c.release());
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
[
all
...]
Completed in 246 milliseconds