Lines Matching refs:handleList
1650 TPML_HANDLE *handleList, // IN/OUT: sorted handle list in InsertSort() argument
1660 if(handleList->count == 0) in InsertSort()
1662 handleList->handle[0] = entityHandle; in InsertSort()
1663 handleList->count++; in InsertSort()
1667 originalCount = handleList->count; in InsertSort()
1669 handleList->count++; in InsertSort()
1673 if(handleList->handle[i] > entityHandle) in InsertSort()
1675 for(j = handleList->count - 1; j > i; j--) in InsertSort()
1677 handleList->handle[j] = handleList->handle[j-1]; in InsertSort()
1683 if(i < originalCount || handleList->count > originalCount) in InsertSort()
1684 handleList->handle[i] = entityHandle; in InsertSort()
1704 TPML_HANDLE *handleList // OUT: list of handle in NvCapGetPersistent() argument
1712 handleList->count = 0; in NvCapGetPersistent()
1725 if(handleList->count == count) in NvCapGetPersistent()
1733 InsertSort(handleList, count, entityHandle); in NvCapGetPersistent()
1754 TPML_HANDLE *handleList // OUT: list of handle in NvCapGetIndex() argument
1762 handleList->count = 0; in NvCapGetIndex()
1775 if(handleList->count == count) in NvCapGetIndex()
1783 InsertSort(handleList, count, entityHandle); in NvCapGetIndex()