annotate liboctave/mx-ops @ 8019:0ef13e15319b

replace NPOS with std::string::npos
author John W. Eaton <jwe@octave.org>
date Thu, 07 Aug 2008 15:15:33 -0400
parents 82be108cc558
children 69c5cce38c29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7019
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
1 # Copyright (C) 2003, 2004, 2006, 2007 John W. Eaton
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
2 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
3 # This file is part of Octave.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
4 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
5 # Octave is free software; you can redistribute it and/or modify it
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
6 # under the terms of the GNU General Public License as published by the
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
7 # Free Software Foundation; either version 3 of the License, or (at
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
8 # your option) any later version.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
9 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
10 # Octave is distributed in the hope that it will be useful, but WITHOUT
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
13 # for more details.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
14 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
15 # You should have received a copy of the GNU General Public License
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
16 # along with Octave; see the file COPYING. If not, see
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
17 # <http://www.gnu.org/licenses/>.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
18
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
19 # types
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
20 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
21 # key typename object-type header fwd-decl-ok scalar-zero core-type
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
22 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
23 # object-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
24 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
25 # S: scalar
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
26 # M: matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
27 # DM: diagonal matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
28 # ND: N-d array
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
29 # FS: scalar
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
30 # FM: matrix
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
31 # FDM: diagonal matrix
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
32 # FND: N-d array
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
33 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
34 # core-type is only used for the octave_int types, and is the template
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
35 # parameter: octave_int8 is octave_int<int8_t>
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
36 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
37 x NONE NONE NONE NO 0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
38 b bool S NONE NO false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
39 bm boolMatrix ND boolMatrix.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
40 bnda boolNDArray ND boolNDArray.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
41 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
42 cm ComplexMatrix M CMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
43 cnda ComplexNDArray ND CNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
44 cs Complex S oct-cmplx.h NO 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
45 dm DiagMatrix DM dDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
46 m Matrix M dMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
47 nda NDArray ND dNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
48 s double S NONE NO 0.0
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
49 fcdm FloatComplexDiagMatrix DM fCDiagMatrix.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
50 fcm FloatComplexMatrix M fCMatrix.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
51 fcnda FloatComplexNDArray ND fCNDArray.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
52 fcs FloatComplex S oct-cmplx.h NO static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
53 fdm FloatDiagMatrix DM fDiagMatrix.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
54 fm FloatMatrix M fMatrix.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
55 fnda FloatNDArray ND fNDArray.h YES static_cast<float>(0.0)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
56 fs float S NONE NO static_cast<float>(0.0)
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
57 i8 octave_int8 S oct-inttypes.h YES octave_int8(0) int8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
58 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8(0) uint8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
59 i16 octave_int16 S oct-inttypes.h YES octave_int16(0) int16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
60 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16(0) uint16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
61 i32 octave_int32 S oct-inttypes.h YES octave_int32(0) int32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
62 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32(0) uint32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
63 i64 octave_int64 S oct-inttypes.h YES octave_int64(0) int64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
64 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64(0) uint64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
65 i8nda int8NDArray ND int8NDArray.h YES octave_int8(0) int8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
66 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8(0) uint8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
67 i16nda int16NDArray ND int16NDArray.h YES octave_int16(0) int16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
68 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16(0) uint16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
69 i32nda int32NDArray ND int32NDArray.h YES octave_int32(0) int32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
70 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32(0) uint32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
71 i64nda int64NDArray ND int64NDArray.h YES octave_int64(0) int64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
72 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64(0) uint64_t
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
73 # ops
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
74 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ...
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
75 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
76 # op-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
77 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
78 # B: binary ops, + - * /
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
79 # C: comparison ops, < <= == != >= >
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
80 # L: logical ops, & |
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
81 #
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
82 cdm cdm dm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
83 cdm dm cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
84 cm cs cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
85 cm cs dm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
86 cm cs m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
87 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
88 cm cdm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
89 cm cdm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
90 cm cdm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
91 cm cdm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
92 cm cm cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
93 cm cm dm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
94 cm cm m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
95 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
96 cm cm s BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
97 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
98 cm dm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
99 cm dm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
100 cm m cs BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
101 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
102 cm m cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
103 cm m cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
104 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
105 cm s cdm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
106 cm s cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
107 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
108 m dm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
109 m dm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
110 m m dm B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
111 m s dm B
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
112 #
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
113 fcdm fcdm fdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
114 fcdm fdm fcdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
115 fcm fcs fcdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
116 fcm fcs fdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
117 fcm fcs fm BCL real NONE boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
118 fcnda fcs fnda BCL real NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
119 fcm fcdm fcs B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
120 fcm fcdm fcm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
121 fcm fcdm fm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
122 fcm fcdm fs B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
123 fcm fcm fcdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
124 fcm fcm fdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
125 fcm fcm fm BCL real NONE boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
126 fcnda fcnda fnda BCL real NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
127 fcm fcm fs BCL real NONE boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
128 fcnda fcnda fs BCL real NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
129 fcm fdm fcs B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
130 fcm fdm fcm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
131 fcm fm fcs BCL NONE real boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
132 fcnda fnda fcs BCL NONE real boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
133 fcm fm fcdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
134 fcm fm fcm BCL NONE real boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
135 fcnda fnda fcnda BCL NONE real boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
136 fcm fs fcdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
137 fcm fs fcm BCL NONE real boolMatrix.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
138 fcnda fs fcnda BCL NONE real boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
139 fm fdm fm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
140 fm fdm fs B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
141 fm fm fdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
142 fm fs fdm B
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
143 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
144 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
145 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
146 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
147 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
148 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
149 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
150 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
151 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
152 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
153 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
154 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
155 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
156 i64nda s i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
157 i64nda i64nda s CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
158 ui64nda s ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
159 ui64nda ui64nda s CL NONE NONE boolMatrix.h boolNDArray.h
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
160 i8nda fs i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
161 i8nda i8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
162 ui8nda fs ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
163 ui8nda ui8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
164 i16nda fs i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
165 i16nda i16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
166 ui16nda fs ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
167 ui16nda ui16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
168 i32nda fs i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
169 i32nda i32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
170 ui32nda fs ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
171 ui32nda ui32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
172 i64nda fs i64nda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
173 i64nda i64nda fs CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
174 ui64nda fs ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
175 ui64nda ui64nda fs CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
176 #
7625
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
177 i8nda nda i8 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
178 i8nda i8 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
179 ui8nda nda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
180 ui8nda ui8 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
181 i16nda nda i16 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
182 i16nda i16 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
183 ui16nda nda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
184 ui16nda ui16 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
185 i32nda nda i32 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
186 i32nda i32 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
187 ui32nda nda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
188 ui32nda ui32 nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
189 i64nda nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
190 i64nda i64 nda CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
191 ui64nda nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
192 ui64nda ui64 nda CL NONE NONE boolMatrix.h boolNDArray.h
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
193 i8nda fnda i8 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
194 i8nda i8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
195 ui8nda fnda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
196 ui8nda ui8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
197 i16nda fnda i16 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
198 i16nda i16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
199 ui16nda fnda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
200 ui16nda ui16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
201 i32nda fnda i32 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
202 i32nda i32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
203 ui32nda fnda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
204 ui32nda ui32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
205 i64nda fnda i64 CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
206 i64nda i64 fnda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
207 ui64nda fnda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
208 ui64nda ui64 fnda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
209 #
7625
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
210 i8nda nda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
211 i8nda i8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
212 ui8nda nda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
213 ui8nda ui8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
214 i16nda nda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
215 i16nda i16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
216 ui16nda nda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
217 ui16nda ui16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
218 i32nda nda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
219 i32nda i32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
220 ui32nda nda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
221 ui32nda ui32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
222 i64nda nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
223 i64nda i64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
224 ui6nda nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
43e3efb2cbc2 Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents: 7019
diff changeset
225 ui64nda ui64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
226 i8nda fnda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
227 i8nda i8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
228 ui8nda fnda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
229 ui8nda ui8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
230 i16nda fnda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
231 i16nda i16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
232 ui16nda fnda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
233 ui16nda ui16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
234 i32nda fnda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
235 i32nda i32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
236 ui32nda fnda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
237 ui32nda ui32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
238 i64nda fnda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
239 i64nda i64nda fnda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
240 ui6nda fnda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7625
diff changeset
241 ui64nda ui64nda fnda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
242 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
243 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
244 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
245 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
246 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
247 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
248 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
249 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
250 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
251 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
252 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
253 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
254 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
255 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
256 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
257 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
258 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
259 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
260 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
261 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
262 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
263 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
264 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
265 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
266 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
267 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
268 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
269 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
270 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
271 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
272 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
273 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
274 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
275 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
276 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
277 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
278 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
279 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
280 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
281 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
282 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
283 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
284 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
285 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
286 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
287 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
288 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
289 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
290 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
291 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
292 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
293 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
294 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
295 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
296 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
297 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
298 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
299 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
300 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
301 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
302 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
303 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
304 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
305 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
306 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
307 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
308 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
309 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
310 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
311 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
312 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
313 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
314 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
315 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
316 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
317 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
318 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
319 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
320 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
321 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
322 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
323 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
324 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
325 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
326 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
327 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
328 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
329 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
330 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
331 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
332 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
333 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
334 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
335 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
336 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
337 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
338 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
339 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
340 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
341 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
342 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
343 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
344 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
345 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
346 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
347 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
348 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
349 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
350 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
351 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
352 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
353 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
354 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
355 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
356 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
357 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
358 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
359 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
360 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
361 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
362 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
363 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
364 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
365 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
366 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
367 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
368 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
369 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
370 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
371 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
372 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
373 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
374 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
375 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
376 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
377 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
378 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
379 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
380 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
381 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
382 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
383 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
384 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
385 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
386 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
387 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
388 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
389 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
390 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
391 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
392 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
393 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
394 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
395 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
396 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
397 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
398 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
399 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
400 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
401 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
402 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
403 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
404 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
405 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
406 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
407 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
408 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
409 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
410 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
411 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
412 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
413 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
414 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
415 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
416 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
417 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
418 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
419 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
420 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
421 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
422 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
423 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
424 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
425 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
426 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
427 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
428 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
429 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
430 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
431 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
432 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
433 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h