annotate liboctave/mx-ops @ 5210:996a08a3eb06 ss-2-9-0

[project @ 2005-03-15 20:46:03 by jwe]
author jwe
date Tue, 15 Mar 2005 20:46:03 +0000
parents 160365410ad4
children fabb1be5fd84
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
1 # types
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
2 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
3 # key typename object-type header fwd-decl-ok scalar-zero
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
4 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
5 # object-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
6 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
7 # S: scalar
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
8 # M: matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
9 # DM: diagonal matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
10 # ND: N-d array
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
11 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
12 x NONE NONE NONE NO 0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
13 b bool S NONE NO false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
14 bm boolMatrix ND boolMatrix.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
15 bnda boolNDArray ND boolNDArray.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
16 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
17 cm ComplexMatrix M CMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
18 cnda ComplexNDArray ND CNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
19 cs Complex S oct-cmplx.h NO 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
20 dm DiagMatrix DM dDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
21 m Matrix M dMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
22 nda NDArray ND dNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
23 s double S NONE NO 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
24 i8 octave_int8 S oct-inttypes.h YES octave_int8(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
25 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
26 i16 octave_int16 S oct-inttypes.h YES octave_int16(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
27 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
28 i32 octave_int32 S oct-inttypes.h YES octave_int32(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
29 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
30 i64 octave_int64 S oct-inttypes.h YES octave_int64(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
31 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
32 i8nda int8NDArray ND int8NDArray.h YES octave_int8(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
33 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
34 i16nda int16NDArray ND int16NDArray.h YES octave_int16(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
35 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
36 i32nda int32NDArray ND int32NDArray.h YES octave_int32(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
37 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
38 i64nda int64NDArray ND int64NDArray.h YES octave_int64(0)
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
39 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64(0)
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
40 # ops
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
41 # 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
42 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
43 # op-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
44 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
45 # B: binary ops, + - * /
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
46 # C: comparison ops, < <= == != >= >
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
47 # L: logical ops, & |
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
48 #
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
49 cdm cdm dm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
50 cdm dm cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
51 cm cs cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
52 cm cs dm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
53 cm cs m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
54 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
55 cm cdm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
56 cm cdm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
57 cm cdm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
58 cm cdm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
59 cm cm cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
60 cm cm dm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
61 cm cm m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
62 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
63 cm cm s BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
64 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
65 cm dm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
66 cm dm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
67 cm m cs BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
68 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
69 cm m cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
70 cm m cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
71 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
72 cm s cdm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
73 cm s cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
74 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
75 m dm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
76 m dm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
77 m m dm B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
78 m s dm B
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
79 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
80 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
81 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
82 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
83 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
84 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
85 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
86 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
87 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
88 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
89 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
90 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
91 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
92 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
93 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
94 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
95 ui64nda ui64nda s CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
96 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
97 x nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
98 x i8 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
99 x nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
100 x ui8 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
101 x nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
102 x i16 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
103 x nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
104 x ui16 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
105 x nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
106 x i32 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
107 x nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
108 x ui32 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
109 x nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
110 x i64 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
111 x nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
112 x ui64 nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
113 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
114 x nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
115 x i8nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
116 x nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
117 x ui8nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
118 x nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
119 x i16nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
120 x nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
121 x ui16nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
122 x nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
123 x i32nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
124 x nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
125 x ui32nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
126 x nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
127 x i64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
128 x nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
129 x ui64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
130 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
131 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
132 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
133 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
134 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
135 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
136 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
137 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
138 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
139 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
140 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
141 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
142 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
143 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
144 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
145 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
146 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
147 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
148 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
149 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
150 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
151 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
152 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
153 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
154 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
155 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
156 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
157 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
158 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
159 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
160 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
161 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
162 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
163 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
164 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
165 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
166 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
167 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
168 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
169 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
170 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
171 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
172 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
173 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
174 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
175 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
176 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
177 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
178 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
179 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
180 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
181 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
182 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
183 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
184 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
185 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
186 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
187 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
188 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
189 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
190 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
191 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
192 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
193 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
194 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
195 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
196 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
197 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
198 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
199 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
200 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
201 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
202 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
203 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
204 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
205 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
206 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
207 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
208 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
209 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
210 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
211 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
212 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
213 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
214 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
215 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
216 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
217 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
218 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
219 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
220 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
221 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
222 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
223 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
224 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
225 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
226 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
227 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
228 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
229 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
230 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
231 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
232 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
233 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
234 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
235 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
236 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
237 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
238 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
239 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
240 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
241 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
242 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
243 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
244 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
245 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
246 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
247 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
248 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
249 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
250 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
251 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
252 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
253 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
254 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
255 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
256 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
257 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
258 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
259 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
260 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
261 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
262 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
263 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
264 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
265 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
266 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
267 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
268 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
269 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
270 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
271 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
272 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
273 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
274 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
275 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
276 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
277 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
278 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
279 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
280 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
281 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
282 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
283 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
284 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
285 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
286 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
287 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
288 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
289 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
290 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
291 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
292 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
293 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
294 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
295 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
296 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
297 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
298 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
299 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
300 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
301 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
302 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
303 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
304 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
305 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
306 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
307 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
308 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
309 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
310 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
311 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
312 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
313 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
314 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
315 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
316 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
317 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
318 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
319 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
320 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
321 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h