Lines Matching refs:temp
8 #define HeapSortDown(p, k, size, temp) \ argument
13 if (temp >= p[s]) break; \
15 } p[k] = temp; }
26 UInt32 temp = p[i]; in HeapSort() local
28 HeapSortDown(p, k, size, temp) in HeapSort()
44 UInt32 temp = p[size]; in HeapSort() local
48 HeapSortDown(p, k, size, temp) in HeapSort()
51 UInt32 temp = p[size]; in HeapSort() local
53 if (size > 2 && p[2] < temp) in HeapSort()
56 p[2] = temp; in HeapSort()
59 p[1] = temp; in HeapSort()
72 UInt64 temp = p[i]; in HeapSort64() local
74 HeapSortDown(p, k, size, temp) in HeapSort64()
90 UInt64 temp = p[size]; in HeapSort64() local
94 HeapSortDown(p, k, size, temp) in HeapSort64()
97 UInt64 temp = p[size]; in HeapSort64() local
99 if (size > 2 && p[2] < temp) in HeapSort64()
102 p[2] = temp; in HeapSort64()
105 p[1] = temp; in HeapSort64()