Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:numLoopIters
(Results
1 - 5
of
5
) sorted by relevance
/third_party/vk-gl-cts/external/openglcts/modules/common/
H
A
D
glcShaderLoopTests.cpp
255
// \todo [petri] Pass
numLoopIters
from outside?
in createGenericLoopCase()
256
int
numLoopIters
= 3;
in createGenericLoopCase()
local
262
op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
267
op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
269
if (
numLoopIters
!= 1)
in createGenericLoopCase()
314
iterMaxStr = de::toString(
numLoopIters
);
in createGenericLoopCase()
316
iterMaxStr = getIntUniformName(
numLoopIters
);
in createGenericLoopCase()
318
iterMaxStr = string(getIntUniformName(
numLoopIters
)) + "*one";
in createGenericLoopCase()
344
incrementStr = string("ndx += ") + de::toString(1.0f / static_cast<float>(
numLoopIters
));
in createGenericLoopCase()
346
incrementStr = string("ndx += ") + getFloatFractionUniformName(
numLoopIters
);
in createGenericLoopCase()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H
A
D
es3fShaderLoopTests.cpp
277
// \todo [petri] Pass
numLoopIters
from outside?
in createGenericLoopCase()
278
int
numLoopIters
= 3;
in createGenericLoopCase()
local
284
op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
289
op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
291
if (
numLoopIters
!= 1)
in createGenericLoopCase()
336
iterMaxStr = de::toString(
numLoopIters
);
in createGenericLoopCase()
338
iterMaxStr = getIntUniformName(
numLoopIters
);
in createGenericLoopCase()
340
iterMaxStr = string(getIntUniformName(
numLoopIters
)) + "*one";
in createGenericLoopCase()
366
incrementStr = string("ndx += ") + de::toString(1.0f / (float)
numLoopIters
);
in createGenericLoopCase()
368
incrementStr = string("ndx += ") + getFloatFractionUniformName(
numLoopIters
);
in createGenericLoopCase()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H
A
D
vktShaderRenderLoopTests.cpp
346
const int
numLoopIters
= 3;
in createGenericLoopCase()
local
356
op << " ${COUNTER_PRECISION} int " << getIntUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
358
uniformInformations.push_back(getIntUniformType(
numLoopIters
));
in createGenericLoopCase()
366
op << " ${COUNTER_PRECISION} float " << getFloatFractionUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
368
uniformInformations.push_back(getFloatFractionUniformType(
numLoopIters
));
in createGenericLoopCase()
372
if (
numLoopIters
!= 1){
in createGenericLoopCase()
423
iterMaxStr = de::toString(
numLoopIters
);
in createGenericLoopCase()
425
iterMaxStr = getIntUniformName(
numLoopIters
);
in createGenericLoopCase()
427
iterMaxStr = std::string(getIntUniformName(
numLoopIters
)) + "*one";
in createGenericLoopCase()
453
incrementStr = std::string("ndx += ") + de::toString(1.0f / (float)
numLoopIters
);
in createGenericLoopCase()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H
A
D
vktShaderRenderLoopTests.cpp
348
const int
numLoopIters
= 3;
in createGenericLoopCase()
local
358
op << " ${COUNTER_PRECISION} int " << getIntUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
360
uniformInformations.push_back(getIntUniformType(
numLoopIters
));
in createGenericLoopCase()
368
op << " ${COUNTER_PRECISION} float " << getFloatFractionUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
370
uniformInformations.push_back(getFloatFractionUniformType(
numLoopIters
));
in createGenericLoopCase()
374
if (
numLoopIters
!= 1){
in createGenericLoopCase()
425
iterMaxStr = de::toString(
numLoopIters
);
in createGenericLoopCase()
427
iterMaxStr = getIntUniformName(
numLoopIters
);
in createGenericLoopCase()
429
iterMaxStr = std::string(getIntUniformName(
numLoopIters
)) + "*one";
in createGenericLoopCase()
455
incrementStr = std::string("ndx += ") + de::toString(1.0f / (float)
numLoopIters
);
in createGenericLoopCase()
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H
A
D
es2fShaderLoopTests.cpp
305
// \todo [petri] Pass
numLoopIters
from outside?
in createGenericLoopCase()
306
int
numLoopIters
= 3;
in createGenericLoopCase()
local
312
op << "uniform ${COUNTER_PRECISION} int " << getIntUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
317
op << "uniform ${COUNTER_PRECISION} float " << getFloatFractionUniformName(
numLoopIters
) << ";\n";
in createGenericLoopCase()
319
if (
numLoopIters
!= 1)
in createGenericLoopCase()
364
iterMaxStr = de::toString(
numLoopIters
);
in createGenericLoopCase()
366
iterMaxStr = getIntUniformName(
numLoopIters
);
in createGenericLoopCase()
368
iterMaxStr = string(getIntUniformName(
numLoopIters
)) + "*one";
in createGenericLoopCase()
394
incrementStr = string("ndx += ") + de::toString(1.0f / (float)
numLoopIters
);
in createGenericLoopCase()
396
incrementStr = string("ndx += ") + getFloatFractionUniformName(
numLoopIters
);
in createGenericLoopCase()
[all...]
Completed in 6 milliseconds