Home
last modified time | relevance | path

Searched refs:imm (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/bios_emulator/x86emu/
H A Dops.c926 u32 imm; in x86emuOp_push_word_IMM() local
930 imm = fetch_long_imm(); in x86emuOp_push_word_IMM()
932 imm = fetch_word_imm(); in x86emuOp_push_word_IMM()
934 DECODE_PRINTF2("PUSH\t%x\n", imm); in x86emuOp_push_word_IMM()
937 push_long(imm); in x86emuOp_push_word_IMM()
939 push_word((u16)imm); in x86emuOp_push_word_IMM()
963 s32 imm; in x86emuOp_imul_word_IMM() local
968 imm = fetch_long_imm(); in x86emuOp_imul_word_IMM()
969 DECODE_PRINTF2(",%d\n", (s32)imm); in x86emuOp_imul_word_IMM()
971 imul_long_direct(&res_lo,&res_hi,(s32)srcval,(s32)imm); in x86emuOp_imul_word_IMM()
[all …]
/rk3399_rockchip-uboot/post/lib_powerpc/
H A Dcpu_asm.h139 #define ASM_11IX(opcode, rd, rs, imm) ((opcode) + \ argument
142 ((imm) & 0xffff))
159 #define ASM_1IC(opcode, cr, rs, imm) ((opcode) + \ argument
162 ((imm) & 0xffff))
199 #define ASM_LI(rd, imm) ASM_ADDI(rd, 0, imm) argument