Lines Matching refs:byte1
88 unsigned char byte1, abreg; in unw_decode_x1() local
91 byte1 = *dp++; in unw_decode_x1()
94 abreg = (byte1 & 0x7f); in unw_decode_x1()
95 if (byte1 & 0x80) in unw_decode_x1()
105 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local
108 byte1 = *dp++; byte2 = *dp++; in unw_decode_x2()
110 abreg = (byte1 & 0x7f); in unw_decode_x2()
112 x = (byte1 >> 7) & 1; in unw_decode_x2()
113 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2()
123 unsigned char byte1, byte2, abreg, qp; in unw_decode_x3() local
126 byte1 = *dp++; byte2 = *dp++; in unw_decode_x3()
130 qp = (byte1 & 0x3f); in unw_decode_x3()
133 if (byte1 & 0x80) in unw_decode_x3()
143 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; in unw_decode_x4() local
146 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_x4()
149 qp = (byte1 & 0x3f); in unw_decode_x4()
175 unsigned char byte1, mask, grsave; in unw_decode_r2() local
178 byte1 = *dp++; in unw_decode_r2()
180 mask = ((code & 0x7) << 1) | ((byte1 >> 7) & 1); in unw_decode_r2()
181 grsave = (byte1 & 0x7f); in unw_decode_r2()
211 unsigned char byte1 = *dp++; in unw_decode_p2_p5() local
213 UNW_DEC_BR_GR(P2, ((code & 0xf) << 1) | ((byte1 >> 7) & 1), in unw_decode_p2_p5()
214 (byte1 & 0x7f), arg); in unw_decode_p2_p5()
218 unsigned char byte1 = *dp++, r, dst; in unw_decode_p2_p5() local
220 r = ((code & 0x7) << 1) | ((byte1 >> 7) & 1); in unw_decode_p2_p5()
221 dst = (byte1 & 0x7f); in unw_decode_p2_p5()
243 unw_word grmask, frmask, byte1, byte2, byte3; in unw_decode_p2_p5() local
245 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_p2_p5()
246 grmask = ((byte1 >> 4) & 0xf); in unw_decode_p2_p5()
247 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3; in unw_decode_p2_p5()
271 unsigned char r, byte1, byte2; in unw_decode_p7_p10() local
338 byte1 = *dp++; byte2 = *dp++; in unw_decode_p7_p10()
339 UNW_DEC_GR_GR(P9, (byte1 & 0xf), (byte2 & 0x7f), arg); in unw_decode_p7_p10()
343 byte1 = *dp++; byte2 = *dp++; in unw_decode_p7_p10()
344 UNW_DEC_ABI(P10, byte1, byte2, arg); in unw_decode_p7_p10()