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

Function bswap32

arch/armv7/arch_armv7.cpp:2244–2250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2242
2243
2244uint32_t bswap32(uint32_t x)
2245{
2246 return ((x & 0xff000000) >> 24) |
2247 ((x & 0x00ff0000) >> 8) |
2248 ((x & 0x0000ff00) << 8) |
2249 ((x & 0x000000ff) << 24);
2250}
2251
2252class ArmElfRelocationHandler: public RelocationHandler
2253{

Callers 1

ApplyRelocationMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected