Lines Matching refs:eclass
77 static __inline__ void fallbackSimpleSort(UInt32* fmap, UInt32* eclass, Int32 lo, Int32 hi) { in fallbackSimpleSort() argument
87 ec_tmp = eclass[tmp]; in fallbackSimpleSort()
88 for (j = i + 4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4) in fallbackSimpleSort()
96 ec_tmp = eclass[tmp]; in fallbackSimpleSort()
97 for (j = i + 1; j <= hi && ec_tmp > eclass[fmap[j]]; j++) in fallbackSimpleSort()
143 static void fallbackQSort3(UInt32* fmap, UInt32* eclass, Int32 loSt, Int32 hiSt) { in fallbackQSort3() argument
160 fallbackSimpleSort(fmap, eclass, lo, hi); in fallbackQSort3()
174 med = eclass[fmap[lo]]; in fallbackQSort3()
176 med = eclass[fmap[(lo + hi) >> 1]]; in fallbackQSort3()
178 med = eclass[fmap[hi]]; in fallbackQSort3()
187 n = (Int32)eclass[fmap[unLo]] - (Int32)med; in fallbackQSort3()
201 n = (Int32)eclass[fmap[unHi]] - (Int32)med; in fallbackQSort3()
271 static void fallbackSort(UInt32* fmap, UInt32* eclass, UInt32* bhtab, Int32 nblock, Int32 verb) { in fallbackSort() argument
277 UChar* eclass8 = (UChar*)eclass; in fallbackSort()
332 eclass[k] = j; in fallbackSort()
366 fallbackQSort3(fmap, eclass, l, r); in fallbackSort()
371 cc1 = eclass[fmap[i]]; in fallbackSort()