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

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.h 73 TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0), arrayInformationType(0) { }
87 if (!unionArray)
88 unionArray = new ConstantUnion[type.getObjectSize()];
90 return unionArray;
93 ConstantUnion* getConstPointer() const { return unionArray; }
97 if (unionArray == constArray)
100 delete[] unionArray;
101 unionArray = constArray;
109 // we are assuming that Pool Allocator will free the memory allocated to unionArray
111 ConstantUnion *unionArray;
    [all...]
Intermediate.cpp 686 ConstantUnion* unionArray;
689 unionArray = new ConstantUnion[1];
690 unionArray->setIConst(fields.offsets[i]);
691 constIntNode = addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), line);
1085 ConstantUnion *unionArray = getUnionArrayPointer();
    [all...]
glslang.y 200 ConstantUnion *unionArray = new ConstantUnion[1];
201 unionArray->setIConst($1.i);
202 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConst), $1.line);
205 ConstantUnion *unionArray = new ConstantUnion[1];
206 unionArray->setFConst($1.f);
207 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConst), $1.line);
210 ConstantUnion *unionArray = new ConstantUnion[1];
211 unionArray->setBConst($1.b);
212 $$ = context->intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConst), $1.line);
274 ConstantUnion *unionArray = new ConstantUnion[1]
    [all...]
SymbolTable.cpp 170 // for builtIn symbol table level, unionArray and arrayInformation pointers should be NULL
174 if (copyOf.unionArray) {
177 unionArray = new ConstantUnion[1];
178 unionArray[0] = copyOf.unionArray[0];
180 unionArray = 0;
parseConst.cpp 18 unionArray(cUnion),
42 ConstantUnion *unionArray;
154 ConstantUnion* leftUnionArray = unionArray;
226 bool TIntermediate::parseConstTree(TSourceLoc line, TIntermNode* root, ConstantUnion* unionArray, TOperator constructorType, TSymbolTable& symbolTable, TType t, bool singleConstantParam)
231 TConstTraverser it(unionArray, singleConstantParam, constructorType, infoSink, symbolTable, t);
ParseHelper.cpp 1027 ConstantUnion* unionArray = variable->getConstPointer();
1030 *unionArray = (initializer->getAsConstantUnion()->getUnionArrayPointer())[0];
    [all...]

Completed in 57 milliseconds