MCPcopy Create free account
hub / github.com/capstone-engine/capstone / printUInt64

Function printUInt64

SStream.c:116–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116void printUInt64(SStream *O, uint64_t val)
117{
118 if (val > HEX_THRESHOLD)
119 SStream_concat(O, "0x%"PRIx64, val);
120 else
121 SStream_concat(O, "%"PRIu64, val);
122}
123
124// print number in decimal mode
125void printInt32BangDec(SStream *O, int32_t val)

Callers 1

printAbsBranchOperandFunction · 0.85

Calls 1

SStream_concatFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…