Searched refs:trueBlock (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/src/OpenGL/compiler/ |
D | IntermTraverse.cpp | 205 if (trueBlock) in traverse() 206 trueBlock->traverse(it); in traverse() 210 if (trueBlock) in traverse() 211 trueBlock->traverse(it); in traverse()
|
D | intermediate.h | 613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 615 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) in TIntermSelection() 624 TIntermNode* getTrueBlock() const { return trueBlock; } in getTrueBlock() 630 TIntermNode* trueBlock; variable
|
D | localintermediate.h | 43 …TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, …
|
D | OutputASM.cpp | 1728 TIntermNode *trueBlock = node->getTrueBlock(); in visitSelection() local 1742 trueBlock->traverse(this); in visitSelection() 1743 copy(node, trueBlock); in visitSelection() 1753 trueBlock->traverse(this); in visitSelection() 1755 emit(sw::Shader::OPCODE_SELECT, node, condition, trueBlock, falseBlock); in visitSelection() 1761 if(trueBlock) in visitSelection() 1763 trueBlock->traverse(this); in visitSelection() 1764 copy(node, trueBlock); in visitSelection() 1785 if(trueBlock) in visitSelection() 1787 trueBlock->traverse(this); in visitSelection() [all …]
|
D | Intermediate.cpp | 661 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument 663 if (trueBlock->getType() != falseBlock->getType()) in addSelection() 672 …if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnio… in addSelection() 674 return trueBlock; in addSelection() 682 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType()); in addSelection()
|
D | ParseHelper.cpp | 3675 TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TInte… in addTernarySelection() argument 3680 if(trueBlock->getType() != falseBlock->getType()) in addTernarySelection() 3682 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString()); in addTernarySelection() 3689 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct) in addTernarySelection() 3695 return intermediate.addSelection(cond, trueBlock, falseBlock, loc); in addTernarySelection()
|
D | ParseHelper.h | 238 …TIntermTyped *addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *false…
|
/external/swiftshader/src/Shader/ |
D | VertexProgram.cpp | 1281 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1284 branch(condition, trueBlock, falseBlock); in IFb() 1330 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1335 branch(notAllFalse, trueBlock, falseBlock); in IF()
|
D | PixelProgram.cpp | 1522 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1525 branch(condition, trueBlock, falseBlock); in IFb() 1571 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1576 branch(notAllFalse, trueBlock, falseBlock); in IF()
|