/external/chromium_org/third_party/angle/src/compiler/ |
ConstantUnion.h | 21 void setIConst(int i) {iConst = i; type = EbtInt; } 53 case EbtInt: 88 case EbtInt: 101 case EbtInt: 115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break; 128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break; 141 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break; 154 case EbtInt: returnValue.setIConst(iConst % constant.iConst); break; 166 case EbtInt: returnValue.setIConst(iConst >> constant.iConst); break; 178 case EbtInt: returnValue.setIConst(iConst << constant.iConst); break [all...] |
BaseTypes.h | 40 EbtInt, 59 case EbtInt: return "int"; break;
|
ForLoopUnroll.cpp | 32 ASSERT(type == EbtInt || type == EbtFloat); 33 if (type == EbtInt) 57 ASSERT(symbol->getBasicType() == EbtInt);
|
Intermediate.cpp | 312 case EOpConstructInt: newType = EbtInt; break; 453 promoteTo = EbtInt; 482 case EbtInt: newOp = EOpConvIntToFloat; break; 491 case EbtInt: newOp = EOpConvIntToBool; break; 498 case EbtInt: 679 constIntNode = addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), line); [all...] |
ValidateLimitations.cpp | 82 case EbtInt: 272 if ((type != EbtInt) && (type != EbtFloat)) { 495 if (!index->isScalar() || (index->getBasicType() != EbtInt)) {
|
OutputGLSLBase.cpp | 148 case EbtInt: out << pConstUnion->getIConst(); break; 275 ASSERT(element->getBasicType() == EbtInt); 278 ASSERT(data.getType() == EbtInt); 750 case EbtInt: out << "ivec"; break;
|
SymbolTable.h | 278 TVariable *constant = new TVariable(NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConst, 1)); 373 return type == EbtFloat || type == EbtInt || IsSampler(type);
|
glslang.y | 233 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @1); 303 TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @3); 309 TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @3); 565 case EbtInt: [all...] |
SymbolTable.cpp | 42 case EbtInt: mangledName += 'i'; break;
|
VariableInfo.cpp | 40 case EbtInt:
|
OutputHLSL.cpp | [all...] |
Compiler.cpp | 236 integer.type = EbtInt;
|
intermOut.cpp | 337 case EbtInt:
|
Initialize.cpp | 24 TType *int2 = new TType(EbtInt, EbpUndefined, EvqGlobal, 2); 25 TType *int3 = new TType(EbtInt, EbpUndefined, EvqGlobal, 3); 26 TType *int4 = new TType(EbtInt, EbpUndefined, EvqGlobal, 4);
|
glslang_tab.cpp | [all...] |
ParseContext.cpp | 250 case EbtInt: 399 if (node->getBasicType() == EbtInt && node->getNominalSize() == 1) 679 if (constant == 0 || constant->getBasicType() != EbtInt) { [all...] |