HomeSort by relevance Sort by last modified time
    Searched refs:EbtInt (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/angle_dx11/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 310 case EOpConstructInt: newType = EbtInt; break;
451 promoteTo = EbtInt;
480 case EbtInt: newOp = EOpConvIntToFloat; break;
489 case EbtInt: newOp = EOpConvIntToBool; break;
496 case EbtInt:
677 constIntNode = addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), line);
    [all...]
SymbolTable.h 284 TVariable *constant = new TVariable(NewPoolTString(name), TType(EbtInt, EbpUndefined, EvqConst, 1));
354 if (type.type != EbtFloat && type.type != EbtInt)
365 if( type != EbtFloat && type != EbtInt ) return EbpUndefined;
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;
glslang.y 240 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @1);
310 TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @3);
316 TIntermTyped* index = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), @3);
572 case EbtInt:
    [all...]
SymbolTable.cpp 42 case EbtInt: mangledName += 'i'; break;
VariableInfo.cpp 38 case EbtInt:
OutputHLSL.cpp     [all...]
Compiler.cpp 217 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...]
ParseHelper.cpp 250 case EbtInt:
399 if (node->getBasicType() == EbtInt && node->getNominalSize() == 1)
679 if (constant == 0 || constant->getBasicType() != EbtInt) {
    [all...]

Completed in 248 milliseconds