/external/swiftshader/src/OpenGL/compiler/ |
D | glslang.y | 382 TType type(EbtVoid, EbpUndefined); 389 TType type(EbtVoid, EbpUndefined); 661 if ($2.param.type->getBasicType() != EbtVoid) 671 if ($3.param.type->getBasicType() == EbtVoid) { 714 if ($1.type == EbtVoid) { 900 $$.setBasic(EbtVoid, EvqAttribute, @1); 907 $$.setBasic(EbtVoid, EvqVaryingOut, @1); 909 $$.setBasic(EbtVoid, EvqVaryingIn, @1); 916 $$.setBasic(EbtVoid, EvqInvariantVaryingOut, @1); 918 $$.setBasic(EbtVoid, EvqInvariantVaryingIn, @1); [all …]
|
D | glslang_tab.cpp | 2617 TType type(EbtVoid, EbpUndefined); in yyparse() 2629 TType type(EbtVoid, EbpUndefined); in yyparse() 3169 if ((yyvsp[0].interm).param.type->getBasicType() != EbtVoid) in yyparse() 3184 if ((yyvsp[0].interm).param.type->getBasicType() == EbtVoid) { in yyparse() 3230 if ((yyvsp[-1].interm.type).type == EbtVoid) { in yyparse() 3523 (yyval.interm.type).setBasic(EbtVoid, EvqAttribute, (yylsp[0])); in yyparse() 3535 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingOut, (yylsp[0])); in yyparse() 3537 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingIn, (yylsp[0])); in yyparse() 3549 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingOut, (yylsp[-1])); in yyparse() 3551 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingIn, (yylsp[-1])); in yyparse() [all …]
|
D | BaseTypes.h | 48 EbtVoid, enumerator 110 case EbtVoid: return "void"; in getBasicString()
|
D | ParseHelper.cpp | 378 else if(node->getBasicType() == EbtVoid) in lValueErrorCheck() 591 if (typed->getBasicType() == EbtVoid) { in constructorErrorCheck() 605 if(type == EbtVoid) { in voidErrorCheck() 1884 if(mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition() 1945 if(function->getReturnType().getBasicType() != EbtVoid) in parseFunctionPrototype() 2923 type.setBasic(EbtVoid, mergedQualifier, storageLoc); in joinInterpolationQualifiers() 3494 if(mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch() 3511 if(mCurrentFunctionType->getBasicType() == EbtVoid) in addBranch() 3564 TType type(EbtVoid, EbpUndefined); // use this to get the type back in addFunctionCallOrMethod()
|
D | intermediate.h | 613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 622 bool usesTernaryOperator() const { return getBasicType() != EbtVoid; } in usesTernaryOperator()
|
D | ConstantUnion.h | 30 type = EbtVoid; in ConstantUnion()
|
D | Types.h | 534 TBasicType type = EbtVoid;
|
D | SymbolTable.h | 144 returnType(TType(EbtVoid, EbpUndefined)), in TFunction()
|
D | OutputASM.cpp | 1358 if(function->ret && function->ret->getType().getBasicType() != EbtVoid) in visitAggregate()
|
/external/deqp-deps/glslang/glslang/Include/ |
D | Types.h | 110 type = EbtVoid; in clear() 1233 basicType = EbtVoid; in initType() 1289 …explicit TType(TBasicType t = EbtVoid, TStorageQualifier q = EvqTemporary, int vs = 1, int mc = 0,… in POOL_ALLOCATOR_NEW_DELETE() 1460 virtual void hideMember() { basicType = EbtVoid; vectorSize = 1; } in hideMember() 1461 virtual bool hiddenMember() const { return basicType == EbtVoid; } in hiddenMember() 1588 case EbtVoid: in containsNonOpaque() 1705 case EbtVoid: return "void"; in getBasicString()
|
D | BaseTypes.h | 47 EbtVoid, enumerator
|
D | intermediate.h | 1571 TIntermTyped(EbtVoid), condition(cond), trueBlock(trueB), falseBlock(falseB), in TIntermSelection()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.cpp | 296 storeOp->setType(TType(EbtVoid)); in handleLvalue() 702 variable = new TVariable(string, TType(EbtVoid)); in handleVariable() 1665 currentFunctionType = new TType(EbtVoid); in handleFunctionDefinition() 1730 intermediate.setAggregateOperator(paramNodes, EOpParameters, TType(EbtVoid), loc); in handleFunctionDefinition() 2059 TType voidType(EbtVoid); in transformEntryPoint() 2182 if (function.getType().getBasicType() != EbtVoid && ! functionReturnsValue) in handleFunctionBody() 2273 if (function.getType().getBasicType() == EbtVoid) { in remapEntryPointIO() 2317 if (function.getType().getBasicType() != EbtVoid) in remapNonEntryPointIO() 2333 if (currentFunctionType->getBasicType() == EbtVoid) { in handleReturnValue() 4047 compoundStatement->setType(TType(EbtVoid)); in decomposeSampleMethods() [all …]
|
D | hlslGrammar.cpp | 1559 new(&type) TType(EbtVoid); in acceptType() 2430 TTypeLoc member = { new TType(EbtVoid), token.loc }; in acceptStructDeclarationList() 3261 TFunction* function = new TFunction(functionName, TType(EbtVoid)); in acceptFunctionCall()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | glslang.y | 467 TFunction *function = new TFunction(&symbol->getName(), TType(EbtVoid)); 476 $$.function = new TFunction(&empty, TType(EbtVoid), EOpNull); 877 if ($2.param.type->getBasicType() != EbtVoid) 887 if ($3.param.type->getBasicType() == EbtVoid) { 931 if ($1.basicType == EbtVoid) { 1238 if ($$.basicType == EbtVoid) 1531 $$.basicType = EbtVoid; 3304 $$.type = new TType(EbtVoid); 3311 $$.type = new TType(EbtVoid); 3654 if (parseContext.currentFunctionType->getBasicType() != EbtVoid) [all …]
|
D | ParseContextBase.cpp | 174 case EbtVoid: in lValueErrorCheck()
|
D | Intermediate.cpp | 308 TBasicType newType = EbtVoid; in addUnaryMath() 325 if (newType != EbtVoid) { in addUnaryMath() 459 case EbtVoid: in isConversionAllowed() 2290 if (trueBlock->getBasicType() == EbtVoid && falseBlock->getBasicType() == EbtVoid) { in addSelection()
|
D | ParseHelper.cpp | 346 variable = new TVariable(string, TType(EbtVoid)); in handleVariable() 964 currentFunctionType = new TType(EbtVoid); in handleFunctionDefinition() 981 if (function.getType().getBasicType() != EbtVoid) in handleFunctionDefinition() 1019 intermediate.setAggregateOperator(paramNodes, EOpParameters, TType(EbtVoid), loc); in handleFunctionDefinition() 1049 TType type(EbtVoid); // use this to get the type back in handleFunctionCall() 1310 if (currentFunctionType->getBasicType() == EbtVoid) { in handleReturnValue() 1477 if (intermNode.getBasicType() != EbtVoid) { in addOutputArgumentConversions() 2307 if (symbol->getType().getBasicType() == EbtVoid) { in variableCheck() 2895 if (typed->getBasicType() == EbtVoid) { in constructorError() 2963 if (basicType == EbtVoid) { in voidErrorCheck()
|
D | glslang_tab.cpp | 4437 TFunction *function = new TFunction(&symbol->getName(), TType(EbtVoid)); in yyparse() 4446 (yyval.interm).function = new TFunction(&empty, TType(EbtVoid), EOpNull); in yyparse() 5149 if ((yyvsp[0].interm).param.type->getBasicType() != EbtVoid) in yyparse() 5164 if ((yyvsp[0].interm).param.type->getBasicType() == EbtVoid) { in yyparse() 5211 if ((yyvsp[-1].interm.type).basicType == EbtVoid) { in yyparse() 5656 if ((yyval.interm.type).basicType == EbtVoid) in yyparse() 6158 (yyval.interm.type).basicType = EbtVoid; in yyparse() 9410 (yyval.interm.typeLine).type = new TType(EbtVoid); in yyparse() 9422 (yyval.interm.typeLine).type = new TType(EbtVoid); in yyparse() 10005 if (parseContext.currentFunctionType->getBasicType() != EbtVoid) in yyparse() [all …]
|
D | reflection.cpp | 584 case EbtVoid: in mapToGlType()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 2537 node->getBasicType() == glslang::EbtVoid) in visitSelection() 2568 if (node->getBasicType() == glslang::EbtVoid) in visitSelection() 2618 if (node->getBasicType() != glslang::EbtVoid) in visitSelection() 2973 case glslang::EbtVoid: in convertGlslangToSpvType() 7208 return createSubgroupOperation(op, typeId, operands, glslang::EbtVoid);
|