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:EXPONENT_BIAS
(Results
1 - 12
of
12
) sorted by relevance
/third_party/rust/crates/minimal-lexical/src/
H
A
D
num.rs
79
const
EXPONENT_BIAS
: i32;
consts
98
const INFINITE_POWER: i32 = Self::MAX_EXPONENT + Self::
EXPONENT_BIAS
;
188
biased_e - Self::
EXPONENT_BIAS
in exponent()
211
const
EXPONENT_BIAS
: i32 = 127 + Self::MANTISSA_SIZE;
consts
212
const DENORMAL_EXPONENT: i32 = 1 - Self::
EXPONENT_BIAS
;
213
const MAX_EXPONENT: i32 = 0xFF - Self::
EXPONENT_BIAS
;
259
const
EXPONENT_BIAS
: i32 = 1023 + Self::MANTISSA_SIZE;
consts
260
const DENORMAL_EXPONENT: i32 = 1 - Self::
EXPONENT_BIAS
;
261
const MAX_EXPONENT: i32 = 0x7FF - Self::
EXPONENT_BIAS
;
H
A
D
lemire.rs
166
let power2 = power(q as i32) + F::
EXPONENT_BIAS
- hilz - lz - 62;
in compute_error_scaled()
H
A
D
bellerophon.rs
113
fp.exp += F::
EXPONENT_BIAS
;
in bellerophon()
190
// - F::
EXPONENT_BIAS
-64 + 1`, or `biased_exp <= F::MANTISSA_SIZE - 63`,
in error_is_accurate()
194
// The unbiased check calculation for bits is `1 - F::
EXPONENT_BIAS
- unbiased_exp`,
in error_is_accurate()
H
A
D
slow.rs
80
let exp = bigmant.bit_length() as i32 - 64 + F::
EXPONENT_BIAS
;
in positive_digit_comp()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-unittests/
H
A
D
to_toml.py
83
return biased_e - self.
EXPONENT_BIAS
103
EXPONENT_BIAS
= np.int32(127 + MANTISSA_SIZE)
variable in Float32
104
DENORMAL_EXPONENT = np.int32(1 -
EXPONENT_BIAS
)
117
EXPONENT_BIAS
= np.int32(1023 + MANTISSA_SIZE)
variable in Float64
118
DENORMAL_EXPONENT = np.int32(1 -
EXPONENT_BIAS
)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H
A
D
vktShaderFConvertTests.cpp
76
int exponent = rnd.getInt(1 - T::
EXPONENT_BIAS
, T::
EXPONENT_BIAS
+ 1);
in getRandomNormal()
H
A
D
vktShaderCommonFunctionTests.cpp
646
const deUint64 exponentBias = (isDouble ? static_cast<deUint64>(tcu::Float64::
EXPONENT_BIAS
) : static_cast<deUint64>(tcu::Float32::
EXPONENT_BIAS
));
in infNanRandomFloats()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H
A
D
vktShaderFConvertTests.cpp
76
int exponent = rnd.getInt(1 - T::
EXPONENT_BIAS
, T::
EXPONENT_BIAS
+ 1);
in getRandomNormal()
H
A
D
vktShaderCommonFunctionTests.cpp
646
const deUint64 exponentBias = (isDouble ? static_cast<deUint64>(tcu::Float64::
EXPONENT_BIAS
) : static_cast<deUint64>(tcu::Float32::
EXPONENT_BIAS
));
in infNanRandomFloats()
/third_party/vk-gl-cts/framework/common/
H
A
D
tcuFloat.hpp
65
EXPONENT_BIAS
= ExponentBias,
enumerator
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H
A
D
vktSpvAsmFloatControlsTests.cpp
2704
DE_ASSERT(returnedFloat.
EXPONENT_BIAS
== 15);
in compareBytes()
2710
DE_ASSERT(returnedFloat.
EXPONENT_BIAS
== 15);
in compareBytes()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H
A
D
vktSpvAsmFloatControlsTests.cpp
2702
DE_ASSERT(returnedFloat.
EXPONENT_BIAS
== 15);
in compareBytes()
2708
DE_ASSERT(returnedFloat.
EXPONENT_BIAS
== 15);
in compareBytes()
Completed in 24 milliseconds