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:MPD_SSIZE_MIN
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Modules/_decimal/libmpdec/
H
A
D
io.h
50
if (errno == 0 && (retval > MPD_SSIZE_MAX || retval <
MPD_SSIZE_MIN
)) {
in mpd_strtossize()
54
return (retval < 0) ?
MPD_SSIZE_MIN
: MPD_SSIZE_MAX;
in mpd_strtossize()
H
A
D
io.c
275
dec->exp ==
MPD_SSIZE_MIN
)))
in mpd_qset_string()
288
if (dec->exp <
MPD_SSIZE_MIN
+(mpd_ssize_t)fracdigits) {
in mpd_qset_string()
289
dec->exp =
MPD_SSIZE_MIN
;
in mpd_qset_string()
301
if (dec->exp ==
MPD_SSIZE_MIN
) {
in mpd_qset_string()
302
dec->exp =
MPD_SSIZE_MIN
+1;
in mpd_qset_string()
381
/* Print exponent x to string s. Undefined for
MPD_SSIZE_MIN
. */
H
A
D
mpdecimal.h
136
#define
MPD_SSIZE_MIN
INT64_MIN
macro
181
#define
MPD_SSIZE_MIN
INT32_MIN
macro
729
/* number of digits in the exponent, undefined for
MPD_SSIZE_MIN
*/
H
A
D
mpdecimal.c
256
/* Number of digits in the exponent. Not defined for
MPD_SSIZE_MIN
. */
1105
if (a ==
MPD_SSIZE_MIN
) {
in mpd_qsset_ssize()
1107
(-(
MPD_SSIZE_MIN
+MPD_SSIZE_MAX));
in mpd_qsset_ssize()
1427
else if (isneg && u+(
MPD_SSIZE_MIN
+MPD_SSIZE_MAX) == MPD_SSIZE_MAX) {
in mpd_qget_ssize()
1428
return
MPD_SSIZE_MIN
;
in mpd_qget_ssize()
8790
if (triple->exp <
MPD_SSIZE_MIN
|| triple->exp > MPD_SSIZE_MAX) {
in mpd_from_uint128_triple()
8837
if (exp ==
MPD_SSIZE_MIN
) {
in mpd_from_uint128_triple()
8838
exp =
MPD_SSIZE_MIN
+1;
in mpd_from_uint128_triple()
/third_party/python/Modules/_decimal/
H
A
D
_decimal.c
3826
q.exp = (y ==
MPD_SSIZE_MIN
) ? MPD_SSIZE_MAX : -y;
in PyDec_Round()
Completed in 24 milliseconds