Home | History | Annotate | Download | only in ia64

Lines Matching defs:byte1

109   unsigned char byte1, abreg;
112 byte1 = *dp++;
115 abreg = (byte1 & 0x7f);
116 if (byte1 & 0x80)
126 unsigned char byte1, byte2, abreg, x, ytreg;
129 byte1 = *dp++; byte2 = *dp++;
131 abreg = (byte1 & 0x7f);
133 x = (byte1 >> 7) & 1;
134 if ((byte1 & 0x80) == 0 && ytreg == 0)
144 unsigned char byte1, byte2, abreg, qp;
147 byte1 = *dp++; byte2 = *dp++;
151 qp = (byte1 & 0x3f);
154 if (byte1 & 0x80)
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg;
167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
170 qp = (byte1 & 0x3f);
196 unsigned char byte1, mask, grsave;
199 byte1 = *dp++;
201 mask = ((code & 0x7) << 1) | ((byte1 >> 7) & 1);
202 grsave = (byte1 & 0x7f);
232 unsigned char byte1 = *dp++;
234 UNW_DEC_BR_GR(P2, ((code & 0xf) << 1) | ((byte1 >> 7) & 1),
235 (byte1 & 0x7f), arg);
239 unsigned char byte1 = *dp++, r, dst;
241 r = ((code & 0x7) << 1) | ((byte1 >> 7) & 1);
242 dst = (byte1 & 0x7f);
264 unw_word grmask, frmask, byte1, byte2, byte3;
266 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
267 grmask = ((byte1 >> 4) & 0xf);
268 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3;
292 unsigned char r, byte1, byte2;
359 byte1 = *dp++; byte2 = *dp++;
360 UNW_DEC_GR_GR(P9, (byte1 & 0xf), (byte2 & 0x7f), arg);
364 byte1 = *dp++; byte2 = *dp++;
365 UNW_DEC_ABI(P10, byte1, byte2, arg);