Lines Matching refs:fetched
168 int fetched;
172 fetched = (*sys_rdb) (((u32) M.x86.R_CS << 4) + (M.x86.R_IP++));
174 *mod = (fetched >> 6) & 0x03;
175 *regh = (fetched >> 3) & 0x07;
176 *regl = (fetched >> 0) & 0x07;
192 u8 fetched;
196 fetched = (*sys_rdb) (((u32) M.x86.R_CS << 4) + (M.x86.R_IP++));
198 return fetched;
214 u16 fetched;
218 fetched = (*sys_rdw) (((u32) M.x86.R_CS << 4) + (M.x86.R_IP));
221 return fetched;
237 u32 fetched;
241 fetched = (*sys_rdl) (((u32) M.x86.R_CS << 4) + (M.x86.R_IP));
244 return fetched;