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

  /external/epid-sdk/epid/common-testhelper/
bignum_wrapper-testhelper.h 35 class BigNumObj {
38 BigNumObj();
40 BigNumObj(BigNumObj const& other);
42 BigNumObj& operator=(BigNumObj const& other);
44 explicit BigNumObj(size_t data_size_bytes);
46 BigNumObj(size_t data_size_bytes, std::vector<unsigned char> const& bytes);
48 BigNumObj(size_t data_size_bytes, BigNumStr const& bytes);
50 explicit BigNumObj(std::vector<unsigned char> const& bytes)
    [all...]
bignum_wrapper-testhelper.cc 39 struct BigNumObj::State {
64 BigNumObj::BigNumObj() : state_(new State) {
68 BigNumObj::BigNumObj(BigNumObj const& other) : state_(new State) {
78 BigNumObj& BigNumObj::operator=(BigNumObj const& other) {
89 BigNumObj::BigNumObj(size_t data_size_bytes) : state_(new State)
    [all...]

Completed in 644 milliseconds