Lines Matching refs:k
154 void downheap (hash_entry a[], sal_uInt16 n, sal_uInt16 k);
258 void INetURLHistory_Impl::downheap (hash_entry a[], sal_uInt16 n, sal_uInt16 k) in downheap() argument
260 hash_entry h = a[k]; in downheap()
261 while (k < n / 2) in downheap()
263 sal_uInt16 i = k + k + 1; in downheap()
266 a[k] = a[i]; in downheap()
267 k = i; in downheap()
269 a[k] = h; in downheap()
279 for (sal_uInt16 k = (n - 1) / 2 + 1; k > 0; k--) in heapsort() local
280 downheap (a, n, k - 1); in heapsort()
345 sal_uInt16 k = find (h); in putUrl() local
346 if ((k < capacity()) && (m_pHash[k] == h)) in putUrl()
349 sal_uInt16 nMRU = m_pHash[k].m_nLru; in putUrl()
378 sal_uInt16 nDI = std::min (k, sal_uInt16(capacity() - 1)); in putUrl()
402 sal_uInt16 k = find (h); in queryUrl() local
403 if ((k < capacity()) && (m_pHash[k] == h)) in queryUrl()