This file is indexed.

/usr/include/atlas/atlas_cr1.h is in libatlas-dev 3.8.4-3build1.

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
#ifndef ATLAS_CR1_H
#define ATLAS_CR1_H

#define ATL_L1r1elts 1904
#define ATL_r1MU 2
#define ATL_r1NU 1

#define ATL_GetPartR1(A_, lda_, mb_, nb_) \
{ \
   (mb_) = (ATL_L1r1elts - (ATL_r1NU+ATL_r1NU)) / (ATL_r1NU+ATL_r1NU+1); \
   if ((mb_) > ATL_r1MU) (mb_) = ATL_r1MU*((mb_)/ATL_r1MU); \
   else (mb_) = ATL_r1MU; \
   (nb_) = ATL_r1NU; \
}

#endif