OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alphabetLen
(Results
1 - 5
of
5
) sorted by null
/external/deqp/framework/randomshaders/
rsgNameAllocator.cpp
41
deUint32
alphabetLen
= 'z' - 'a' + 1;
43
while (name >
alphabetLen
)
45
str.insert(str.begin(), (char)('a' + ((name-1)%
alphabetLen
)));
46
name = ((name-1) /
alphabetLen
);
49
str.insert(str.begin(), (char)('a' + (name%(
alphabetLen
+1)) - 1));
/external/deqp/external/vulkancts/modules/vulkan/ubo/
vktRandomUniformBlockCase.cpp
40
int
alphabetLen
= last - first + 1;
42
while (ndx >
alphabetLen
)
44
str.insert(str.begin(), (char)(first + ((ndx - 1) %
alphabetLen
)));
45
ndx = (ndx - 1) /
alphabetLen
;
48
str.insert(str.begin(), (char)(first + (ndx % (
alphabetLen
+ 1)) - 1));
/external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp
126
int
alphabetLen
= last - first + 1;
128
while (ndx >
alphabetLen
)
130
str.insert(str.begin(), (char)(first + ((ndx-1)%
alphabetLen
)));
131
ndx = ((ndx-1) /
alphabetLen
);
134
str.insert(str.begin(), (char)(first + (ndx%(
alphabetLen
+1)) - 1));
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutTests.cpp
169
int
alphabetLen
= last - first + 1;
171
while (ndx >
alphabetLen
)
173
str.insert(str.begin(), (char)(first + ((ndx-1)%
alphabetLen
)));
174
ndx = ((ndx-1) /
alphabetLen
);
177
str.insert(str.begin(), (char)(first + (ndx%(
alphabetLen
+1)) - 1));
[
all
...]
/external/deqp/modules/gles31/functional/
es31fSSBOLayoutTests.cpp
180
int
alphabetLen
= last - first + 1;
182
while (ndx >
alphabetLen
)
184
str.insert(str.begin(), (char)(first + ((ndx-1)%
alphabetLen
)));
185
ndx = ((ndx-1) /
alphabetLen
);
188
str.insert(str.begin(), (char)(first + (ndx%(
alphabetLen
+1)) - 1));
[
all
...]
Completed in 613 milliseconds