Searched refs:iter (Results 1 - 13 of 13) sorted by relevance

/system/extras/tests/sdcard/
H A Dtestcase.cpp142 void TestCase::setIter(size_t iter) argument
144 mIter = iter;
155 mOpenTimer = new StopWatch("open", iter() * kReadWriteFactor);
157 mReadTimer = new StopWatch("read", iter() * dataSize() / chunkSize() * kReadWriteFactor);
160 mWriteTimer = new StopWatch("write", iter() * dataSize() / chunkSize());
163 mSyncTimer = new StopWatch("sync", iter());
165 mTruncateTimer = new StopWatch("truncate", iter());
H A Dsdcard_perf_test.cpp227 printf("# Iterations: %d\n", testCase->iter());
355 size_t iter = testCase->iter(); local
362 iter *= TestCase::kReadWriteFactor;
365 for (size_t i = 0; i < iter; ++i)
396 for (size_t i = 0; i < iter; ++i)
495 for (size_t i = 0; i < testCase->iter(); ++i)
532 for (size_t i = 0; i < testCase->iter(); ++i)
H A Dtestcase.h57 size_t iter() const { return mIter; } function in class:android_test::TestCase
58 void setIter(size_t iter);
/system/extras/ext4_utils/
H A Dallocate.c28 struct region *iter; member in struct:region_list
68 alloc->list.iter = NULL;
70 alloc->oob_list.iter = NULL;
98 list->iter = reg;
246 alloc->list.iter = NULL;
457 alloc->list.iter = alloc->list.first;
488 struct region *reg = alloc->list.iter;
501 struct region *reg = alloc->oob_list.iter;
516 *block = alloc->list.iter->block;
517 *len = alloc->list.iter
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
H A Drsn.c2082 int iter; local
2084 for (iter = 0; iter < pRsn->numOfBannedSites; iter++)
2087 if (os_timeStampMs(pRsn->hOs) - pRsn->bannedSites[iter].banStartedMs >= pRsn->bannedSites[iter].banDurationMs)
2089 WLAN_REPORT_INFORMATION(pRsn->hReport, RSN_MODULE_LOG, ("%s: Found expired entry at index %d, cleaning it up...\n", __FUNCTION__, iter));
2092 pRsn->bannedSites[iter] = pRsn->bannedSites[pRsn->numOfBannedSites - 1];
2096 iter--;
2102 if (MAC_EQUAL (&siteBssid, &pRsn->bannedSites[iter]
[all...]
/system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
H A Drsn.c2119 int iter; local
2121 for (iter = 0; iter < pRsn->numOfBannedSites; iter++)
2124 if (os_timeStampMs(pRsn->hOs) - pRsn->bannedSites[iter].banStartedMs >= pRsn->bannedSites[iter].banDurationMs)
2126 TRACE1(pRsn->hReport, REPORT_SEVERITY_INFORMATION, ": Found expired entry at index %d, cleaning it up...\n", iter);
2129 pRsn->bannedSites[iter] = pRsn->bannedSites[pRsn->numOfBannedSites - 1];
2133 iter--;
2139 if (MAC_EQUAL (siteBssid, pRsn->bannedSites[iter]
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/
H A DTrafficMonitor.c999 INT32 iter = (INT32)pBandWidth->uCurrentWindow; local
1000 INT32 iNextIter = (iter - 1) & CYCLIC_COUNTER_ELEMENT; /* Always one less than i */
1005 uTotalBW += pBandWidth->auWindowCounter[iter];
1009 iter = iNextIter;
1010 iNextIter = (iter - 1) & CYCLIC_COUNTER_ELEMENT;
/system/wlan/ti/wilink_6_1/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;
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
H A Dcu_cmd.c1811 int iter = 0; local
1813 while ((ch = pString[iter]))
1821 if (iter % 2)
1822 pBuffer[iter / 2] = ((pBuffer[iter / 2] << (BIT_TO_BYTE_FACTOR / 2)) | val);
1824 pBuffer[iter / 2] = val;
1826 ++iter;
1829 /* iter = 0 len = 0, iter = 1 len = 1, iter
1836 int iter = 0; local
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/pform/common/src/
H A DosRgstry.c4989 int iter = 0; local
4991 while ((iter < StrLength) && ((ch = pString[iter]) != '\0'))
4999 if (iter % 2)
5000 pBuffer[iter / 2] = ((pBuffer[iter / 2] << (BIT_TO_BYTE_FACTOR / 2)) | val);
5002 pBuffer[iter / 2] = val;
5004 ++iter;
5007 /* iter = 0 len = 0, iter
5014 int iter = 0; local
[all...]
/system/wlan/ti/wilink_6_1/platforms/os/common/src/
H A DosRgstry.c5365 int iter = 0; local
5367 while ((iter < StrLength) && (ch = pString[iter]))
5375 if (iter % 2)
5376 pBuffer[iter / 2] = ((pBuffer[iter / 2] << (BIT_TO_BYTE_FACTOR / 2)) | val);
5378 pBuffer[iter / 2] = val;
5380 ++iter;
5383 /* iter = 0 len = 0, iter
5390 int iter = 0; local
[all...]
/system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
H A Dcu_cmd.c769 S32 iter = 0; local
772 while ((ch = pString[iter]))
776 if (iter % BIT_TO_BYTE_FACTOR)
777 pBuffer[iter / BIT_TO_BYTE_FACTOR] |= (val << (iter % BIT_TO_BYTE_FACTOR));
779 pBuffer[iter / BIT_TO_BYTE_FACTOR] = val;
781 ++iter;
784 /* iter = 0 len = 0, iter = 1 len = 1, iter
791 S32 iter = 0; local
[all...]
/system/core/libpixelflinger/
H A Dtrap.cpp836 float iter = 1.0f / (1<<TRI_ITERATORS_BITS); local
842 x_incr, x_incr*iter,
843 y_incr, y_incr*iter,

Completed in 419 milliseconds