Searched refs:flagno (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/main/VEX/useful/
H A Dshow_fp_state.c81 UInt fp_get_statusword_flag ( UInt flagno )
83 assert(!(flagno < 0 || flagno > 15));
84 return (m_fpu_state.env[FP_ENV_STAT] >> flagno) & 0x1;
87 UInt fp_get_controlword_flag ( UInt flagno )
89 assert(!(flagno < 0 || flagno > 15));
90 return (m_fpu_state.env[FP_ENV_CTRL] >> flagno) & 0x1;
H A Dx87_to_vex_and_back.c210 UInt fp_get_statusword_flag ( Fpu_State* x87, UInt flagno )
212 assert(!(flagno < 0 || flagno > 15));
213 return (x87->env[FP_ENV_STAT] >> flagno) & 0x1;
216 UInt fp_get_controlword_flag ( Fpu_State* x87, UInt flagno )
218 assert(!(flagno < 0 || flagno > 15));
219 return (x87->env[FP_ENV_CTRL] >> flagno) & 0x1;
H A Dhd_fpu.c214 UInt fp_get_statusword_flag ( UInt flagno )
216 if (flagno < 0 || flagno > 15) panic("fp_get_statusword_flag");
217 return (m_fpu_state.env[FP_ENV_STAT] >> flagno) & 0x1;
222 UInt fp_get_controlword_flag ( UInt flagno )
224 if (flagno < 0 || flagno > 15) panic("fp_get_controlword_flag");
225 return (m_fpu_state.env[FP_ENV_CTRL] >> flagno) & 0x1;
231 void fp_set_statusword_flag_to ( UInt flagno, UInt bit ) argument
233 if (flagno <
[all...]

Completed in 35 milliseconds