Searched defs:m_max (Results 1 - 2 of 2) sorted by relevance

/vbox/src/recompiler/tcg/
H A Dtcg.c806 int m, m_min, m_max; local
823 m_max = s->nb_helpers - 1;
824 while (m_min <= m_max) {
825 m = (m_min + m_max) >> 1;
831 m_max = m - 1;
/vbox/src/recompiler/
H A Dexec.c1440 int m_min, m_max, m; local
1451 m_max = nb_tbs - 1;
1452 while (m_min <= m_max) {
1453 m = (m_min + m_max) >> 1;
1459 m_max = m - 1;
1464 return &tbs[m_max];

Completed in 1020 milliseconds