OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unitGlobals
(Results
1 - 2
of
2
) sorted by null
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
linkValidate.cpp
178
TIntermSequence&
unitGlobals
= unit.treeRoot->getAsAggregate()->getSequence();
184
mergeBodies(infoSink, globals,
unitGlobals
);
191
// Merge the function bodies and global-level initializers from
unitGlobals
into globals.
194
void TIntermediate::mergeBodies(TInfoSink& infoSink, TIntermSequence& globals, const TIntermSequence&
unitGlobals
)
200
for (unsigned int unitChild = 0; unitChild <
unitGlobals
.size() - 1; ++unitChild) {
202
TIntermAggregate* unitBody =
unitGlobals
[unitChild]->getAsAggregate();
211
globals.insert(globals.end() - 1,
unitGlobals
.begin(),
unitGlobals
.end() - 1);
[
all
...]
localintermediate.h
339
void mergeBodies(TInfoSink&, TIntermSequence& globals, const TIntermSequence&
unitGlobals
);
Completed in 68 milliseconds