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:deSign
(Results
1 - 9
of
9
) sorted by relevance
/third_party/vk-gl-cts/framework/common/
H
A
D
tcuFloatFormat.cpp
157
const double rSign =
deSign
(d);
in clampValue()
208
return
deSign
(d) * getMaxValue();
in roundOut()
329
return
deSign
(d);
/third_party/vk-gl-cts/framework/delibs/debase/
H
A
D
deMath.h
177
DE_INLINE double
deSign
(double x) { return deIsNaN(x) ? x : (double)((x > 0.0) - (x < 0.0)); }
in deSign()
function
186
DE_INLINE double deTrunc (double a) { return
deSign
(a) * floor(fabs(a)); }
in deTrunc()
210
DE_INLINE double deCbrt (double a) { return
deSign
(a) * dePow(deAbs(a), 1.0 / 3.0); }
in deCbrt()
/third_party/vk-gl-cts/modules/glshared/
H
A
D
glsBuiltinPrecisionTests.cpp
3252
Sign (void) : PreciseFunc1("sign",
deSign
) {}
in Sign()
3282
ret |= truncated +
deSign
(fract);
in applyPoint()
3520
if (
deSign
(loFrac) !=
deSign
(hiFrac))
in doApply()
3524
if (
deSign
(loFrac) < 0)
in doApply()
3526
if (
deSign
(hiFrac) > 0)
in doApply()
3535
ret =
deSign
(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5);
in doApply()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H
A
D
vktShaderBuiltinPrecisionTests.cpp
4204
Sign (void) : PreciseFunc1<T> ("sign",
deSign
) {}
in Sign()
4237
ret |= truncated +
deSign
(fract);
in applyPoint()
4523
if (
deSign
(loFrac) !=
deSign
(hiFrac))
in doApply()
4527
if (
deSign
(loFrac) < 0)
in doApply()
4529
if (
deSign
(hiFrac) > 0)
in doApply()
4538
ret =
deSign
(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5);
in doApply()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H
A
D
vktShaderBuiltinPrecisionTests.cpp
4193
Sign (void) : PreciseFunc1<T> ("sign",
deSign
) {}
in Sign()
4226
ret |= truncated +
deSign
(fract);
in applyPoint()
4512
if (
deSign
(loFrac) !=
deSign
(hiFrac))
in doApply()
4516
if (
deSign
(loFrac) < 0)
in doApply()
4518
if (
deSign
(hiFrac) > 0)
in doApply()
4527
ret =
deSign
(loFrac) * Interval(0.5, 1.0 - DBL_EPSILON*0.5);
in doApply()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
H
A
D
vktRasterizationTests.cpp
3139
const char sign =
deSign
(coord) < 0 ? '-' : '+';
3915
const char sign =
deSign
(coord) < 0 ? '-' : '+';
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
H
A
D
vktRasterizationTests.cpp
2887
const char sign =
deSign
(coord) < 0 ? '-' : '+';
3663
const char sign =
deSign
(coord) < 0 ? '-' : '+';
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H
A
D
vktSpvAsmInstructionTests.cpp
14503
const double result (
deSign
(d));
14682
if (
deSign
(c1 * c2) < 0.0)
14999
result =
deSign
(d) * lsxsq.asDouble();
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H
A
D
vktSpvAsmInstructionTests.cpp
14405
const double result (
deSign
(d));
14584
if (
deSign
(c1 * c2) < 0.0)
14901
result =
deSign
(d) * lsxsq.asDouble();
Completed in 103 milliseconds