Home | History | Annotate | Download | only in opcodes

Lines Matching full:byte

38   /* Points to first byte not fetched.  */
94 int byte;
106 for (byte = 0; byte < opcode->length; byte++)
108 FETCH_DATA (info, buffer + byte + 1);
109 if ((buffer[byte] & opcode->bytes[byte].mask)
110 != (opcode->bytes[byte].contents))
116 switch (opcode->bytes[byte].insert)
124 opcode->bytes[byte].insert);
127 rn = buffer[byte] & 0x7;
130 rs = buffer[byte] & 0x7;
133 cr = buffer[byte] & 0x7;
138 cr = buffer[byte] & 0x7;
143 FETCH_DATA (info, buffer + byte + 2);
144 disp = (buffer[byte] << 8) | (buffer[byte + 1]);
148 disp = ((char) (buffer[byte]));
152 rd = buffer[byte] & 0x7;
155 FETCH_DATA (info, buffer + byte + 3);
157 (buffer[byte] << 16)
158 | (buffer[byte + 1] << 8)
159 | (buffer[byte + 2]);
162 FETCH_DATA (info, buffer + byte + 2);
163 abs_val = (buffer[byte] << 8) | (buffer[byte + 1]);
166 abs_val = (buffer[byte]);
169 FETCH_DATA (info, buffer + byte + 2);
170 imm = (buffer[byte] << 8) | (buffer[byte + 1]);
173 imm = (buffer[byte]) & 0xf;
177 imm = (buffer[byte]);
180 FETCH_DATA (info, buffer + byte + 2);
181 pcrel = (buffer[byte] << 8) | (buffer[byte + 1]);
184 pcrel = (buffer[byte]);
187 switch (buffer[byte] & 0x7)