HomeSort by relevance Sort by last modified time
    Searched defs:BigNum (Results 1 - 6 of 6) sorted by null

  /external/epid-sdk/epid/common/math/
bignum.h 33 \defgroup BigNumPrimitives bignum
37 Each BigNum variable represents a number of a byte-size set when the variable
38 was created. BigNum variables cannot be re-sized after they are created.
46 typedef struct BigNum BigNum;
48 /// Constructs a new BigNum.
50 Allocates memory and creates a new BigNum.
56 \param[out] bignum
57 The BigNum.
63 EpidStatus NewBigNum(size_t data_size_bytes, BigNum** bignum)
    [all...]
  /external/epid-sdk/epid/common/math/src/
bignum-internal.h 38 struct BigNum {
39 /// Internal implementation of bignum
  /external/epid-sdk/epid/common-testhelper/
bignum_wrapper-testhelper.cc 19 * \brief Bignum C++ wrapper implementation.
23 #include "epid/common/math/bignum.h"
25 /// bignum deleter type
27 /// bignum deleter
28 void operator()(BigNum* bn) {
35 /// bignum deleter singlton
38 /// Internal state of the bignum wrapper
40 /// size of the stored BigNum
43 /// The stored BigNum
44 std::shared_ptr<BigNum> bn_
    [all...]
  /external/python/cpython3/Lib/test/test_json/
test_enum.py 10 class BigNum(IntEnum):
53 for enum in BigNum:
59 self.assertEqual(self.dumps(list(BigNum)),
61 self.assertEqual(self.loads(self.dumps(list(BigNum))),
62 list(BigNum))
74 s, b, h, r = BigNum
96 tiny=BigNum.small,
97 large=BigNum.big,
98 larger=BigNum.huge,
99 largest=BigNum.really_huge
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 37 BigNum, // larger than 64 bits
117 assert((Kind == Integer || Kind == BigNum) &&
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCAsmMacro.h 34 BigNum, // larger than 64 bits
122 assert((Kind == Integer || Kind == BigNum) &&

Completed in 1583 milliseconds