Searched defs:iter (Results 1 - 4 of 4) sorted by relevance

/hardware/ti/wlan/wl1271/stad/src/Data_link/
H A DTrafficMonitor.c1008 TI_INT32 iter = (TI_INT32)pBandWidth->uCurrentWindow; local
1009 TI_INT32 iNextIter = (iter - 1) & CYCLIC_COUNTER_ELEMENT; /* Always one less than i */
1014 uTotalBW += pBandWidth->auWindowCounter[iter];
1018 iter = iNextIter;
1019 iNextIter = (iter - 1) & CYCLIC_COUNTER_ELEMENT;
/hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
H A Drsn.c2273 int iter; local
2275 for (iter = 0; iter < pRsn->numOfBannedSites; iter++)
2278 if (os_timeStampMs(pRsn->hOs) - pRsn->bannedSites[iter].banStartedMs >= pRsn->bannedSites[iter].banDurationMs)
2280 TRACE1(pRsn->hReport, REPORT_SEVERITY_INFORMATION, ": Found expired entry at index %d, cleaning it up...\n", iter);
2283 pRsn->bannedSites[iter] = pRsn->bannedSites[pRsn->numOfBannedSites - 1];
2287 iter--;
2293 if (MAC_EQUAL (siteBssid, pRsn->bannedSites[iter]
[all...]
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
H A Dcu_cmd.c792 S32 iter = 0; local
795 while ((ch = pString[iter]))
799 if (iter % BIT_TO_BYTE_FACTOR)
800 pBuffer[iter / BIT_TO_BYTE_FACTOR] |= (val << (iter % BIT_TO_BYTE_FACTOR));
802 pBuffer[iter / BIT_TO_BYTE_FACTOR] = val;
804 ++iter;
807 /* iter = 0 len = 0, iter = 1 len = 1, iter
814 S32 iter = 0; local
[all...]
/hardware/ti/wlan/wl1271/platforms/os/common/src/
H A DosRgstry.c5353 int iter = 0; local
5355 while ((iter < StrLength) && (ch = pString[iter]))
5363 if (iter % 2)
5364 pBuffer[iter / 2] = ((pBuffer[iter / 2] << (BIT_TO_BYTE_FACTOR / 2)) | val);
5366 pBuffer[iter / 2] = val;
5368 ++iter;
5371 /* iter = 0 len = 0, iter
5378 int iter = 0; local
[all...]

Completed in 65 milliseconds