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

Method WriteUint

rapidjson/writer.h:290–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288 }
289
290 bool WriteUint(unsigned u) {
291 char buffer[10];
292 const char* end = internal::u32toa(u, buffer);
293 PutReserve(*os_, static_cast<size_t>(end - buffer));
294 for (const char* p = buffer; p != end; ++p)
295 PutUnsafe(*os_, static_cast<typename TargetEncoding::Ch>(*p));
296 return true;
297 }
298
299 bool WriteInt64(int64_t i64) {
300 char buffer[21];

Callers

nothing calls this directly

Calls 3

u32toaFunction · 0.85
PutReserveFunction · 0.70
PutUnsafeFunction · 0.70

Tested by

no test coverage detected