Lines Matching refs:uint64_t
121 inline void PrintMethodData(const char* method, uint64_t u) { in PrintMethodData()
266 virtual uint64_t GetHashCode(void* hasher) = 0;
284 virtual void NotMultipleOf(uint64_t actual, const SValue& expected) = 0;
287 virtual void AboveMaximum(uint64_t actual, const SValue& expected, bool exclusive) = 0;
290 virtual void BelowMinimum(uint64_t actual, const SValue& expected, bool exclusive) = 0;
347 …bool Uint64(uint64_t u) { Number n; n.u.u = u; n.d = static_cast<double>(u); return WriteNumber(n)… in Uint64()
351 else n.u.u = static_cast<uint64_t>(d); in Double()
369 uint64_t h = Hash(0, kObjectType); in EndObject()
370 uint64_t* kv = stack_.template Pop<uint64_t>(memberCount * 2); in EndObject()
373 *stack_.template Push<uint64_t>() = h; in EndObject()
379 uint64_t h = Hash(0, kArrayType); in EndArray()
380 uint64_t* e = stack_.template Pop<uint64_t>(elementCount); in EndArray()
383 *stack_.template Push<uint64_t>() = h; in EndArray()
387 bool IsValid() const { return stack_.GetSize() == sizeof(uint64_t); } in IsValid()
389 uint64_t GetHashCode() const { in GetHashCode()
391 return *stack_.template Top<uint64_t>(); in GetHashCode()
398 uint64_t u;
410 uint64_t h = Hash(RAPIDJSON_UINT64_C2(0x84222325, 0xcbf29ce4), type); in WriteBuffer()
414 *stack_.template Push<uint64_t>() = h; in WriteBuffer()
418 static uint64_t Hash(uint64_t h, uint64_t d) { in Hash()
419 static const uint64_t kPrime = RAPIDJSON_UINT64_C2(0x00000100, 0x000001b3); in Hash()
621 enum_ = static_cast<uint64_t*>(allocator_->Malloc(sizeof(uint64_t) * v->Size())); in allocator_()
939 const uint64_t h = context.factory.GetHashCode(context.hasher); in EndValue()
1018 RAPIDJSON_SCHEMA_PRINT(Method, "Schema::Uint", (uint64_t)u); in Uint()
1031 bool Uint64(Context& context, uint64_t u) const { in Uint64()
1570 if (static_cast<uint64_t>(i >= 0 ? i : -i) % multipleOf_.GetUint64() != 0) { in CheckInt()
1582 bool CheckUint(Context& context, uint64_t i) const { in CheckUint()
1702 uint64_t* enum_;
2589 void NotMultipleOf(uint64_t actual, const SValue& expected) {
2599 void AboveMaximum(uint64_t actual, const SValue& expected, bool exclusive) {
2611 void BelowMinimum(uint64_t actual, const SValue& expected, bool exclusive) {
2836 bool Uint64(uint64_t u) { RAPIDJSON_SCHEMA_HANDLE_VALUE_(Uint64, (CurrentContext(), u), (u)); }
2919 virtual uint64_t GetHashCode(void* hasher) {
3025 …uint64_t h = hasher && CurrentContext().arrayUniqueness ? static_cast<HasherType*>(hasher)->GetHas…