Changeset 3115 for trunk/psLib/src/collections/psVector.c
- Timestamp:
- Feb 2, 2005, 2:54:13 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psVector.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psVector.c
r2676 r3115 10 10 * @author Robert DeSonia, MHPCC 11 11 * 12 * @version $Revision: 1.3 2$ $Name: not supported by cvs2svn $13 * @date $Date: 200 4-12-09 21:30:43$12 * @version $Revision: 1.33 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-02-03 00:54:10 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "psCollectionsErrors.h" 29 29 30 static void vectorFree(psVector* restrictpsVec);31 32 33 static void vectorFree(psVector* restrictpsVec)30 static void vectorFree(psVector* psVec); 31 32 33 static void vectorFree(psVector* psVec) 34 34 { 35 35 if (psVec == NULL) { … … 64 64 } 65 65 66 psVector* psVectorRealloc(psVector* restrictin, psU32 nalloc)66 psVector* psVectorRealloc(psVector* in, psU32 nalloc) 67 67 { 68 68 psS32 elementSize = 0; … … 87 87 } 88 88 89 psVector* psVectorRecycle(psVector* restrictin, psU32 n, psElemType type)89 psVector* psVectorRecycle(psVector* in, psU32 n, psElemType type) 90 90 { 91 91 psS32 byteSize; … … 218 218 } 219 219 220 psVector* psVectorSort(psVector* restrict outVector, const psVector* restrictinVector)220 psVector* psVectorSort(psVector* outVector, const psVector* inVector) 221 221 { 222 222 psS32 N = 0; … … 302 302 } 303 303 304 psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrictinVector)304 psVector* psVectorSortIndex(psVector* outVector, const psVector* inVector) 305 305 { 306 306 psS32 N = 0;
Note:
See TracChangeset
for help on using the changeset viewer.
