Home
last modified time | relevance | path

Searched refs:R_EDX (Results 1 – 9 of 9) sorted by relevance

/external/u-boot/arch/x86/lib/
Dbios_interrupts.c33 if (cursor_row != ((M.x86.R_EDX >> 8) & 0xff) || in int10_handler()
34 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
37 cursor_row = (M.x86.R_EDX >> 8) & 0xff; in int10_handler()
38 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
44 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
119 M.x86.R_EDX = 0x20494350; /* ' ICP' */ in int1a_handler()
133 vendorid = M.x86.R_EDX; in int1a_handler()
Dbios.c62 .edx = M.x86.R_EDX, in int_exception_handler()
314 M.x86.R_EDX = edx; in interrupt_handler()
338 *(volatile u32 *)&edx = M.x86.R_EDX; in interrupt_handler()
/external/u-boot/drivers/bios_emulator/
Dbiosemu.c252 M.x86.R_EDX = regs->e.edx; in BE_callRealMode()
278 regs->e.edx = M.x86.R_EDX; in BE_callRealMode()
303 M.x86.R_EDX = in->e.edx; in BE_int86()
320 out->e.edx = M.x86.R_EDX; in BE_int86()
343 M.x86.R_EDX = in->e.edx; in BE_int86x()
364 out->e.edx = M.x86.R_EDX; in BE_int86x()
Dbios.c165 M.x86.R_EDX = 0x20494350; /* " ICP" */
/external/u-boot/drivers/bios_emulator/x86emu/
Ddecode.c660 return &M.x86.R_EDX; in decode_rm_long_register()
755 return M.x86.R_EDX * index; in decode_sib_si()
807 offset = M.x86.R_EDX; in decode_sib_address()
892 return M.x86.R_EDX; in decode_rm00_address()
977 return M.x86.R_EDX + displacement; in decode_rm01_address()
1066 return M.x86.R_EDX + displacement; in decode_rm10_address()
Dprim_ops.c1953 imul_long_direct(&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,s); in imul_long()
1954 if (((M.x86.R_EAX & 0x80000000) == 0 && M.x86.R_EDX == 0x00000000) || in imul_long()
1955 ((M.x86.R_EAX & 0x80000000) != 0 && M.x86.R_EDX == 0xFFFFFFFF)) { in imul_long()
2011 M.x86.R_EDX = (u32)(res >> 32); in mul_long()
2026 M.x86.R_EDX = rhi_lo; in mul_long()
2028 if (M.x86.R_EDX == 0) { in mul_long()
2097 dvd = (((s64)M.x86.R_EDX) << 32) | M.x86.R_EAX; in idiv_long()
2110 s32 h_dvd = M.x86.R_EDX; in idiv_long()
2159 M.x86.R_EDX = (u32)mod; in idiv_long()
2222 dvd = (((u64)M.x86.R_EDX) << 32) | M.x86.R_EAX; in div_long()
[all …]
Ddebug.c418 printk("EDX=%08x \n", M.x86.R_EDX); in x86emu_dump_xregs()
Dops.c797 push_long(M.x86.R_EDX); in x86emuOp_push_all()
838 M.x86.R_EDX = pop_long(); in x86emuOp_pop_all()
2286 M.x86.R_EDX = 0xffffffff; in x86emuOp_cwd()
2288 M.x86.R_EDX = 0x0; in x86emuOp_cwd()
/external/u-boot/drivers/bios_emulator/include/x86emu/
Dregs.h144 #define R_EDX gen.D.I32_reg.e_reg macro