Home
last modified time | relevance | path

Searched defs:bignum_st (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/include/openssl/
Dbn.h912 struct bignum_st { struct
913 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks in little-endian
915 int top; /* Index of last used element in |d|, plus one. */
916 int dmax; /* Size of |d|, in words. */
917 int neg; /* one if the number is negative */
918 int flags; /* bitmask of BN_FLG_* values */
/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py349 class bignum_st(Structure): class