Searched defs:iList (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp527 uint32_t iList = (ASMBitLastSetU32(pFree->cbFree) - 1) - RTSTRCACHE_MERGED_THRESHOLD_BIT; local
528 if (iList >= RT_ELEMENTS(pThis->aMergedFreeLists))
529 iList = RT_ELEMENTS(pThis->aMergedFreeLists) - 1;
531 RTListPrepend(&pThis->aMergedFreeLists[iList], &pFree->ListEntry);
556 uint32_t iList = ASMBitLastSetU32(cbEntry) - 1; local
558 iList++;
559 iList -= RTSTRCACHE_MERGED_THRESHOLD_BIT;
561 while (iList < RT_ELEMENTS(pThis->aMergedFreeLists))
563 pFree = RTListGetFirst(&pThis->aMergedFreeLists[iList], RTSTRCACHEFREEMERGE, ListEntry);
589 iList
[all...]
/vbox/src/VBox/VMM/VMMR0/
H A DGMMR0.cpp1876 unsigned iList = cFree >> GMM_CHUNK_FREE_SET_SHIFT; local
1877 AssertMsg(iList < RT_SIZEOFMEMB(GMMCHUNKFREESET, apLists) / RT_SIZEOFMEMB(GMMCHUNKFREESET, apLists[0]),
1878 ("%d (%u)\n", iList, cFree));
1879 return iList;
1936 unsigned const iList = gmmR0SelectFreeSetList(pChunk->cFree);
1937 pChunk->pFreeNext = pSet->apLists[iList];
1940 pSet->apLists[iList] = pChunk;
2250 unsigned iList = RT_ELEMENTS(pSet->apLists);
2251 while (iList-- > 0)
2253 PGMMCHUNK pChunk = pSet->apLists[iList];
[all...]
/vbox/src/VBox/Devices/USB/
H A DDevOHCI.cpp3531 const unsigned iList = pThis->HcFmNumber % OHCI_HCCA_NUM_INTR; local
3533 ohciGetDWords(pThis, pThis->hcca + iList * sizeof(EdAddr), &EdAddr, 1);
3540 RTStrPrintf(sz, sizeof(sz), "Int%02x before", iList);
3599 RTStrPrintf(sz, sizeof(sz), "Int%02x after ", iList);

Completed in 54 milliseconds