Lines Matching refs:FuncName
153 #define QuickSort1(FuncName, X, n, pivot, t1) \ argument
170 PetscCall(FuncName(l, X)); \
171 PetscCall(FuncName(hi - r + 1, X + r)); \
176 #define QuickSortReverse1(FuncName, X, n, pivot, t1) \ argument
193 PetscCall(FuncName(l, X)); \
194 PetscCall(FuncName(hi - r + 1, X + r)); \
198 #define QuickSort2(FuncName, X, Y, n, pivot, t1, t2) \ argument
215 PetscCall(FuncName(l, X, Y)); \
216 PetscCall(FuncName(hi - r + 1, X + r, Y + r)); \
220 #define QuickSort3(FuncName, X, Y, Z, n, pivot, t1, t2, t3) \ argument
237 PetscCall(FuncName(l, X, Y, Z)); \
238 PetscCall(FuncName(hi - r + 1, X + r, Y + r, Z + r)); \