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:nblimbs
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mbedtls/include/mbedtls/
H
A
D
bignum.h
267
* \param
nblimbs
The target number of limbs.
273
int mbedtls_mpi_grow(mbedtls_mpi *X, size_t
nblimbs
);
279
* If \c X is smaller than \c
nblimbs
, it is resized up
283
* \param
nblimbs
The minimum number of limbs to keep.
290
int mbedtls_mpi_shrink(mbedtls_mpi *X, size_t
nblimbs
);
/third_party/mbedtls/library/
H
A
D
bignum.c
208
int mbedtls_mpi_grow(mbedtls_mpi *X, size_t
nblimbs
)
in mbedtls_mpi_grow()
argument
212
if (
nblimbs
> MBEDTLS_MPI_MAX_LIMBS) {
in mbedtls_mpi_grow()
216
if (X->n <
nblimbs
) {
in mbedtls_mpi_grow()
217
if ((p = (mbedtls_mpi_uint *) mbedtls_calloc(
nblimbs
, ciL)) == NULL) {
in mbedtls_mpi_grow()
226
/*
nblimbs
fits in n because we ensure that MBEDTLS_MPI_MAX_LIMBS
in mbedtls_mpi_grow()
227
* fits, and we've checked that
nblimbs
<= MBEDTLS_MPI_MAX_LIMBS. */
in mbedtls_mpi_grow()
228
X->n = (unsigned short)
nblimbs
;
in mbedtls_mpi_grow()
239
int mbedtls_mpi_shrink(mbedtls_mpi *X, size_t
nblimbs
)
in mbedtls_mpi_shrink()
argument
244
if (
nblimbs
> MBEDTLS_MPI_MAX_LIMBS) {
in mbedtls_mpi_shrink()
248
/* Actually resize up if there are currently fewer than
nblimbs
limb
in mbedtls_mpi_shrink()
[all...]
Completed in 4 milliseconds