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:deFloatIsNaN
(Results
1 - 8
of
8
) sorted by relevance
/third_party/vk-gl-cts/framework/common/
H
A
D
tcuTextureUtil.cpp
1280
minVal[0] = (
deFloatIsNaN
(p[0]) ? minVal[0] : de::min(minVal[0], p[0]));
1281
minVal[1] = (
deFloatIsNaN
(p[1]) ? minVal[1] : de::min(minVal[1], p[1]));
1282
minVal[2] = (
deFloatIsNaN
(p[2]) ? minVal[2] : de::min(minVal[2], p[2]));
1283
minVal[3] = (
deFloatIsNaN
(p[3]) ? minVal[3] : de::min(minVal[3], p[3]));
1285
maxVal[0] = (
deFloatIsNaN
(p[0]) ? maxVal[0] : de::max(maxVal[0], p[0]));
1286
maxVal[1] = (
deFloatIsNaN
(p[1]) ? maxVal[1] : de::max(maxVal[1], p[1]));
1287
maxVal[2] = (
deFloatIsNaN
(p[2]) ? maxVal[2] : de::max(maxVal[2], p[2]));
1288
maxVal[3] = (
deFloatIsNaN
(p[3]) ? maxVal[3] : de::max(maxVal[3], p[3]));
/third_party/vk-gl-cts/framework/delibs/debase/
H
A
D
deMath.h
68
DE_INLINE deBool
deFloatIsNaN
(float x) { return (x != x); }
in deFloatIsNaN()
function
/third_party/vk-gl-cts/modules/internal/
H
A
D
ditFrameworkTests.cpp
665
} while (deFloatIsInf(v) ||
deFloatIsNaN
(v));
in ConstantInterpolationTest()
H
A
D
ditTextureFormatTests.cpp
1318
return (a == b) || (
deFloatIsNaN
(a) &&
deFloatIsNaN
(b));
in componentEqual()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H
A
D
vktSpvAsmGraphicsShaderTestUtil.cpp
4625
if (deFloatIsInf(outputFloats[expectedNdx]) ||
deFloatIsNaN
(outputFloats[expectedNdx]))
in runAndVerifyDefaultPipeline()
H
A
D
vktSpvAsmInstructionTests.cpp
5701
if (!
deFloatIsNaN
(output_as_float[idx]))
in compareNan()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H
A
D
vktSpvAsmGraphicsShaderTestUtil.cpp
4622
if (deFloatIsInf(outputFloats[expectedNdx]) ||
deFloatIsNaN
(outputFloats[expectedNdx]))
in runAndVerifyDefaultPipeline()
H
A
D
vktSpvAsmInstructionTests.cpp
5700
if (!
deFloatIsNaN
(output_as_float[idx]))
in compareNan()
Completed in 70 milliseconds