Home
last modified time | relevance | path

Searched refs:trueLabel (Results 1 – 6 of 6) sorted by relevance

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java547 public <T> void compare(Comparison comparison, Label trueLabel, Local<T> a, Local<T> b) { in compare() argument
548 adopt(trueLabel); in compare()
551 RegisterSpecList.make(a.spec(), b.spec())), trueLabel); in compare()
559 public <T> void compareZ(Comparison comparison, Label trueLabel, Local<?> a) { in compareZ() argument
560 adopt(trueLabel); in compareZ()
563 RegisterSpecList.make(a.spec())), trueLabel); in compareZ()
/external/angle/src/common/spirv/
Dspirv_instruction_parser_autogen.h917 IdRef *trueLabel,
Dspirv_instruction_builder_autogen.h784 IdRef trueLabel,
Dspirv_instruction_builder_autogen.cpp2726 IdRef trueLabel, in WriteBranchConditional() argument
2733 blob->push_back(trueLabel); in WriteBranchConditional()
Dspirv_instruction_parser_autogen.cpp3268 IdRef *trueLabel, in ParseBranchConditional() argument
3278 *trueLabel = IdRef(_instruction[_o++]); in ParseBranchConditional()
/external/skia/src/sksl/codegen/
DSkSLSPIRVCodeGenerator.cpp3250 SpvId trueLabel = this->nextId(nullptr); in writeTernaryExpression() local
3254 this->writeInstruction(SpvOpBranchConditional, test, trueLabel, falseLabel, out); in writeTernaryExpression()
3255 this->writeLabel(trueLabel, kBranchIsOnPreviousLine, out); in writeTernaryExpression()