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

Method WriteInt

rapidjson/writer.h:478–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

476
477template<>
478inline bool Writer<StringBuffer>::WriteInt(int i) {
479 char *buffer = os_->Push(11);
480 const char* end = internal::i32toa(i, buffer);
481 os_->Pop(static_cast<size_t>(11 - (end - buffer)));
482 return true;
483}
484
485template<>
486inline bool Writer<StringBuffer>::WriteUint(unsigned u) {

Callers

nothing calls this directly

Calls 3

i32toaFunction · 0.85
PushMethod · 0.45
PopMethod · 0.45

Tested by

no test coverage detected