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:n_sign
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Python/
H
A
D
formatter_unicode.c
419
Py_ssize_t
n_sign
; /* number of digits needed for sign (0/1) */
member
491
spec->
n_sign
= 0;
in calc_number_widths()
516
spec->
n_sign
= 1;
in calc_number_widths()
520
spec->
n_sign
= 1;
in calc_number_widths()
526
spec->
n_sign
= 1;
in calc_number_widths()
532
n_non_digit_non_padding = spec->
n_sign
+ spec->n_prefix + spec->n_decimal +
in calc_number_widths()
594
return spec->n_lpadding + spec->
n_sign
+ spec->n_prefix +
in calc_number_widths()
620
if (spec->
n_sign
== 1) {
in fill_number()
/third_party/python/Modules/_decimal/libmpdec/
H
A
D
io.c
994
mpd_ssize_t n_sep,
n_sign
, consume;
in _mpd_add_sep_dot()
local
998
n_sign
= sign ? 1 : 0;
in _mpd_add_sep_dot()
1031
dest->nchars +
n_sign
< spec->min_width) {
in _mpd_add_sep_dot()
1034
n_src = spec->min_width - (dest->nchars +
n_sign
);
in _mpd_add_sep_dot()
H
A
D
mpdecimal.c
3050
int x_sign,
n_sign
;
in mpd_qscaleb()
local
3084
n_sign
= mpd_isnegative(b) ? 1 : 0;
in mpd_qscaleb()
3086
if (x_sign ==
n_sign
) {
in mpd_qscaleb()
3091
x_sign = (x >= n) ? x_sign :
n_sign
;
in mpd_qscaleb()
Completed in 15 milliseconds