MCPcopy Create free account
hub / github.com/F-Stack/f-stack / expand_prel31

Function expand_prel31

freebsd/arm/arm/unwind.c:302–307  ·  view source on GitHub ↗

Expand a 31-bit signed value to a 32-bit signed value */

Source from the content-addressed store, hash-verified

300
301/* Expand a 31-bit signed value to a 32-bit signed value */
302static __inline int32_t
303expand_prel31(uint32_t prel31)
304{
305
306 return ((int32_t)(prel31 & 0x7fffffffu) << 1) / 2;
307}
308
309/*
310 * Perform a binary search of the index table to find the function

Callers 2

find_indexFunction · 0.85
unwind_stack_oneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected