This file is indexed.

/usr/include/opencascade/math_SingleTab.lxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.

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
#include <Standard_OutOfRange.hxx>
#include <math_Memory.hxx>

inline Item& math_SingleTab::Value(const Standard_Integer Index) const
{
  return ((Item*)Addr)[Index];
}


inline void math_SingleTab::Copy(math_SingleTab& Other) const
{
  memmove((void*) (((Item*)Other.Addr) + Other.First),
	  (const void*) (((Item*)Addr) + First),
	  (size_t)(Last - First + 1) * sizeof(Item));
}