Lines Matching refs:current
45 int current; in find() local
48 current = (top + bottom) / 2; in find()
49 if( nKey < mpTable[current].first ) in find()
50 top = current - 1; in find()
51 else if( nKey > mpTable[current].first ) in find()
52 bottom = current + 1; in find()
54 return mpTable[current].second; in find()
85 int i, j, high, low, current = -1; in makeIndex() local
94 if( high != current ) in makeIndex()
96 current = high; in makeIndex()
131 int current; in find() local
134 current = (top + bottom) / 2; in find()
135 if( nKey < mpTableWF[current].first ) in find()
136 top = current - 1; in find()
137 else if( nKey > mpTableWF[current].first ) in find()
138 bottom = current + 1; in find()
141 if( mpTableWF[current].flag & mnFlag ) in find()
142 return mpTableWF[current].second; in find()