OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unionArray
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
SymbolTable.h
78
TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT),
unionArray
(0) { }
90
if (!
unionArray
)
91
unionArray
= new ConstantUnion[type.getObjectSize()];
93
return
unionArray
;
96
ConstantUnion* getConstPointer() const { return
unionArray
; }
100
if (
unionArray
== constArray)
103
delete[]
unionArray
;
104
unionArray
= constArray;
112
// we are assuming that Pool Allocator will free the memory allocated to
unionArray
114
ConstantUnion *
unionArray
;
[
all
...]
glslang.y
231
ConstantUnion *
unionArray
= new ConstantUnion[1];
232
unionArray
->setIConst($1.i);
233
$$ = context->intermediate.addConstantUnion(
unionArray
, TType(EbtInt, EbpUndefined, EvqConst), @1);
236
ConstantUnion *
unionArray
= new ConstantUnion[1];
237
unionArray
->setFConst($1.f);
238
$$ = context->intermediate.addConstantUnion(
unionArray
, TType(EbtFloat, EbpUndefined, EvqConst), @1);
241
ConstantUnion *
unionArray
= new ConstantUnion[1];
242
unionArray
->setBConst($1.b);
243
$$ = context->intermediate.addConstantUnion(
unionArray
, TType(EbtBool, EbpUndefined, EvqConst), @1);
301
ConstantUnion *
unionArray
= new ConstantUnion[1]
[
all
...]
Intermediate.cpp
674
ConstantUnion*
unionArray
;
677
unionArray
= new ConstantUnion[1];
678
unionArray
->setIConst(fields.offsets[i]);
679
constIntNode = addConstantUnion(
unionArray
, TType(EbtInt, EbpUndefined, EvqConst), line);
[
all
...]
parseConst.cpp
18
unionArray
(cUnion),
42
ConstantUnion *
unionArray
;
161
ConstantUnion* leftUnionArray =
unionArray
;
233
bool TIntermediate::parseConstTree(const TSourceLoc& line, TIntermNode* root, ConstantUnion*
unionArray
, TOperator constructorType, TSymbolTable& symbolTable, TType t, bool singleConstantParam)
238
TConstTraverser it(
unionArray
, singleConstantParam, constructorType, infoSink, symbolTable, t);
glslang_tab.cpp
[
all
...]
ParseContext.cpp
[
all
...]
Completed in 429 milliseconds