OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:incrementcounts
(Results
1 - 2
of
2
) sorted by null
/external/deqp/doc/testspecs/GLES31/
functional.shaders.atomic_counter.txt
81
//
incrementCounts
[value] is how many times value was returned by atomicCounterIncrement()
82
incrementCounts
[]
92
while
incrementCounts
[pos] + decrementCounts[pos] == 0:
94
if
incrementCounts
[pos] > 0 and pos > resultValue:
95
incrementCounts
[pos]--
101
incrementCounts
[pos]--
110
// Check that
incrementCounts
and decrementCounts contain only zero values.
/external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp
717
vector<deUint32>
incrementCounts
;
744
incrementCounts
.resize(maxValue - minValue + 1, 0);
750
incrementCounts
[increments[valueNdx] - minValue]++;
761
while (
incrementCounts
[pos] + decrementCounts[pos] != 0)
763
if (
incrementCounts
[pos] > 0 && pos >= (int)(lastValue - minValue))
766
incrementCounts
[pos]--;
775
else if (
incrementCounts
[pos] > 0)
778
incrementCounts
[pos]--;
784
if (pos < 0 || pos >= (int)
incrementCounts
.size())
791
for (int valueNdx = 0; valueNdx < (int)
incrementCounts
.size(); valueNdx++
[
all
...]
Completed in 559 milliseconds