Searched refs:count_ (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
D | biginteger.h | 32 BigInteger(const BigInteger& rhs) : count_(rhs.count_) { in BigInteger() 33 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); in BigInteger() 36 explicit BigInteger(uint64_t u) : count_(1) { in BigInteger() 40 BigInteger(const char* decimals, size_t length) : count_(1) { in BigInteger() 58 count_ = rhs.count_; 59 std::memcpy(digits_, rhs.digits_, count_ * sizeof(Type)); 66 count_ = 1; 73 for (size_t i = 0; i < count_ - 1; i++) { 81 if (digits_[count_ - 1] < backup) 93 for (size_t i = 0; i < count_; i++) { [all …]
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
D | filereadstream.h | 37 …ufferSize_(bufferSize), bufferLast_(0), current_(buffer_), readCount_(0), count_(0), eof_(false) { in FileReadStream() 45 size_t Tell() const { return count_ + static_cast<size_t>(current_ - buffer_); } in Tell() 63 count_ += readCount_; in Read() 82 size_t count_; //!< Number of characters read variable
|
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
D | rapidjsontest.cpp | 232 ValueCounter() : count_(1) {} // root in ValueCounter() 234 bool EndObject(SizeType memberCount) { count_ += memberCount * 2; return true; } in EndObject() 235 bool EndArray(SizeType elementCount) { count_ += elementCount; return true; } in EndArray() 237 SizeType count_; member 248 EXPECT_EQ(4339u, counter.count_); in TEST_F()
|