HomeSort by: relevance | last modified time | path
    Searched defs:fetched (Results 1 - 2 of 2) sorted by relevancy

  /src/tests/modules/
t_x86_pte.c 61 static bool fetched = false; local in function:fetch_results
70 if (fetched)
82 fetched = true;
  /src/common/lib/libx86emu/
x86emu.c 307 int fetched; local in function:fetch_decode_modrm
309 fetched = fetch_byte_imm(emu);
310 emu->cur_mod = (fetched >> 6) & 0x03;
311 emu->cur_rh = (fetched >> 3) & 0x07;
312 emu->cur_rl = (fetched >> 0) & 0x07;
327 uint8_t fetched; local in function:fetch_byte_imm
329 fetched = fetch_byte(emu, emu->x86.R_CS, emu->x86.R_IP);
331 return fetched;
346 uint16_t fetched; local in function:fetch_word_imm
348 fetched = fetch_word(emu, emu->x86.R_CS, emu->x86.R_IP)
365 uint32_t fetched; local in function:fetch_long_imm
    [all...]

Completed in 14 milliseconds