IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psVector.h

    r1982 r2204  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-10-06 21:30:52 $
     13 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-10-27 00:57:31 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3333{
    3434    psType type;                ///< Type of data.
    35     unsigned int nalloc;        ///< Total number of elements available.
    36     unsigned int n;             ///< Number of elements in use.
     35    psU32 nalloc;        ///< Total number of elements available.
     36    psU32 n;             ///< Number of elements in use.
    3737
    3838    union {
     
    4949        psC32* C32;             ///< Single-precision complex data.
    5050        psC64* C64;             ///< Double-precision complex data.
    51         psPTR V;                ///< Pointer to data.
     51        psPtr V;                ///< Pointer to data.
    5252    } data;                     ///< Union for data types.
    5353}
     
    6969 */
    7070psVector* psVectorAlloc(
    71     unsigned int nalloc,               ///< Total number of elements to make available.
     71    psU32 nalloc,               ///< Total number of elements to make available.
    7272    psElemType dataType                ///< Type of data to be held by vector.
    7373);
     
    8484psVector* psVectorRealloc(
    8585    psVector* restrict psVec,          ///< Vector to reallocate.
    86     unsigned int nalloc                ///< Total number of elements to make available.
     86    psU32 nalloc                ///< Total number of elements to make available.
    8787);
    8888
     
    101101    ///< taken to preserve the values.
    102102
    103     unsigned int nalloc,               ///< Total number of elements to make available.
     103    psU32 nalloc,               ///< Total number of elements to make available.
    104104    psElemType type                    ///< the datatype of the returned vector
    105105);
Note: See TracChangeset for help on using the changeset viewer.