Home
last modified time | relevance | path

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

/external/valgrind/VEX/useful/
Dhd_fpu.c427 UInt vis_dst; in fp_set_statusword_flags_COM() local
428 if (isnan(vd_src) || isnan(vd_dst)) vis_dst = 7; in fp_set_statusword_flags_COM()
429 else if (vd_dst > vd_src) vis_dst = 0; in fp_set_statusword_flags_COM()
430 else if (vd_dst < vd_src) vis_dst = 1; in fp_set_statusword_flags_COM()
431 else if (vd_dst == vd_src) vis_dst = 4; in fp_set_statusword_flags_COM()
432 else vis_dst = 7; in fp_set_statusword_flags_COM()
433 fp_set_statusword_flag_to(FP_F_C3, (vis_dst >> 2) & 1); in fp_set_statusword_flags_COM()
434 fp_set_statusword_flag_to(FP_F_C2, (vis_dst >> 1) & 1); in fp_set_statusword_flags_COM()
435 fp_set_statusword_flag_to(FP_F_C0, vis_dst & 1); in fp_set_statusword_flags_COM()
441 UInt vis_dst = 7; in fp_set_statusword_flags_COM_STACKF() local
[all …]