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

Method WriteUint64

rapidjson/writer.h:308–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306 }
307
308 bool WriteUint64(uint64_t u64) {
309 char buffer[20];
310 char* end = internal::u64toa(u64, buffer);
311 PutReserve(*os_, static_cast<size_t>(end - buffer));
312 for (char* p = buffer; p != end; ++p)
313 PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
314 return true;
315 }
316
317 bool WriteDouble(double d) {
318 if (internal::Double(d).IsNanOrInf()) {

Callers

nothing calls this directly

Calls 3

u64toaFunction · 0.85
PutReserveFunction · 0.70
PutUnsafeFunction · 0.70

Tested by

no test coverage detected