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

Method WriteInt64

rapidjson/writer.h:299–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297 }
298
299 bool WriteInt64(int64_t i64) {
300 char buffer[21];
301 const char* end = internal::i64toa(i64, buffer);
302 PutReserve(*os_, static_cast<size_t>(end - buffer));
303 for (const char* p = buffer; p != end; ++p)
304 PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
305 return true;
306 }
307
308 bool WriteUint64(uint64_t u64) {
309 char buffer[20];

Callers

nothing calls this directly

Calls 3

i64toaFunction · 0.85
PutReserveFunction · 0.70
PutUnsafeFunction · 0.70

Tested by

no test coverage detected