Lines Matching refs:res_lo

962 	    u32 res_lo,res_hi;  in x86emuOp_imul_word_IMM()  local
971 imul_long_direct(&res_lo,&res_hi,(s32)srcval,(s32)imm); in x86emuOp_imul_word_IMM()
972 if ((((res_lo & 0x80000000) == 0) && (res_hi == 0x00000000)) || in x86emuOp_imul_word_IMM()
973 (((res_lo & 0x80000000) != 0) && (res_hi == 0xFFFFFFFF))) { in x86emuOp_imul_word_IMM()
980 *destreg = (u32)res_lo; in x86emuOp_imul_word_IMM()
1007 u32 res_lo,res_hi; in x86emuOp_imul_word_IMM() local
1016 imul_long_direct(&res_lo,&res_hi,(s32)*srcreg,(s32)imm); in x86emuOp_imul_word_IMM()
1017 if ((((res_lo & 0x80000000) == 0) && (res_hi == 0x00000000)) || in x86emuOp_imul_word_IMM()
1018 (((res_lo & 0x80000000) != 0) && (res_hi == 0xFFFFFFFF))) { in x86emuOp_imul_word_IMM()
1025 *destreg = (u32)res_lo; in x86emuOp_imul_word_IMM()
1087 u32 res_lo,res_hi; in x86emuOp_imul_byte_IMM() local
1095 imul_long_direct(&res_lo,&res_hi,(s32)srcval,(s32)imm); in x86emuOp_imul_byte_IMM()
1096 if ((((res_lo & 0x80000000) == 0) && (res_hi == 0x00000000)) || in x86emuOp_imul_byte_IMM()
1097 (((res_lo & 0x80000000) != 0) && (res_hi == 0xFFFFFFFF))) { in x86emuOp_imul_byte_IMM()
1104 *destreg = (u32)res_lo; in x86emuOp_imul_byte_IMM()
1130 u32 res_lo,res_hi; in x86emuOp_imul_byte_IMM() local
1138 imul_long_direct(&res_lo,&res_hi,(s32)*srcreg,(s32)imm); in x86emuOp_imul_byte_IMM()
1139 if ((((res_lo & 0x80000000) == 0) && (res_hi == 0x00000000)) || in x86emuOp_imul_byte_IMM()
1140 (((res_lo & 0x80000000) != 0) && (res_hi == 0xFFFFFFFF))) { in x86emuOp_imul_byte_IMM()
1147 *destreg = (u32)res_lo; in x86emuOp_imul_byte_IMM()