This file is indexed.

/usr/include/armadillo_bits/typedef_mat_fixed.hpp is in libarmadillo-dev 1:4.200.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright (C) 2010 Conrad Sanderson
// Copyright (C) 2010 NICTA (www.nicta.com.au)
// 
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.


//! \addtogroup typedef_mat_fixed
//! @{



typedef umat::fixed<2,2> umat22;
typedef umat::fixed<3,3> umat33;
typedef umat::fixed<4,4> umat44;
typedef umat::fixed<5,5> umat55;
typedef umat::fixed<6,6> umat66;
typedef umat::fixed<7,7> umat77;
typedef umat::fixed<8,8> umat88;
typedef umat::fixed<9,9> umat99;

typedef imat::fixed<2,2> imat22;
typedef imat::fixed<3,3> imat33;
typedef imat::fixed<4,4> imat44;
typedef imat::fixed<5,5> imat55;
typedef imat::fixed<6,6> imat66;
typedef imat::fixed<7,7> imat77;
typedef imat::fixed<8,8> imat88;
typedef imat::fixed<9,9> imat99;

typedef fmat::fixed<2,2> fmat22;
typedef fmat::fixed<3,3> fmat33;
typedef fmat::fixed<4,4> fmat44;
typedef fmat::fixed<5,5> fmat55;
typedef fmat::fixed<6,6> fmat66;
typedef fmat::fixed<7,7> fmat77;
typedef fmat::fixed<8,8> fmat88;
typedef fmat::fixed<9,9> fmat99;

typedef mat::fixed<2,2> mat22;
typedef mat::fixed<3,3> mat33;
typedef mat::fixed<4,4> mat44;
typedef mat::fixed<5,5> mat55;
typedef mat::fixed<6,6> mat66;
typedef mat::fixed<7,7> mat77;
typedef mat::fixed<8,8> mat88;
typedef mat::fixed<9,9> mat99;

typedef cx_fmat::fixed<2,2> cx_fmat22;
typedef cx_fmat::fixed<3,3> cx_fmat33;
typedef cx_fmat::fixed<4,4> cx_fmat44;
typedef cx_fmat::fixed<5,5> cx_fmat55;
typedef cx_fmat::fixed<6,6> cx_fmat66;
typedef cx_fmat::fixed<7,7> cx_fmat77;
typedef cx_fmat::fixed<8,8> cx_fmat88;
typedef cx_fmat::fixed<9,9> cx_fmat99;

typedef cx_mat::fixed<2,2> cx_mat22;
typedef cx_mat::fixed<3,3> cx_mat33;
typedef cx_mat::fixed<4,4> cx_mat44;
typedef cx_mat::fixed<5,5> cx_mat55;
typedef cx_mat::fixed<6,6> cx_mat66;
typedef cx_mat::fixed<7,7> cx_mat77;
typedef cx_mat::fixed<8,8> cx_mat88;
typedef cx_mat::fixed<9,9> cx_mat99;


//


typedef uvec::fixed<2> uvec2;
typedef uvec::fixed<3> uvec3;
typedef uvec::fixed<4> uvec4;
typedef uvec::fixed<5> uvec5;
typedef uvec::fixed<6> uvec6;
typedef uvec::fixed<7> uvec7;
typedef uvec::fixed<8> uvec8;
typedef uvec::fixed<9> uvec9;

typedef ivec::fixed<2> ivec2;
typedef ivec::fixed<3> ivec3;
typedef ivec::fixed<4> ivec4;
typedef ivec::fixed<5> ivec5;
typedef ivec::fixed<6> ivec6;
typedef ivec::fixed<7> ivec7;
typedef ivec::fixed<8> ivec8;
typedef ivec::fixed<9> ivec9;

typedef fvec::fixed<2> fvec2;
typedef fvec::fixed<3> fvec3;
typedef fvec::fixed<4> fvec4;
typedef fvec::fixed<5> fvec5;
typedef fvec::fixed<6> fvec6;
typedef fvec::fixed<7> fvec7;
typedef fvec::fixed<8> fvec8;
typedef fvec::fixed<9> fvec9;

typedef vec::fixed<2> vec2;
typedef vec::fixed<3> vec3;
typedef vec::fixed<4> vec4;
typedef vec::fixed<5> vec5;
typedef vec::fixed<6> vec6;
typedef vec::fixed<7> vec7;
typedef vec::fixed<8> vec8;
typedef vec::fixed<9> vec9;

typedef cx_fvec::fixed<2> cx_fvec2;
typedef cx_fvec::fixed<3> cx_fvec3;
typedef cx_fvec::fixed<4> cx_fvec4;
typedef cx_fvec::fixed<5> cx_fvec5;
typedef cx_fvec::fixed<6> cx_fvec6;
typedef cx_fvec::fixed<7> cx_fvec7;
typedef cx_fvec::fixed<8> cx_fvec8;
typedef cx_fvec::fixed<9> cx_fvec9;

typedef cx_vec::fixed<2> cx_vec2;
typedef cx_vec::fixed<3> cx_vec3;
typedef cx_vec::fixed<4> cx_vec4;
typedef cx_vec::fixed<5> cx_vec5;
typedef cx_vec::fixed<6> cx_vec6;
typedef cx_vec::fixed<7> cx_vec7;
typedef cx_vec::fixed<8> cx_vec8;
typedef cx_vec::fixed<9> cx_vec9;


//


typedef ucolvec::fixed<2> ucolvec2;
typedef ucolvec::fixed<3> ucolvec3;
typedef ucolvec::fixed<4> ucolvec4;
typedef ucolvec::fixed<5> ucolvec5;
typedef ucolvec::fixed<6> ucolvec6;
typedef ucolvec::fixed<7> ucolvec7;
typedef ucolvec::fixed<8> ucolvec8;
typedef ucolvec::fixed<9> ucolvec9;

typedef icolvec::fixed<2> icolvec2;
typedef icolvec::fixed<3> icolvec3;
typedef icolvec::fixed<4> icolvec4;
typedef icolvec::fixed<5> icolvec5;
typedef icolvec::fixed<6> icolvec6;
typedef icolvec::fixed<7> icolvec7;
typedef icolvec::fixed<8> icolvec8;
typedef icolvec::fixed<9> icolvec9;

typedef fcolvec::fixed<2> fcolvec2;
typedef fcolvec::fixed<3> fcolvec3;
typedef fcolvec::fixed<4> fcolvec4;
typedef fcolvec::fixed<5> fcolvec5;
typedef fcolvec::fixed<6> fcolvec6;
typedef fcolvec::fixed<7> fcolvec7;
typedef fcolvec::fixed<8> fcolvec8;
typedef fcolvec::fixed<9> fcolvec9;

typedef colvec::fixed<2> colvec2;
typedef colvec::fixed<3> colvec3;
typedef colvec::fixed<4> colvec4;
typedef colvec::fixed<5> colvec5;
typedef colvec::fixed<6> colvec6;
typedef colvec::fixed<7> colvec7;
typedef colvec::fixed<8> colvec8;
typedef colvec::fixed<9> colvec9;

typedef cx_fcolvec::fixed<2> cx_fcolvec2;
typedef cx_fcolvec::fixed<3> cx_fcolvec3;
typedef cx_fcolvec::fixed<4> cx_fcolvec4;
typedef cx_fcolvec::fixed<5> cx_fcolvec5;
typedef cx_fcolvec::fixed<6> cx_fcolvec6;
typedef cx_fcolvec::fixed<7> cx_fcolvec7;
typedef cx_fcolvec::fixed<8> cx_fcolvec8;
typedef cx_fcolvec::fixed<9> cx_fcolvec9;

typedef cx_colvec::fixed<2> cx_colvec2;
typedef cx_colvec::fixed<3> cx_colvec3;
typedef cx_colvec::fixed<4> cx_colvec4;
typedef cx_colvec::fixed<5> cx_colvec5;
typedef cx_colvec::fixed<6> cx_colvec6;
typedef cx_colvec::fixed<7> cx_colvec7;
typedef cx_colvec::fixed<8> cx_colvec8;
typedef cx_colvec::fixed<9> cx_colvec9;


//


typedef urowvec::fixed<2> urowvec2;
typedef urowvec::fixed<3> urowvec3;
typedef urowvec::fixed<4> urowvec4;
typedef urowvec::fixed<5> urowvec5;
typedef urowvec::fixed<6> urowvec6;
typedef urowvec::fixed<7> urowvec7;
typedef urowvec::fixed<8> urowvec8;
typedef urowvec::fixed<9> urowvec9;

typedef irowvec::fixed<2> irowvec2;
typedef irowvec::fixed<3> irowvec3;
typedef irowvec::fixed<4> irowvec4;
typedef irowvec::fixed<5> irowvec5;
typedef irowvec::fixed<6> irowvec6;
typedef irowvec::fixed<7> irowvec7;
typedef irowvec::fixed<8> irowvec8;
typedef irowvec::fixed<9> irowvec9;

typedef frowvec::fixed<2> frowvec2;
typedef frowvec::fixed<3> frowvec3;
typedef frowvec::fixed<4> frowvec4;
typedef frowvec::fixed<5> frowvec5;
typedef frowvec::fixed<6> frowvec6;
typedef frowvec::fixed<7> frowvec7;
typedef frowvec::fixed<8> frowvec8;
typedef frowvec::fixed<9> frowvec9;

typedef rowvec::fixed<2> rowvec2;
typedef rowvec::fixed<3> rowvec3;
typedef rowvec::fixed<4> rowvec4;
typedef rowvec::fixed<5> rowvec5;
typedef rowvec::fixed<6> rowvec6;
typedef rowvec::fixed<7> rowvec7;
typedef rowvec::fixed<8> rowvec8;
typedef rowvec::fixed<9> rowvec9;

typedef cx_frowvec::fixed<2> cx_frowvec2;
typedef cx_frowvec::fixed<3> cx_frowvec3;
typedef cx_frowvec::fixed<4> cx_frowvec4;
typedef cx_frowvec::fixed<5> cx_frowvec5;
typedef cx_frowvec::fixed<6> cx_frowvec6;
typedef cx_frowvec::fixed<7> cx_frowvec7;
typedef cx_frowvec::fixed<8> cx_frowvec8;
typedef cx_frowvec::fixed<9> cx_frowvec9;

typedef cx_rowvec::fixed<2> cx_rowvec2;
typedef cx_rowvec::fixed<3> cx_rowvec3;
typedef cx_rowvec::fixed<4> cx_rowvec4;
typedef cx_rowvec::fixed<5> cx_rowvec5;
typedef cx_rowvec::fixed<6> cx_rowvec6;
typedef cx_rowvec::fixed<7> cx_rowvec7;
typedef cx_rowvec::fixed<8> cx_rowvec8;
typedef cx_rowvec::fixed<9> cx_rowvec9;



//! @}