OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:arrayelementcount
(Results
1 - 2
of
2
) sorted by null
/external/deqp/modules/glshared/
glsAttributeLocationTests.cpp
844
const int
arrayElementCount
= (m_arraySize != Attribute::NOT_ARRAY ? m_arraySize : 1);
852
for (int loc = maxAttributes - (
arrayElementCount
* m_type.getLocationSize()); loc >= 0; loc -= (
arrayElementCount
* m_type.getLocationSize()))
908
const int
arrayElementCount
= (m_arraySize != Attribute::NOT_ARRAY ? m_arraySize : 1);
916
for (int loc = maxAttributes -
arrayElementCount
* m_type.getLocationSize(); loc >= 0; loc -= m_type.getLocationSize() *
arrayElementCount
)
946
const int
arrayElementCount
= (m_arraySize != Attribute::NOT_ARRAY ? m_arraySize : 1);
958
for (int loc = 1 + m_type.getLocationSize() *
arrayElementCount
; loc < maxAttributes; loc++)
986
const int
arrayElementCount
= (m_arraySize != Attribute::NOT_ARRAY ? m_arraySize : 1);
994
for (int loc = maxAttributes -
arrayElementCount
* m_type.getLocationSize(); loc >= 0; loc -= m_type.getLocationSize() * arrayElementCount
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp
230
uint64_t
ArrayElementCount
= Init->getType()->getArrayNumElements();
231
if (
ArrayElementCount
> 1024) return nullptr; // Don't blow up on huge arrays.
299
for (unsigned i = 0, e =
ArrayElementCount
; i != e; ++i) {
478
if (
ArrayElementCount
<= Idx->getType()->getIntegerBitWidth())
481
Ty = DL->getSmallestLegalIntType(Init->getContext(),
ArrayElementCount
);
482
else if (
ArrayElementCount
<= 32)
[
all
...]
Completed in 163 milliseconds