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 | 1548 TIntermNode *trueBlock = node->getTrueBlock(); in visitSelection() local 1562 trueBlock->traverse(this); in visitSelection() 1563 copy(node, trueBlock); in visitSelection() 1573 trueBlock->traverse(this); in visitSelection() 1575 emit(sw::Shader::OPCODE_SELECT, node, condition, trueBlock, falseBlock); in visitSelection() 1581 if(trueBlock) in visitSelection() 1583 trueBlock->traverse(this); in visitSelection() 1584 copy(node, trueBlock); in visitSelection() 1605 if(trueBlock) in visitSelection() 1607 trueBlock->traverse(this); in visitSelection() [all …]
|
D | Intermediate.cpp | 658 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument 660 if (trueBlock->getType() != falseBlock->getType()) in addSelection() 669 …if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnio… in addSelection() 671 return trueBlock; in addSelection() 679 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType()); in addSelection()
|
D | ParseHelper.cpp | 3766 TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TInte… in addTernarySelection() argument 3771 if(trueBlock->getType() != falseBlock->getType()) in addTernarySelection() 3773 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString()); in addTernarySelection() 3780 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct) in addTernarySelection() 3786 return intermediate.addSelection(cond, trueBlock, falseBlock, loc); in addTernarySelection()
|
D | ParseHelper.h | 239 …TIntermTyped *addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *false…
|
/external/swiftshader/src/Shader/ |
D | VertexProgram.cpp | 1336 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1339 branch(condition, trueBlock, falseBlock); in IFb() 1385 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1390 branch(notAllFalse, trueBlock, falseBlock); in IF()
|
D | PixelProgram.cpp | 1542 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IFb() local 1545 branch(condition, trueBlock, falseBlock); in IFb() 1591 BasicBlock *trueBlock = Nucleus::createBasicBlock(); in IF() local 1596 branch(notAllFalse, trueBlock, falseBlock); in IF()
|