Searched refs:matchIndex (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_reset.c2109 int matchIndex = -1, lowIndex = -1; local
2118 matchIndex = 0;
2122 matchIndex = i;
2131 if ((matchIndex == -1) && (lowIndex == -1)) {
2133 matchIndex = i - 1;
2137 if (matchIndex != -1) {
2138 OS_MEMCPY(pNewPower, &powInfo[matchIndex], sizeof(*pNewPower));
2169 int matchIndex = -1, lowIndex = -1; local
2178 matchIndex = 0;
2182 matchIndex
[all...]
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.cpp575 int32 matchIndex = 0; local
578 //debug_printf(" (%ld, %ld): matchIndex: %ld\n", pos.x, pos.y, matchIndex);
584 if (caseSensitive ? (c == pattern[matchIndex])
585 : (c.ToLower() == pattern[matchIndex])) {
586 if (matchIndex == 0)
589 matchIndex++;
591 if (matchIndex == patternLen) {
614 } else if (matchIndex > 0) {
621 matchIndex
[all...]

Completed in 68 milliseconds