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:IsNaN
(Results
1 - 24
of
24
) sorted by relevance
/third_party/vixl/test/aarch32/
H
A
D
test-utils-aarch32.cc
216
if (
IsNaN
(expected) || (expected == 0.0)) {
in EqualFP32()
244
if (
IsNaN
(expected) || (expected == 0.0)) {
in EqualFP64()
/third_party/vixl/src/
H
A
D
utils-vixl.h
563
inline bool
IsNaN
(float value) { return std::isnan(value); }
in IsNaN()
function
565
inline bool
IsNaN
(double value) { return std::isnan(value); }
in IsNaN()
function
567
inline bool
IsNaN
(Float16 value) { return Float16Classify(value) == FP_NAN; }
in IsNaN()
function
582
if (
IsNaN
(num) && ((raw & kFP64QuietNaNMask) == 0)) {
in IsSignallingNaN()
592
if (
IsNaN
(num) && ((raw & kFP32QuietNaNMask) == 0)) {
in IsSignallingNaN()
601
return
IsNaN
(num) && ((Float16ToRawbits(num) & kFP16QuietNaNMask) == 0);
in IsSignallingNaN()
607
return
IsNaN
(num) && !IsSignallingNaN(num);
in IsQuietNaN()
614
VIXL_ASSERT(
IsNaN
(num));
in ToQuietNaN()
621
VIXL_ASSERT(
IsNaN
(num));
in ToQuietNaN()
628
VIXL_ASSERT(
IsNaN
(nu
in ToQuietNaN()
[all...]
H
A
D
utils-vixl.cc
245
if (
IsNaN
(*this) ||
IsNaN
(rhs)) {
in operator ==()
/third_party/vixl/test/aarch64/
H
A
D
test-assembler-fp-aarch64.cc
1428
if (
IsNaN
(n) && ((raw_n & kFP32QuietNaNMask) == 0)) {
in MinMaxHelper()
1431
} else if (
IsNaN
(m) && ((raw_m & kFP32QuietNaNMask) == 0)) {
in MinMaxHelper()
1435
if (
IsNaN
(n)) {
in MinMaxHelper()
1438
} else if (
IsNaN
(m)) {
in MinMaxHelper()
1444
if (
IsNaN
(n) && !
IsNaN
(m)) {
in MinMaxHelper()
1447
} else if (!
IsNaN
(n) &&
IsNaN
(m)) {
in MinMaxHelper()
1469
if (
IsNaN
(n) && ((raw_n & kFP64QuietNaNMask) == 0)) {
in MinMaxHelper()
1472
} else if (
IsNaN
(
in MinMaxHelper()
[all...]
H
A
D
test-utils-aarch64.cc
115
if (
IsNaN
(expected) || IsZero(expected)) {
in EqualFP16()
137
if (
IsNaN
(expected) || (expected == 0.0)) {
in EqualFP32()
160
if (
IsNaN
(expected) || (expected == 0.0)) {
in EqualFP64()
H
A
D
test-api-aarch64.cc
157
VIXL_CHECK(
IsNaN
(vixl::aarch64::kFP16DefaultNaN) ==
in TEST()
158
IsNaN
(vixl::kFP16DefaultNaN));
in TEST()
H
A
D
test-assembler-neon-aarch64.cc
10636
if (
IsNaN
(n)) {
in MinMaxHelper()
10639
} else if (
IsNaN
(m)) {
in MinMaxHelper()
10645
if (
IsNaN
(n) && !
IsNaN
(m)) {
in MinMaxHelper()
10648
} else if (!
IsNaN
(n) &&
IsNaN
(m)) {
in MinMaxHelper()
/third_party/node/deps/v8/testing/
H
A
D
gmock-support.h
85
MATCHER(
IsNaN
, std::string(negation ? "isn't" : "is") + " not a number") {
in MATCHER()
/third_party/node/deps/v8/src/compiler/
H
A
D
machine-operator-reducer.cc
505
if (m.right().
IsNaN
()) { // x - NaN => NaN
in Reduce()
508
if (m.left().
IsNaN
()) { // NaN - x => NaN
in Reduce()
536
if (m.right().
IsNaN
()) { // x + NaN => NaN
in Reduce()
539
if (m.left().
IsNaN
()) { // NaN + x => NaN
in Reduce()
554
if (m.right().
IsNaN
()) { // x - NaN => NaN
in Reduce()
557
if (m.left().
IsNaN
()) { // NaN - x => NaN
in Reduce()
593
if (m.right().
IsNaN
()) { // x * NaN => NaN
in Reduce()
612
if (m.right().
IsNaN
()) { // x / NaN => NaN
in Reduce()
615
if (m.left().
IsNaN
()) { // NaN / x => NaN
in Reduce()
642
if (m.right().
IsNaN
()) { //
in Reduce()
[all...]
H
A
D
node-matchers.h
203
bool
IsNaN
() const {
in IsNaN()
function
/third_party/vixl/src/aarch64/
H
A
D
logic-aarch64.cc
4477
if (
IsNaN
(result)) {
4495
VIXL_ASSERT(!
IsNaN
(op1) && !
IsNaN
(op2));
4510
return
IsNaN
(result) ? result : FPMul(op1, op2);
4516
VIXL_ASSERT(!
IsNaN
(op1) && !
IsNaN
(op2));
4552
if (
IsNaN
(result)) {
4575
VIXL_ASSERT(!
IsNaN
(result));
4593
VIXL_ASSERT(!
IsNaN
(op1) && !
IsNaN
(op
[all...]
H
A
D
simulator-aarch64.h
5192
VIXL_ASSERT(
IsNaN
(op));
5205
} else if (
IsNaN
(op1)) {
5208
} else if (
IsNaN
(op2)) {
5224
} else if (
IsNaN
(op1)) {
5227
} else if (
IsNaN
(op2)) {
5230
} else if (
IsNaN
(op3)) {
H
A
D
simulator-aarch64.cc
1113
if ((
IsNaN
(val0) != 0) || (
IsNaN
(val1) != 0)) {
in Simulator()
1389
if (
IsNaN
(element)) {
in Simulator()
6646
if (
IsNaN
(result)) {
in Simulator()
6652
if (
IsNaN
(result)) {
in Simulator()
/third_party/node/deps/v8/src/objects/
H
A
D
option-utils.cc
141
if (value_num->
IsNaN
() || value_num->Number() < min ||
in DefaultNumberOption()
H
A
D
js-number-format.cc
1692
double number = numeric_obj->
IsNaN
()
in IcuFormatNumber()
1735
DCHECK(!obj->
IsNaN
());
in ToFormattable()
1972
if (x->
IsNaN
()) {
in PartitionNumberRangePattern()
1979
if (y->
IsNaN
()) {
in PartitionNumberRangePattern()
2115
numeric_obj->
IsNaN
());
in FormatNumeric()
2131
return FormatToJSArray(isolate, &formatted, fmt, numeric_obj->
IsNaN
(), false);
in FormatToParts()
H
A
D
js-relative-time-format.cc
386
value->
IsNaN
());
in FormatCommon()
H
A
D
objects.h
354
V8_INLINE bool
IsNaN
() const;
H
A
D
objects-inl.h
470
bool Object::
IsNaN
() const {
in IsNaN()
function in v8::internal::Object
H
A
D
elements.cc
2312
if (!value.
IsNaN
()) {
in IncludesValueImpl()
2369
if (elements.get(static_cast<int>(k)).
IsNaN
()) return Just(true);
in IncludesValueImpl()
2609
if (value.
IsNaN
()) return Just<int64_t>(-1);
in IndexOfValueImpl()
3009
if (value.
IsNaN
()) {
in IndexOfValueImpl()
H
A
D
string.cc
1502
if (position->
IsNaN
()) {
in LastIndexOf()
/third_party/node/deps/v8/src/asmjs/
H
A
D
asm-js.cc
66
if (!value->
IsNaN
()) return false;
in AreStdlibMembersValid()
/third_party/node/deps/v8/src/builtins/
H
A
D
builtins-intl.cc
1025
if (x->
IsNaN
()) {
in BUILTIN()
1030
if (y->
IsNaN
()) {
in BUILTIN()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H
A
D
stylo.hpp
[all...]
/third_party/sqlite/src/
H
A
D
sqlite3.c
19964
# define
IsNaN
(X) (((X)&EXP754)==EXP754 && ((X)&MAN754)!=0)
macro
19967
# define
IsNaN
(X) 0
macro
[all...]
Completed in 228 milliseconds