OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Bigint
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gdtoaimp.h
474
Bigint
{
475
struct
Bigint
*next;
480
typedef struct
Bigint
Bigint
;
574
extern
Bigint
*Balloc ANSI((int));
575
extern void Bfree ANSI((
Bigint
*));
582
extern ULong any_on ANSI((
Bigint
*, int));
583
extern double b2d ANSI((
Bigint
*, int*));
584
extern int cmp ANSI((
Bigint
*,
Bigint
*));
[
all
...]
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gdtoaimp.h
476
Bigint
{
477
struct
Bigint
*next;
482
typedef struct
Bigint
Bigint
;
547
extern
Bigint
*Balloc (int);
548
extern void Bfree (
Bigint
*);
555
extern ULong any_on (
Bigint
*, int);
556
extern double b2d (
Bigint
*, int*);
557
extern int cmp (
Bigint
*,
Bigint
*);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
dtoa.c
46
* of return type *
Bigint
all return NULL to indicate a malloc failure.
297
/* struct
Bigint
is used to represent arbitrary-precision integers. These
300
Bigint
then x->wds >= 1, and either x->wds == 1 or x[wds-1] is nonzero.
302
The
Bigint
fields are as follows:
307
- k indicates which pool this
Bigint
was allocated from
315
- x contains the vector of words (digits) for this
Bigint
, from least
320
Bigint
{
321
struct
Bigint
*next;
326
typedef struct
Bigint
Bigint
;
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c
46
* of return type *
Bigint
all return NULL to indicate a malloc failure.
280
/* struct
Bigint
is used to represent arbitrary-precision integers. These
283
Bigint
then x->wds >= 1, and either x->wds == 1 or x[wds-1] is nonzero.
285
The
Bigint
fields are as follows:
290
- k indicates which pool this
Bigint
was allocated from
298
- x contains the vector of words (digits) for this
Bigint
, from least
303
Bigint
{
304
struct
Bigint
*next;
309
typedef struct
Bigint
Bigint
;
[
all
...]
/external/python/cpython2/Python/
dtoa.c
46
* of return type *
Bigint
all return NULL to indicate a malloc failure.
297
/* struct
Bigint
is used to represent arbitrary-precision integers. These
300
Bigint
then x->wds >= 1, and either x->wds == 1 or x[wds-1] is nonzero.
302
The
Bigint
fields are as follows:
307
- k indicates which pool this
Bigint
was allocated from
315
- x contains the vector of words (digits) for this
Bigint
, from least
320
Bigint
{
321
struct
Bigint
*next;
326
typedef struct
Bigint
Bigint
;
[
all
...]
/prebuilts/ndk/r11/sources/android/support/src/stdio/
strtod.c
417
Bigint
{
418
struct
Bigint
*next;
423
typedef struct
Bigint
Bigint
;
445
gethex(CONST char **, CONST FPI *, Long *,
Bigint
**, int, locale_t);
448
static
Bigint
*freelist[Kmax+1];
458
/* Special value used to indicate an invalid
Bigint
value,
460
* want to avoid introducing NULL checks everytime a
bigint
466
#define BIGINT_INVALID ((
Bigint
*)&bigint_invalid_value)
468
static const
Bigint
bigint_invalid_value
[
all
...]
/prebuilts/ndk/r13/sources/android/support/src/stdio/
strtod.c
417
Bigint
{
418
struct
Bigint
*next;
423
typedef struct
Bigint
Bigint
;
445
gethex(CONST char **, CONST FPI *, Long *,
Bigint
**, int, locale_t);
448
static
Bigint
*freelist[Kmax+1];
458
/* Special value used to indicate an invalid
Bigint
value,
460
* want to avoid introducing NULL checks everytime a
bigint
466
#define BIGINT_INVALID ((
Bigint
*)&bigint_invalid_value)
468
static const
Bigint
bigint_invalid_value
[
all
...]
Completed in 98 milliseconds