Searched refs:count_ (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | biginteger.h | 36 BigInteger(const BigInteger& rhs) : count_(rhs.count_) { in BigInteger() 37 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); in BigInteger() 40 explicit BigInteger(uint64_t u) : count_(1) { in BigInteger() 45 BigInteger(const Ch* decimals, size_t length) : count_(1) { in BigInteger() 63 count_ = rhs.count_; 64 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); 71 count_ = 1; 78 for (size_t i = 0; i < count_ - 1; i++) { 86 if (digits_[count_ - 1] < backup) 98 for (size_t i = 0; i < count_; i++) { [all …]
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | istreamwrapper.h | 57 …uffer_), bufferSize_(4), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) { in RAPIDJSON_DIAG_OFF() 67 …bufferSize_(bufferSize), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) { in RAPIDJSON_DIAG_OFF() 74 size_t Tell() const { return count_ + static_cast<size_t>(current_ - buffer_); } in RAPIDJSON_DIAG_OFF() 96 count_ += readCount_; in RAPIDJSON_DIAG_OFF() 115 size_t count_; //!< Number of characters read in RAPIDJSON_DIAG_OFF() local
|
D | filereadstream.h | 44 …bufferSize_(bufferSize), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) { in RAPIDJSON_DIAG_OFF() 52 size_t Tell() const { return count_ + static_cast<size_t>(current_ - buffer_); } in RAPIDJSON_DIAG_OFF() 70 count_ += readCount_; in RAPIDJSON_DIAG_OFF() 89 size_t count_; //!< Number of characters read in RAPIDJSON_DIAG_OFF() local
|