MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / WriteInt64

Method WriteInt64

rapidjson/writer.h:494–499  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

492
493template<>
494inline bool Writer<StringBuffer>::WriteInt64(int64_t i64) {
495 char *buffer = os_->Push(21);
496 const char* end = internal::i64toa(i64, buffer);
497 os_->Pop(static_cast<size_t>(21 - (end - buffer)));
498 return true;
499}
500
501template<>
502inline bool Writer<StringBuffer>::WriteUint64(uint64_t u) {

Callers

nothing calls this directly

Calls 3

i64toaFunction · 0.85
PushMethod · 0.45
PopMethod · 0.45

Tested by

no test coverage detected