This file is indexed.

/usr/include/trilinos/StrLoopLimits.h is in libtrilinos-dev 10.4.0.dfsg-1ubuntu2.

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
// $Id$

#ifndef STRLOOPLIMITS_H
#define STRLOOPLIMITS_H

// LoopLimits
namespace PAMGEN_NEVADA {
struct LoopLimits {
  long long is;  // Start of i-loop
  long long ie;  // End   of i-loop
  long long il;  // Last i-iterate for WorkSet's
  long long js;
  long long je;
  long long jl;
  long long ks;
  long long ke;
  long long kl;
  long long jstride;  // j-stride size
  long long kstride;  // k-stride size for the array
  long long total;   // Total array count for strip-mining

  LoopLimits():
  is(0),
  ie(0),
  il(0),
  js(0),
  je(0),
  jl(0),
  ks(0),
  ke(0),
  kl(0),
  jstride(0),
  kstride(0),
  total(0)
  {}

};
} // end namespace PAMGEN_NEVADA 

#endif // end of STRLOOPLIMITS_H