OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lookupIndices
(Results
1 - 3
of
3
) sorted by null
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
Feature.java
13
private int[]
lookupIndices
;
21
lookupIndices
= new int[10];
28
if (lookupCount >=
lookupIndices
.length) {
29
int[] newLookupIndices = new int[
lookupIndices
.length + 5];
31
System.arraycopy(
lookupIndices
, 0, newLookupIndices, 0,
lookupIndices
.length);
32
lookupIndices
= newLookupIndices;
35
lookupIndices
[lookupCount] = theLookupIndex;
46
writer.writeData(
lookupIndices
[i]);
/external/deqp/modules/gles31/functional/
es31fOpaqueTypeIndexingTests.cpp
345
void getShaderSpec (ShaderSpec* spec, int numSamplers, int numLookups, const int*
lookupIndices
, const RenderContext& renderContext) const;
395
void SamplerIndexingCase::getShaderSpec (ShaderSpec* spec, int numSamplers, int numLookups, const int*
lookupIndices
, const RenderContext& renderContext) const
449
code <<
lookupIndices
[lookupNdx];
451
code << "indexBase + " << (
lookupIndices
[lookupNdx]-1);
494
vector<int>
lookupIndices
(numLookups);
504
lookupIndices
[ndx] = rnd.getInt(0, numSamplers-1);
506
getShaderSpec(&shaderSpec, numSamplers, numLookups, &
lookupIndices
[0], m_context.getRenderContext());
533
const int maxIndex = maxElement(
lookupIndices
);
563
expandedIndices.resize(numInvocations *
lookupIndices
.size());
567
expandedIndices[lookupNdx*numInvocations + invNdx] =
lookupIndices
[lookupNdx]
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp
430
const std::vector<int>&
lookupIndices
);
448
const std::vector<int>&
lookupIndices
)
451
, m_lookupIndices (
lookupIndices
)
[
all
...]
Completed in 2360 milliseconds