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:xsb
(Results
1 - 3
of
3
) sorted by relevance
/third_party/jerryscript/jerry-libm/
H
A
D
exp.c
124
int k = 0,
xsb
;
in exp()
local
128
xsb
= (hx >> 31) & 1; /* sign bit of x */
in exp()
142
return (
xsb
== 0) ? x : 0.0;
in exp()
160
hi = x - ln2HI[
xsb
];
in exp()
161
lo = ln2LO[
xsb
];
in exp()
162
k = 1 -
xsb
-
xsb
;
in exp()
166
k = (int) (invln2 * x + halF[
xsb
]);
in exp()
H
A
D
expm1.c
144
int k,
xsb
;
in expm1()
local
148
xsb
= hx & 0x80000000; /* sign bit of x */
in expm1()
170
return (
xsb
== 0) ? x : -1.0;
in expm1()
179
if (
xsb
!= 0)
in expm1()
197
if (
xsb
== 0)
in expm1()
212
k = (int) (invln2 * x + ((
xsb
== 0) ? 0.5 : -0.5));
in expm1()
/third_party/node/deps/v8/src/base/
H
A
D
ieee754.cc
1467
int32_t k = 0,
xsb
;
in exp()
local
1471
xsb
= (hx >> 31) & 1; /* sign bit of x */
in exp()
1482
return (
xsb
== 0) ? x : 0.0; /* exp(+-inf)={inf,0} */
in exp()
1496
hi = x - ln2HI[
xsb
];
in exp()
1497
lo = ln2LO[
xsb
];
in exp()
1498
k = 1 -
xsb
-
xsb
;
in exp()
1500
k = static_cast<int>(invln2 * x + halF[
xsb
]);
in exp()
2228
int32_t k,
xsb
;
in expm1()
local
2232
xsb
in expm1()
[all...]
Completed in 5 milliseconds