IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 2:53:32 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r4162 r4312  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-08 23:40:45 $
     14 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-18 00:53:32 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5656/*@null@*/
    5757psBitSet* psBitSetAlloc(
    58     psS32 n                            ///< Number of bits in psBitSet array
     58    long nalloc                            ///< Number of bits in psBitSet array
    5959);
    6060
     
    6969psBitSet* psBitSetSet(
    7070    /* @returned@ */
    71     psBitSet* inMask,                  ///< Pointer to psBitSet to be set.
    72     psS32 bit                          ///< Bit to be set.
     71    psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
     72    long bit                          ///< Bit to be set.
    7373);
    7474
     
    8383psBitSet* psBitSetClear(
    8484    /* @returned@ */
    85     psBitSet* inMask,                  ///< Pointer to psBitSet to be cleared.
    86     psS32 bit                          ///< Bit to be cleared.
     85    psBitSet* bitSet,                  ///< Pointer to psBitSet to be cleared.
     86    long bit                           ///< Bit to be cleared.
    8787);
    8888
     
    9797 */
    9898
    99 psBool psBitSetTest(
    100     const psBitSet* inMask,            ///< Pointer psBitSet to be tested.
    101     psS32 bit                          ///< Bit to be tested.
     99bool psBitSetTest(
     100    const psBitSet* bitSet,            ///< Pointer psBitSet to be tested.
     101    long bit                           ///< Bit to be tested.
    102102);
    103103
     
    111111psBitSet* psBitSetOp(
    112112    /* @returned@ */
    113     psBitSet* outMask,                 ///< Resulting psBitSet from binary operation
    114     const psBitSet* inMask1,           ///< First psBitSet on which to operate
    115     char *operator,                    ///< Bit operation
    116     const psBitSet* inMask2            ///< First psBitSet on which to operate
     113    psBitSet* outBitSet,                 ///< Resulting psBitSet from binary operation
     114    const psBitSet* inBitSet1,           ///< First psBitSet on which to operate
     115    const char *operator,                    ///< Bit operation
     116    const psBitSet* inBitSet2            ///< First psBitSet on which to operate
    117117);
    118118
Note: See TracChangeset for help on using the changeset viewer.