Lines Matching refs:byte
249 uint8_t byte = getByte(data, offset++); in _Unwind_VRS_Interpret() local
250 if ((byte & 0x80) == 0) { in _Unwind_VRS_Interpret()
253 if (byte & 0x40) in _Unwind_VRS_Interpret()
254 sp -= (((uint32_t)byte & 0x3f) << 2) + 4; in _Unwind_VRS_Interpret()
256 sp += ((uint32_t)byte << 2) + 4; in _Unwind_VRS_Interpret()
259 switch (byte & 0xf0) { in _Unwind_VRS_Interpret()
264 (((uint32_t)byte & 0x0f) << 12) | in _Unwind_VRS_Interpret()
274 uint8_t reg = byte & 0x0f; in _Unwind_VRS_Interpret()
285 uint32_t registers = RegisterMask(4, byte & 0x07); in _Unwind_VRS_Interpret()
286 if (byte & 0x08) in _Unwind_VRS_Interpret()
292 switch (byte) { in _Unwind_VRS_Interpret()
340 RegisterRange(8, byte & 0x07), _UVRSD_VFPX); in _Unwind_VRS_Interpret()
346 switch (byte) { in _Unwind_VRS_Interpret()
354 RegisterRange(10, byte & 0x7), _UVRSD_DOUBLE); in _Unwind_VRS_Interpret()
378 static_cast<uint8_t>(((byte == 0xc8) ? 16 : 0) + (v >> 4)); in _Unwind_VRS_Interpret()
393 if (byte & 0x08) in _Unwind_VRS_Interpret()
395 _Unwind_VRS_Pop(context, _UVRSC_VFP, RegisterRange(8, byte & 0x7), in _Unwind_VRS_Interpret()