Changeset 1477
- Timestamp:
- Aug 11, 2004, 10:08:08 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
collections/psScalar.h (modified) (4 diffs)
-
mathtypes/psScalar.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psScalar.h
r1453 r1477 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-1 0 19:27:56$13 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-11 20:08:08 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 62 62 * Accepts a complex 64 bit float for input value, as max size, but resizes according to 63 63 * correct type. 64 * @return psScalar* : Pointer to psScalar.65 64 * 65 * @return psScalar* Pointer to a new psScalar. 66 66 */ 67 psScalar* psScalarAlloc(psC64 value, ///< Data to be put into psScalar. 68 psElemType dataType ///< Type of data to be held by psScalar. 69 ); 67 psScalar* psScalarAlloc( 68 psC64 value, ///< Data to be put into psScalar. 69 psElemType dataType ///< Type of data to be held by psScalar. 70 ); 70 71 71 72 /** Deallocate a scalar. … … 73 74 * Uses psLib memory allocation functions to deallocate a scalar. 74 75 * 75 * @return void.76 *77 76 */ 78 void psScalarFree(psScalar* restrict scalar ///< Scalar to free. 79 ); 77 void psScalarFree( 78 psScalar* restrict scalar ///< Scalar to free. 79 ); 80 80 81 81 /** Copy a scalar. … … 83 83 * Uses psLib memory allocation functions to copy a scalar. 84 84 * 85 * @return void. 86 * 85 * @return psScalar* A copy of the input scalar 87 86 */ 88 psScalar* psScalarCopy(psScalar *scalar ///< Scalar to copy. 89 ); 87 psScalar* psScalarCopy( 88 psScalar *scalar ///< Scalar to copy. 89 ); 90 90 91 91 /// @} -
trunk/psLib/src/mathtypes/psScalar.h
r1453 r1477 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-1 0 19:27:56$13 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-11 20:08:08 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 62 62 * Accepts a complex 64 bit float for input value, as max size, but resizes according to 63 63 * correct type. 64 * @return psScalar* : Pointer to psScalar.65 64 * 65 * @return psScalar* Pointer to a new psScalar. 66 66 */ 67 psScalar* psScalarAlloc(psC64 value, ///< Data to be put into psScalar. 68 psElemType dataType ///< Type of data to be held by psScalar. 69 ); 67 psScalar* psScalarAlloc( 68 psC64 value, ///< Data to be put into psScalar. 69 psElemType dataType ///< Type of data to be held by psScalar. 70 ); 70 71 71 72 /** Deallocate a scalar. … … 73 74 * Uses psLib memory allocation functions to deallocate a scalar. 74 75 * 75 * @return void.76 *77 76 */ 78 void psScalarFree(psScalar* restrict scalar ///< Scalar to free. 79 ); 77 void psScalarFree( 78 psScalar* restrict scalar ///< Scalar to free. 79 ); 80 80 81 81 /** Copy a scalar. … … 83 83 * Uses psLib memory allocation functions to copy a scalar. 84 84 * 85 * @return void. 86 * 85 * @return psScalar* A copy of the input scalar 87 86 */ 88 psScalar* psScalarCopy(psScalar *scalar ///< Scalar to copy. 89 ); 87 psScalar* psScalarCopy( 88 psScalar *scalar ///< Scalar to copy. 89 ); 90 90 91 91 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
