Changeset 1473
- Timestamp:
- Aug 11, 2004, 9:58:11 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
collections/psCompare.h (modified) (43 diffs)
-
math/psCompare.h (modified) (43 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psCompare.h
r1441 r1473 9 9 * @ingroup Compare 10 10 * 11 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08- 09 23:40:55$11 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-11 19:58:11 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 * than, equal to, or greater than the second. 27 27 */ 28 typedef int (*psComparePtrFcn) (const void **a, const void **b); 28 typedef int (*psComparePtrFcn) ( 29 const void **a, ///< first comparison target 30 const void **b ///< second comparison target 31 ); 29 32 30 33 /** A comparison function for sorting. … … 34 37 * than, equal to, or greater than the second. 35 38 */ 36 typedef int (*psCompareFcn) (const void *a, const void *b); 39 typedef int (*psCompareFcn) ( 40 const void *a, ///< first comparison target 41 const void *b ///< second comparison target 42 ); 37 43 38 44 /** Compare function of psS8 data. For use with psListSort. … … 42 48 * than, equal to, or greater than the second. 43 49 */ 44 int psCompareS8Ptr(const void **a, const void **b); 50 int psCompareS8Ptr( 51 const void **a, ///< first comparison target 52 const void **b ///< second comparison target 53 ); 45 54 46 55 /** Compare function of psS16 data. For use with psListSort. … … 50 59 * than, equal to, or greater than the second. 51 60 */ 52 int psCompareS16Ptr(const void **a, const void **b); 61 int psCompareS16Ptr( 62 const void **a, ///< first comparison target 63 const void **b ///< second comparison target 64 ); 53 65 54 66 /** Compare function of psS32 data. For use with psListSort. … … 58 70 * than, equal to, or greater than the second. 59 71 */ 60 int psCompareS32Ptr(const void **a, const void **b); 72 int psCompareS32Ptr( 73 const void **a, ///< first comparison target 74 const void **b ///< second comparison target 75 ); 61 76 62 77 /** Compare function of psS64 data. For use with psListSort. … … 66 81 * than, equal to, or greater than the second. 67 82 */ 68 int psCompareS64Ptr(const void **a, const void **b); 83 int psCompareS64Ptr( 84 const void **a, ///< first comparison target 85 const void **b ///< second comparison target 86 ); 69 87 70 88 /** Compare function of psU8 data. For use with psListSort. … … 74 92 * than, equal to, or greater than the second. 75 93 */ 76 int psCompareU8Ptr(const void **a, const void **b); 94 int psCompareU8Ptr( 95 const void **a, ///< first comparison target 96 const void **b ///< second comparison target 97 ); 77 98 78 99 /** Compare function of psU16 data. For use with psListSort. … … 82 103 * than, equal to, or greater than the second. 83 104 */ 84 int psCompareU16Ptr(const void **a, const void **b); 105 int psCompareU16Ptr( 106 const void **a, ///< first comparison target 107 const void **b ///< second comparison target 108 ); 85 109 86 110 /** Compare function of psU32 data. For use with psListSort. … … 90 114 * than, equal to, or greater than the second. 91 115 */ 92 int psCompareU32Ptr(const void **a, const void **b); 116 int psCompareU32Ptr( 117 const void **a, ///< first comparison target 118 const void **b ///< second comparison target 119 ); 93 120 94 121 /** Compare function of psU64 data. For use with psListSort. … … 98 125 * than, equal to, or greater than the second. 99 126 */ 100 int psCompareU64Ptr(const void **a, const void **b); 127 int psCompareU64Ptr( 128 const void **a, ///< first comparison target 129 const void **b ///< second comparison target 130 ); 101 131 102 132 /** Compare function of psF32 data. For use with psListSort. … … 106 136 * than, equal to, or greater than the second. 107 137 */ 108 int psCompareF32Ptr(const void **a, const void **b); 138 int psCompareF32Ptr( 139 const void **a, ///< first comparison target 140 const void **b ///< second comparison target 141 ); 109 142 110 143 /** Compare function of psF64 data. For use with psListSort. … … 114 147 * than, equal to, or greater than the second. 115 148 */ 116 int psCompareF64Ptr(const void **a, const void **b); 149 int psCompareF64Ptr( 150 const void **a, ///< first comparison target 151 const void **b ///< second comparison target 152 ); 117 153 118 154 /** Compare function of psS8 data. For use with psListSort for descending ordering. … … 122 158 * than, equal to, or less than the second. 123 159 */ 124 int psCompareDescendingS8Ptr(const void **a, const void **b); 160 int psCompareDescendingS8Ptr( 161 const void **a, ///< first comparison target 162 const void **b ///< second comparison target 163 ); 125 164 126 165 /** Compare function of psS16 data. For use with psListSort for descending ordering. … … 130 169 * than, equal to, or less than the second. 131 170 */ 132 int psCompareDescendingS16Ptr(const void **a, const void **b); 171 int psCompareDescendingS16Ptr( 172 const void **a, ///< first comparison target 173 const void **b ///< second comparison target 174 ); 133 175 134 176 /** Compare function of psS32 data. For use with psListSort for descending ordering. … … 138 180 * than, equal to, or less than the second. 139 181 */ 140 int psCompareDescendingS32Ptr(const void **a, const void **b); 182 int psCompareDescendingS32Ptr( 183 const void **a, ///< first comparison target 184 const void **b ///< second comparison target 185 ); 141 186 142 187 /** Compare function of psS64 data. For use with psListSort for descending ordering. … … 146 191 * than, equal to, or less than the second. 147 192 */ 148 int psCompareDescendingS64Ptr(const void **a, const void **b); 193 int psCompareDescendingS64Ptr( 194 const void **a, ///< first comparison target 195 const void **b ///< second comparison target 196 ); 149 197 150 198 /** Compare function of psU8 data. For use with psListSort for descending ordering. … … 154 202 * than, equal to, or less than the second. 155 203 */ 156 int psCompareDescendingU8Ptr(const void **a, const void **b); 204 int psCompareDescendingU8Ptr( 205 const void **a, ///< first comparison target 206 const void **b ///< second comparison target 207 ); 157 208 158 209 /** Compare function of psU16 data. For use with psListSort for descending ordering. … … 162 213 * than, equal to, or less than the second. 163 214 */ 164 int psCompareDescendingU16Ptr(const void **a, const void **b); 215 int psCompareDescendingU16Ptr( 216 const void **a, ///< first comparison target 217 const void **b ///< second comparison target 218 ); 165 219 166 220 /** Compare function of psU32 data. For use with psListSort for descending ordering. … … 170 224 * than, equal to, or lessg than the second. 171 225 */ 172 int psCompareDescendingU32Ptr(const void **a, const void **b); 226 int psCompareDescendingU32Ptr( 227 const void **a, ///< first comparison target 228 const void **b ///< second comparison target 229 ); 173 230 174 231 /** Compare function of psU64 data. For use with psListSort for descending ordering. … … 178 235 * than, equal to, or lessg than the second. 179 236 */ 180 int psCompareDescendingU64Ptr(const void **a, const void **b); 237 int psCompareDescendingU64Ptr( 238 const void **a, ///< first comparison target 239 const void **b ///< second comparison target 240 ); 181 241 182 242 /** Compare function of psF32 data. For use with psListSort for descending ordering. … … 186 246 * than, equal to, or lessg than the second. 187 247 */ 188 int psCompareDescendingF32Ptr(const void **a, const void **b); 248 int psCompareDescendingF32Ptr( 249 const void **a, ///< first comparison target 250 const void **b ///< second comparison target 251 ); 189 252 190 253 /** Compare function of psF64 data. For use with psListSort for descending ordering. … … 194 257 * than, equal to, or lessg than the second. 195 258 */ 196 int psCompareDescendingF64Ptr(const void **a, const void **b); 259 int psCompareDescendingF64Ptr( 260 const void **a, ///< first comparison target 261 const void **b ///< second comparison target 262 ); 197 263 198 264 /** Compare function of psS8 data. … … 202 268 * than, equal to, or greater than the second. 203 269 */ 204 int psCompareS8(const void *a, const void *b); 270 int psCompareS8( 271 const void *a, ///< first comparison target 272 const void *b ///< second comparison target 273 ); 274 205 275 206 276 /** Compare function of psS16 data. … … 210 280 * than, equal to, or greater than the second. 211 281 */ 212 int psCompareS16(const void *a, const void *b); 282 int psCompareS16( 283 const void *a, ///< first comparison target 284 const void *b ///< second comparison target 285 ); 286 213 287 214 288 /** Compare function of psS32 data. … … 218 292 * than, equal to, or greater than the second. 219 293 */ 220 int psCompareS32(const void *a, const void *b); 294 int psCompareS32( 295 const void *a, ///< first comparison target 296 const void *b ///< second comparison target 297 ); 298 221 299 222 300 /** Compare function of psS64 data. … … 226 304 * than, equal to, or greater than the second. 227 305 */ 228 int psCompareS64(const void *a, const void *b); 306 int psCompareS64( 307 const void *a, ///< first comparison target 308 const void *b ///< second comparison target 309 ); 310 229 311 230 312 /** Compare function of psU8 data. … … 234 316 * than, equal to, or greater than the second. 235 317 */ 236 int psCompareU8(const void *a, const void *b); 318 int psCompareU8( 319 const void *a, ///< first comparison target 320 const void *b ///< second comparison target 321 ); 322 237 323 238 324 /** Compare function of psU16 data. … … 242 328 * than, equal to, or greater than the second. 243 329 */ 244 int psCompareU16(const void *a, const void *b); 330 int psCompareU16( 331 const void *a, ///< first comparison target 332 const void *b ///< second comparison target 333 ); 334 245 335 246 336 /** Compare function of psU32 data. … … 250 340 * than, equal to, or greater than the second. 251 341 */ 252 int psCompareU32(const void *a, const void *b); 342 int psCompareU32( 343 const void *a, ///< first comparison target 344 const void *b ///< second comparison target 345 ); 346 253 347 254 348 /** Compare function of psU64 data. … … 258 352 * than, equal to, or greater than the second. 259 353 */ 260 int psCompareU64(const void *a, const void *b); 354 int psCompareU64( 355 const void *a, ///< first comparison target 356 const void *b ///< second comparison target 357 ); 358 261 359 262 360 /** Compare function of psF32 data. … … 266 364 * than, equal to, or greater than the second. 267 365 */ 268 int psCompareF32(const void *a, const void *b); 366 int psCompareF32( 367 const void *a, ///< first comparison target 368 const void *b ///< second comparison target 369 ); 370 269 371 270 372 /** Compare function of psF64 data. … … 274 376 * than, equal to, or greater than the second. 275 377 */ 276 int psCompareF64(const void *a, const void *b); 378 int psCompareF64( 379 const void *a, ///< first comparison target 380 const void *b ///< second comparison target 381 ); 382 277 383 278 384 /** Compare function of psS8 data. … … 282 388 * than, equal to, or less than the second. 283 389 */ 284 int psCompareDescendingS8(const void *a, const void *b); 390 int psCompareDescendingS8( 391 const void *a, ///< first comparison target 392 const void *b ///< second comparison target 393 ); 394 285 395 286 396 /** Compare function of psS16 data. … … 290 400 * than, equal to, or less than the second. 291 401 */ 292 int psCompareDescendingS16(const void *a, const void *b); 402 int psCompareDescendingS16( 403 const void *a, ///< first comparison target 404 const void *b ///< second comparison target 405 ); 406 293 407 294 408 /** Compare function of psS32 data. … … 298 412 * than, equal to, or less than the second. 299 413 */ 300 int psCompareDescendingS32(const void *a, const void *b); 414 int psCompareDescendingS32( 415 const void *a, ///< first comparison target 416 const void *b ///< second comparison target 417 ); 418 301 419 302 420 /** Compare function of psS64 data. … … 306 424 * than, equal to, or less than the second. 307 425 */ 308 int psCompareDescendingS64(const void *a, const void *b); 426 int psCompareDescendingS64( 427 const void *a, ///< first comparison target 428 const void *b ///< second comparison target 429 ); 430 309 431 310 432 /** Compare function of psU8 data. … … 314 436 * than, equal to, or less than the second. 315 437 */ 316 int psCompareDescendingU8(const void *a, const void *b); 438 int psCompareDescendingU8( 439 const void *a, ///< first comparison target 440 const void *b ///< second comparison target 441 ); 442 317 443 318 444 /** Compare function of psU16 data. … … 322 448 * than, equal to, or less than the second. 323 449 */ 324 int psCompareDescendingU16(const void *a, const void *b); 450 int psCompareDescendingU16( 451 const void *a, ///< first comparison target 452 const void *b ///< second comparison target 453 ); 454 325 455 326 456 /** Compare function of psU32 data. … … 328 458 * @return int an integer less than, equal to, or greater than zero if 329 459 * the first argument is considered to be respectively greater 330 * than, equal to, or lessg than the second. 331 */ 332 int psCompareDescendingU32(const void *a, const void *b); 460 * than, equal to, or less than the second. 461 */ 462 int psCompareDescendingU32( 463 const void *a, ///< first comparison target 464 const void *b ///< second comparison target 465 ); 466 333 467 334 468 /** Compare function of psU64 data. … … 336 470 * @return int an integer less than, equal to, or greater than zero if 337 471 * the first argument is considered to be respectively greater 338 * than, equal to, or lessg than the second. 339 */ 340 int psCompareDescendingU64(const void *a, const void *b); 472 * than, equal to, or less than the second. 473 */ 474 int psCompareDescendingU64( 475 const void *a, ///< first comparison target 476 const void *b ///< second comparison target 477 ); 478 341 479 342 480 /** Compare function of psF32 data. … … 344 482 * @return int an integer less than, equal to, or greater than zero if 345 483 * the first argument is considered to be respectively greater 346 * than, equal to, or lessg than the second. 347 */ 348 int psCompareDescendingF32(const void *a, const void *b); 484 * than, equal to, or less than the second. 485 */ 486 int psCompareDescendingF32( 487 const void *a, ///< first comparison target 488 const void *b ///< second comparison target 489 ); 490 349 491 350 492 /** Compare function of psF64 data. … … 352 494 * @return int an integer less than, equal to, or greater than zero if 353 495 * the first argument is considered to be respectively greater 354 * than, equal to, or lessg than the second. 355 */ 356 int psCompareDescendingF64(const void *a, const void *b); 496 * than, equal to, or less than the second. 497 */ 498 int psCompareDescendingF64( 499 const void *a, ///< first comparison target 500 const void *b ///< second comparison target 501 ); 502 357 503 358 504 /// @} -
trunk/psLib/src/math/psCompare.h
r1441 r1473 9 9 * @ingroup Compare 10 10 * 11 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08- 09 23:40:55$11 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-11 19:58:11 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 26 26 * than, equal to, or greater than the second. 27 27 */ 28 typedef int (*psComparePtrFcn) (const void **a, const void **b); 28 typedef int (*psComparePtrFcn) ( 29 const void **a, ///< first comparison target 30 const void **b ///< second comparison target 31 ); 29 32 30 33 /** A comparison function for sorting. … … 34 37 * than, equal to, or greater than the second. 35 38 */ 36 typedef int (*psCompareFcn) (const void *a, const void *b); 39 typedef int (*psCompareFcn) ( 40 const void *a, ///< first comparison target 41 const void *b ///< second comparison target 42 ); 37 43 38 44 /** Compare function of psS8 data. For use with psListSort. … … 42 48 * than, equal to, or greater than the second. 43 49 */ 44 int psCompareS8Ptr(const void **a, const void **b); 50 int psCompareS8Ptr( 51 const void **a, ///< first comparison target 52 const void **b ///< second comparison target 53 ); 45 54 46 55 /** Compare function of psS16 data. For use with psListSort. … … 50 59 * than, equal to, or greater than the second. 51 60 */ 52 int psCompareS16Ptr(const void **a, const void **b); 61 int psCompareS16Ptr( 62 const void **a, ///< first comparison target 63 const void **b ///< second comparison target 64 ); 53 65 54 66 /** Compare function of psS32 data. For use with psListSort. … … 58 70 * than, equal to, or greater than the second. 59 71 */ 60 int psCompareS32Ptr(const void **a, const void **b); 72 int psCompareS32Ptr( 73 const void **a, ///< first comparison target 74 const void **b ///< second comparison target 75 ); 61 76 62 77 /** Compare function of psS64 data. For use with psListSort. … … 66 81 * than, equal to, or greater than the second. 67 82 */ 68 int psCompareS64Ptr(const void **a, const void **b); 83 int psCompareS64Ptr( 84 const void **a, ///< first comparison target 85 const void **b ///< second comparison target 86 ); 69 87 70 88 /** Compare function of psU8 data. For use with psListSort. … … 74 92 * than, equal to, or greater than the second. 75 93 */ 76 int psCompareU8Ptr(const void **a, const void **b); 94 int psCompareU8Ptr( 95 const void **a, ///< first comparison target 96 const void **b ///< second comparison target 97 ); 77 98 78 99 /** Compare function of psU16 data. For use with psListSort. … … 82 103 * than, equal to, or greater than the second. 83 104 */ 84 int psCompareU16Ptr(const void **a, const void **b); 105 int psCompareU16Ptr( 106 const void **a, ///< first comparison target 107 const void **b ///< second comparison target 108 ); 85 109 86 110 /** Compare function of psU32 data. For use with psListSort. … … 90 114 * than, equal to, or greater than the second. 91 115 */ 92 int psCompareU32Ptr(const void **a, const void **b); 116 int psCompareU32Ptr( 117 const void **a, ///< first comparison target 118 const void **b ///< second comparison target 119 ); 93 120 94 121 /** Compare function of psU64 data. For use with psListSort. … … 98 125 * than, equal to, or greater than the second. 99 126 */ 100 int psCompareU64Ptr(const void **a, const void **b); 127 int psCompareU64Ptr( 128 const void **a, ///< first comparison target 129 const void **b ///< second comparison target 130 ); 101 131 102 132 /** Compare function of psF32 data. For use with psListSort. … … 106 136 * than, equal to, or greater than the second. 107 137 */ 108 int psCompareF32Ptr(const void **a, const void **b); 138 int psCompareF32Ptr( 139 const void **a, ///< first comparison target 140 const void **b ///< second comparison target 141 ); 109 142 110 143 /** Compare function of psF64 data. For use with psListSort. … … 114 147 * than, equal to, or greater than the second. 115 148 */ 116 int psCompareF64Ptr(const void **a, const void **b); 149 int psCompareF64Ptr( 150 const void **a, ///< first comparison target 151 const void **b ///< second comparison target 152 ); 117 153 118 154 /** Compare function of psS8 data. For use with psListSort for descending ordering. … … 122 158 * than, equal to, or less than the second. 123 159 */ 124 int psCompareDescendingS8Ptr(const void **a, const void **b); 160 int psCompareDescendingS8Ptr( 161 const void **a, ///< first comparison target 162 const void **b ///< second comparison target 163 ); 125 164 126 165 /** Compare function of psS16 data. For use with psListSort for descending ordering. … … 130 169 * than, equal to, or less than the second. 131 170 */ 132 int psCompareDescendingS16Ptr(const void **a, const void **b); 171 int psCompareDescendingS16Ptr( 172 const void **a, ///< first comparison target 173 const void **b ///< second comparison target 174 ); 133 175 134 176 /** Compare function of psS32 data. For use with psListSort for descending ordering. … … 138 180 * than, equal to, or less than the second. 139 181 */ 140 int psCompareDescendingS32Ptr(const void **a, const void **b); 182 int psCompareDescendingS32Ptr( 183 const void **a, ///< first comparison target 184 const void **b ///< second comparison target 185 ); 141 186 142 187 /** Compare function of psS64 data. For use with psListSort for descending ordering. … … 146 191 * than, equal to, or less than the second. 147 192 */ 148 int psCompareDescendingS64Ptr(const void **a, const void **b); 193 int psCompareDescendingS64Ptr( 194 const void **a, ///< first comparison target 195 const void **b ///< second comparison target 196 ); 149 197 150 198 /** Compare function of psU8 data. For use with psListSort for descending ordering. … … 154 202 * than, equal to, or less than the second. 155 203 */ 156 int psCompareDescendingU8Ptr(const void **a, const void **b); 204 int psCompareDescendingU8Ptr( 205 const void **a, ///< first comparison target 206 const void **b ///< second comparison target 207 ); 157 208 158 209 /** Compare function of psU16 data. For use with psListSort for descending ordering. … … 162 213 * than, equal to, or less than the second. 163 214 */ 164 int psCompareDescendingU16Ptr(const void **a, const void **b); 215 int psCompareDescendingU16Ptr( 216 const void **a, ///< first comparison target 217 const void **b ///< second comparison target 218 ); 165 219 166 220 /** Compare function of psU32 data. For use with psListSort for descending ordering. … … 170 224 * than, equal to, or lessg than the second. 171 225 */ 172 int psCompareDescendingU32Ptr(const void **a, const void **b); 226 int psCompareDescendingU32Ptr( 227 const void **a, ///< first comparison target 228 const void **b ///< second comparison target 229 ); 173 230 174 231 /** Compare function of psU64 data. For use with psListSort for descending ordering. … … 178 235 * than, equal to, or lessg than the second. 179 236 */ 180 int psCompareDescendingU64Ptr(const void **a, const void **b); 237 int psCompareDescendingU64Ptr( 238 const void **a, ///< first comparison target 239 const void **b ///< second comparison target 240 ); 181 241 182 242 /** Compare function of psF32 data. For use with psListSort for descending ordering. … … 186 246 * than, equal to, or lessg than the second. 187 247 */ 188 int psCompareDescendingF32Ptr(const void **a, const void **b); 248 int psCompareDescendingF32Ptr( 249 const void **a, ///< first comparison target 250 const void **b ///< second comparison target 251 ); 189 252 190 253 /** Compare function of psF64 data. For use with psListSort for descending ordering. … … 194 257 * than, equal to, or lessg than the second. 195 258 */ 196 int psCompareDescendingF64Ptr(const void **a, const void **b); 259 int psCompareDescendingF64Ptr( 260 const void **a, ///< first comparison target 261 const void **b ///< second comparison target 262 ); 197 263 198 264 /** Compare function of psS8 data. … … 202 268 * than, equal to, or greater than the second. 203 269 */ 204 int psCompareS8(const void *a, const void *b); 270 int psCompareS8( 271 const void *a, ///< first comparison target 272 const void *b ///< second comparison target 273 ); 274 205 275 206 276 /** Compare function of psS16 data. … … 210 280 * than, equal to, or greater than the second. 211 281 */ 212 int psCompareS16(const void *a, const void *b); 282 int psCompareS16( 283 const void *a, ///< first comparison target 284 const void *b ///< second comparison target 285 ); 286 213 287 214 288 /** Compare function of psS32 data. … … 218 292 * than, equal to, or greater than the second. 219 293 */ 220 int psCompareS32(const void *a, const void *b); 294 int psCompareS32( 295 const void *a, ///< first comparison target 296 const void *b ///< second comparison target 297 ); 298 221 299 222 300 /** Compare function of psS64 data. … … 226 304 * than, equal to, or greater than the second. 227 305 */ 228 int psCompareS64(const void *a, const void *b); 306 int psCompareS64( 307 const void *a, ///< first comparison target 308 const void *b ///< second comparison target 309 ); 310 229 311 230 312 /** Compare function of psU8 data. … … 234 316 * than, equal to, or greater than the second. 235 317 */ 236 int psCompareU8(const void *a, const void *b); 318 int psCompareU8( 319 const void *a, ///< first comparison target 320 const void *b ///< second comparison target 321 ); 322 237 323 238 324 /** Compare function of psU16 data. … … 242 328 * than, equal to, or greater than the second. 243 329 */ 244 int psCompareU16(const void *a, const void *b); 330 int psCompareU16( 331 const void *a, ///< first comparison target 332 const void *b ///< second comparison target 333 ); 334 245 335 246 336 /** Compare function of psU32 data. … … 250 340 * than, equal to, or greater than the second. 251 341 */ 252 int psCompareU32(const void *a, const void *b); 342 int psCompareU32( 343 const void *a, ///< first comparison target 344 const void *b ///< second comparison target 345 ); 346 253 347 254 348 /** Compare function of psU64 data. … … 258 352 * than, equal to, or greater than the second. 259 353 */ 260 int psCompareU64(const void *a, const void *b); 354 int psCompareU64( 355 const void *a, ///< first comparison target 356 const void *b ///< second comparison target 357 ); 358 261 359 262 360 /** Compare function of psF32 data. … … 266 364 * than, equal to, or greater than the second. 267 365 */ 268 int psCompareF32(const void *a, const void *b); 366 int psCompareF32( 367 const void *a, ///< first comparison target 368 const void *b ///< second comparison target 369 ); 370 269 371 270 372 /** Compare function of psF64 data. … … 274 376 * than, equal to, or greater than the second. 275 377 */ 276 int psCompareF64(const void *a, const void *b); 378 int psCompareF64( 379 const void *a, ///< first comparison target 380 const void *b ///< second comparison target 381 ); 382 277 383 278 384 /** Compare function of psS8 data. … … 282 388 * than, equal to, or less than the second. 283 389 */ 284 int psCompareDescendingS8(const void *a, const void *b); 390 int psCompareDescendingS8( 391 const void *a, ///< first comparison target 392 const void *b ///< second comparison target 393 ); 394 285 395 286 396 /** Compare function of psS16 data. … … 290 400 * than, equal to, or less than the second. 291 401 */ 292 int psCompareDescendingS16(const void *a, const void *b); 402 int psCompareDescendingS16( 403 const void *a, ///< first comparison target 404 const void *b ///< second comparison target 405 ); 406 293 407 294 408 /** Compare function of psS32 data. … … 298 412 * than, equal to, or less than the second. 299 413 */ 300 int psCompareDescendingS32(const void *a, const void *b); 414 int psCompareDescendingS32( 415 const void *a, ///< first comparison target 416 const void *b ///< second comparison target 417 ); 418 301 419 302 420 /** Compare function of psS64 data. … … 306 424 * than, equal to, or less than the second. 307 425 */ 308 int psCompareDescendingS64(const void *a, const void *b); 426 int psCompareDescendingS64( 427 const void *a, ///< first comparison target 428 const void *b ///< second comparison target 429 ); 430 309 431 310 432 /** Compare function of psU8 data. … … 314 436 * than, equal to, or less than the second. 315 437 */ 316 int psCompareDescendingU8(const void *a, const void *b); 438 int psCompareDescendingU8( 439 const void *a, ///< first comparison target 440 const void *b ///< second comparison target 441 ); 442 317 443 318 444 /** Compare function of psU16 data. … … 322 448 * than, equal to, or less than the second. 323 449 */ 324 int psCompareDescendingU16(const void *a, const void *b); 450 int psCompareDescendingU16( 451 const void *a, ///< first comparison target 452 const void *b ///< second comparison target 453 ); 454 325 455 326 456 /** Compare function of psU32 data. … … 328 458 * @return int an integer less than, equal to, or greater than zero if 329 459 * the first argument is considered to be respectively greater 330 * than, equal to, or lessg than the second. 331 */ 332 int psCompareDescendingU32(const void *a, const void *b); 460 * than, equal to, or less than the second. 461 */ 462 int psCompareDescendingU32( 463 const void *a, ///< first comparison target 464 const void *b ///< second comparison target 465 ); 466 333 467 334 468 /** Compare function of psU64 data. … … 336 470 * @return int an integer less than, equal to, or greater than zero if 337 471 * the first argument is considered to be respectively greater 338 * than, equal to, or lessg than the second. 339 */ 340 int psCompareDescendingU64(const void *a, const void *b); 472 * than, equal to, or less than the second. 473 */ 474 int psCompareDescendingU64( 475 const void *a, ///< first comparison target 476 const void *b ///< second comparison target 477 ); 478 341 479 342 480 /** Compare function of psF32 data. … … 344 482 * @return int an integer less than, equal to, or greater than zero if 345 483 * the first argument is considered to be respectively greater 346 * than, equal to, or lessg than the second. 347 */ 348 int psCompareDescendingF32(const void *a, const void *b); 484 * than, equal to, or less than the second. 485 */ 486 int psCompareDescendingF32( 487 const void *a, ///< first comparison target 488 const void *b ///< second comparison target 489 ); 490 349 491 350 492 /** Compare function of psF64 data. … … 352 494 * @return int an integer less than, equal to, or greater than zero if 353 495 * the first argument is considered to be respectively greater 354 * than, equal to, or lessg than the second. 355 */ 356 int psCompareDescendingF64(const void *a, const void *b); 496 * than, equal to, or less than the second. 497 */ 498 int psCompareDescendingF64( 499 const void *a, ///< first comparison target 500 const void *b ///< second comparison target 501 ); 502 357 503 358 504 /// @}
Note:
See TracChangeset
for help on using the changeset viewer.
