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:UNITY_IS_NAN
(Results
1 - 2
of
2
) sorted by relevance
/third_party/unity/src/
H
A
D
unity.c
359
else if (
UNITY_IS_NAN
(number))
in UnityPrintFloat()
903
return !(
UNITY_IS_NAN
(diff) || UNITY_IS_INF(diff) || ((diff) > (delta)))
906
#define UNITY_NAN_CHECK
UNITY_IS_NAN
(expected) &&
UNITY_IS_NAN
(actual)
962
if (
UNITY_IS_NAN
(in_delta))
in UnityAssertWithinFloatArray()
1110
is_trait =
UNITY_IS_NAN
(actual) ? 1 : 0;
in UnityAssertFloatSpecial()
1115
is_trait = !UNITY_IS_INF(actual) && !
UNITY_IS_NAN
(actual);
in UnityAssertFloatSpecial()
1190
if (
UNITY_IS_NAN
(in_delta))
in UnityAssertWithinDoubleArray()
1337
is_trait =
UNITY_IS_NAN
(actual) ? 1 : 0;
in UnityAssertDoubleSpecial()
1342
is_trait = !UNITY_IS_INF(actual) && !
UNITY_IS_NAN
(actua
in UnityAssertDoubleSpecial()
[all...]
H
A
D
unity_internals.h
245
#ifndef
UNITY_IS_NAN
249
#define
UNITY_IS_NAN
(n) ((n != n) ? 1 : 0)
macro
251
#define
UNITY_IS_NAN
(n) isnan(n)
macro
259
#define UNITY_IS_INF(n) (
UNITY_IS_NAN
((n) - (n)) && !
UNITY_IS_NAN
(n))
Completed in 6 milliseconds