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_MINALLOC
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Modules/_decimal/libmpdec/
H
A
D
mpalloc.c
47
mpd_ssize_t
MPD_MINALLOC
= MPD_MINALLOC_MIN;
variable
158
nwords = (nwords <
MPD_MINALLOC
) ?
MPD_MINALLOC
: nwords;
in mpd_qnew_size()
180
/* Allocate a new decimal with a coefficient of length
MPD_MINALLOC
.
185
return mpd_qnew_size(
MPD_MINALLOC
);
in mpd_qnew()
H
A
D
context.c
47
be used once at program start. Setting
MPD_MINALLOC
to out-of-bounds
57
"
MPD_MINALLOC
a second time\n");
in mpd_setminalloc()
61
mpd_err_fatal("illegal value for
MPD_MINALLOC
"); /* GCOV_NOT_REACHED */
in mpd_setminalloc()
63
MPD_MINALLOC
= n;
in mpd_setminalloc()
H
A
D
mpdecimal.c
478
* Input invariant:
MPD_MINALLOC
<= result->alloc.
503
assert(
MPD_MINALLOC
<= result->alloc);
in mpd_qresize()
505
nwords = (nwords <=
MPD_MINALLOC
) ?
MPD_MINALLOC
: nwords;
in mpd_qresize()
525
assert(
MPD_MINALLOC
<= result->alloc);
in mpd_qresize_cxx()
527
nwords = (nwords <=
MPD_MINALLOC
) ?
MPD_MINALLOC
: nwords;
in mpd_qresize_cxx()
548
assert(
MPD_MINALLOC
<= result->alloc);
in mpd_qresize_zero()
550
nwords = (nwords <=
MPD_MINALLOC
) ?
MPD_MINALLOC
in mpd_qresize_zero()
[all...]
H
A
D
mpdecimal.h
303
extern mpd_ssize_t
MPD_MINALLOC
;
Completed in 12 milliseconds