Lines Matching refs:uint32_t
50 typedef uint32_t _Unwind_State;
57 typedef uint32_t _Unwind_EHT_Header;
64 uint32_t reserved1; // init reserved1 to 0, then don't touch
65 uint32_t reserved2;
66 uint32_t reserved3;
67 uint32_t reserved4;
68 uint32_t reserved5;
72 uint32_t sp;
73 uint32_t bitpattern[5];
77 uint32_t bitpattern[4];
81 uint32_t fnstart; // function start address
83 uint32_t additional; // additional data
84 uint32_t reserved1;
124 uint32_t regno,
130 uint32_t regno,
147 static inline uint32_t _Unwind_GetGR( _Unwind_Context* ctx, int reg) { in _Unwind_GetGR()
148 uint32_t val; in _Unwind_GetGR()
153 static inline void _Unwind_SetGR(_Unwind_Context* ctx, int reg, uint32_t val) { in _Unwind_SetGR()
157 static inline uint32_t _Unwind_GetIP(_Unwind_Context* ctx) { in _Unwind_GetIP()
160 static inline void _Unwind_SetIP(_Unwind_Context* ctx, uint32_t val) { in _Unwind_SetIP()
162 uint32_t thumbState = _Unwind_GetGR(ctx, UNWIND_IP_REG) & 1; in _Unwind_SetIP()