Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/capstone-engine/capstone
/ printUInt32
Function
printUInt32
SStream.c:181–187 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
179
}
180
181
void printUInt32(SStream *O, uint32_t val)
182
{
183
if (val > HEX_THRESHOLD)
184
SStream_concat(O,
"0x%x"
, val);
185
else
186
SStream_concat(O,
"%u"
, val);
187
}
Callers
15
printNoHashImmediate
Function · 0.85
printU1ImmOperand
Function · 0.85
printU2ImmOperand
Function · 0.85
printU3ImmOperand
Function · 0.85
printU4ImmOperand
Function · 0.85
printU5ImmOperand
Function · 0.85
printU6ImmOperand
Function · 0.85
printU7ImmOperand
Function · 0.85
printU8ImmOperand
Function · 0.85
printU10ImmOperand
Function · 0.85
printU12ImmOperand
Function · 0.85
printU16ImmOperand
Function · 0.85
Calls
1
SStream_concat
Function · 0.85
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…