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:fraction_part
(Results
1 - 2
of
2
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/base/
H
A
D
ecma-helpers-conversion.c
943
double integer_part,
fraction_part
;
in ecma_double_to_binary_floating_point()
local
945
fraction_part
= fmod (val, 1.0);
in ecma_double_to_binary_floating_point()
978
while (
fraction_part
> 0 && char_cnt < ECMA_MAX_CHARS_IN_STRINGIFIED_NUMBER - 1)
in ecma_double_to_binary_floating_point()
980
fraction_part
*= 10;
in ecma_double_to_binary_floating_point()
981
double tmp =
fraction_part
;
in ecma_double_to_binary_floating_point()
982
fraction_part
= fmod (
fraction_part
, 1.0);
in ecma_double_to_binary_floating_point()
/third_party/ffmpeg/libavformat/
H
A
D
movenc.c
4266
int32_t
fraction_part
= latitudex10000 - (whole_part * 10000);
local
4267
if (
fraction_part
< 0) {
4268
fraction_part
= -
fraction_part
;
4270
snprintf(&latitude_str[4], 5, "%.4d.",
fraction_part
);
4283
fraction_part
= longitudex10000 - (whole_part * 10000);
4284
if (
fraction_part
< 0) {
4285
fraction_part
= -
fraction_part
;
4287
snprintf(&longitude_str[5], 5, "%.4d.",
fraction_part
);
[all...]
Completed in 10 milliseconds