Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:iStart

555     int			Find(TYPE data, int iStart = 0) const

557 if (iStart < 0) {
560 for (; iStart < (int)m_nSize; iStart ++)
561 if (((TYPE*)m_pData)[iStart] == data) {
562 return iStart;
1552 FX_INT32 iStart = 0;
1555 while (iStart <= iEnd) {
1556 iMid = (iStart + iEnd) / 2;
1561 iStart = iMid + 1;
1574 FX_INT32 iStart = 0;
1577 while (iStart <= iEnd) {
1578 FX_INT32 iMid = (iStart + iEnd) / 2;
1592 iStart = iMid + 1;