* some formatting changes to avoid very large lines in the source code

git-svn-id: trunk@41242 -
This commit is contained in:
nickysn 2019-02-06 18:26:05 +00:00
parent 00a67caa40
commit 1c64f4c751
2 changed files with 28 additions and 6 deletions

View File

@ -103,9 +103,20 @@ const
sorting algorithm should be used.
}
procedure RandomizedQuickSort_PtrList_NoContext(ItemPtrs: PPointer; ItemCount: SizeUInt; Comparer: TListSortComparer_NoContext);
procedure RandomizedQuickSort_PtrList_Context(ItemPtrs: PPointer; ItemCount: SizeUInt; Comparer: TListSortComparer_Context; Context: Pointer);
procedure RandomizedQuickSort_ItemList_Context(Items: Pointer; ItemCount, ItemSize: SizeUInt; Comparer: TListSortComparer_Context; Context: Pointer);
procedure RandomizedQuickSort_PtrList_NoContext(
ItemPtrs: PPointer;
ItemCount: SizeUInt;
Comparer: TListSortComparer_NoContext);
procedure RandomizedQuickSort_PtrList_Context(
ItemPtrs: PPointer;
ItemCount: SizeUInt;
Comparer: TListSortComparer_Context;
Context: Pointer);
procedure RandomizedQuickSort_ItemList_Context(
Items: Pointer;
ItemCount, ItemSize: SizeUInt;
Comparer: TListSortComparer_Context;
Context: Pointer);
procedure RandomizedQuickSort_ItemList_CustomItemExchanger_Context(
Items: Pointer;
ItemCount, ItemSize: SizeUInt;

View File

@ -62,9 +62,20 @@ type
be used.
}
procedure QuickSort_PtrList_NoContext(ItemPtrs: PPointer; ItemCount: SizeUInt; Comparer: TListSortComparer_NoContext);
procedure QuickSort_PtrList_Context(ItemPtrs: PPointer; ItemCount: SizeUInt; Comparer: TListSortComparer_Context; Context: Pointer);
procedure QuickSort_ItemList_Context(Items: Pointer; ItemCount, ItemSize: SizeUInt; Comparer: TListSortComparer_Context; Context: Pointer);
procedure QuickSort_PtrList_NoContext(
ItemPtrs: PPointer;
ItemCount: SizeUInt;
Comparer: TListSortComparer_NoContext);
procedure QuickSort_PtrList_Context(
ItemPtrs: PPointer;
ItemCount: SizeUInt;
Comparer: TListSortComparer_Context;
Context: Pointer);
procedure QuickSort_ItemList_Context(
Items: Pointer;
ItemCount, ItemSize: SizeUInt;
Comparer: TListSortComparer_Context;
Context: Pointer);
procedure QuickSort_ItemList_CustomItemExchanger_Context(
Items: Pointer;
ItemCount, ItemSize: SizeUInt;