This file is indexed.

/usr/include/NTL/vec_lzz_pE.h is in libntl-dev 9.9.1-3.

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

#include <NTL/lzz_pE.h>

NTL_OPEN_NNS


typedef Vec<zz_pE> vec_zz_pE;

void mul(vec_zz_pE& x, const vec_zz_pE& a, const zz_pE& b);
inline void mul(vec_zz_pE& x, const zz_pE& a, const vec_zz_pE& b)
   { mul(x, b, a); }

void mul(vec_zz_pE& x, const vec_zz_pE& a, const zz_p& b);
inline void mul(vec_zz_pE& x, const zz_p& a, const vec_zz_pE& b)
   { mul(x, b, a); }

void mul(vec_zz_pE& x, const vec_zz_pE& a, long b);
inline void mul(vec_zz_pE& x, long a, const vec_zz_pE& b)
   { mul(x, b, a); }

void add(vec_zz_pE& x, const vec_zz_pE& a, const vec_zz_pE& b);
void sub(vec_zz_pE& x, const vec_zz_pE& a, const vec_zz_pE& b);

void negate(vec_zz_pE& x, const vec_zz_pE& a);

void clear(vec_zz_pE& x);


void InnerProduct(zz_pE& x, const vec_zz_pE& a, const vec_zz_pE& b);
void InnerProduct(zz_pE& x, const vec_zz_pE& a, const vec_zz_pE& b,
                  long offset);


long IsZero(const vec_zz_pE& a);

void VectorCopy(vec_zz_pE& x, const vec_zz_pE& a, long n);
inline vec_zz_pE VectorCopy(const vec_zz_pE& a, long n)
   { vec_zz_pE x; VectorCopy(x, a, n); NTL_OPT_RETURN(vec_zz_pE, x); }



vec_zz_pE operator+(const vec_zz_pE& a, const vec_zz_pE& b);
vec_zz_pE operator-(const vec_zz_pE& a, const vec_zz_pE& b);
vec_zz_pE operator-(const vec_zz_pE& a);

inline vec_zz_pE operator*(const vec_zz_pE& a, const zz_pE& b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }

inline vec_zz_pE operator*(const vec_zz_pE& a, const zz_p& b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }

inline vec_zz_pE operator*(const vec_zz_pE& a, long b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }

inline vec_zz_pE operator*(const zz_pE& a, const vec_zz_pE& b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }

inline vec_zz_pE operator*(const zz_p& a, const vec_zz_pE& b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }

inline vec_zz_pE operator*(long a, const vec_zz_pE& b)
   { vec_zz_pE x; mul(x, a, b); NTL_OPT_RETURN(vec_zz_pE, x); }



zz_pE operator*(const vec_zz_pE& a, const vec_zz_pE& b);



// assignment operator notation:

inline vec_zz_pE& operator+=(vec_zz_pE& x, const vec_zz_pE& a)
{ 
   add(x, x, a);
   return x;
}

inline vec_zz_pE& operator-=(vec_zz_pE& x, const vec_zz_pE& a)
{ 
   sub(x, x, a);
   return x;
}

inline vec_zz_pE& operator*=(vec_zz_pE& x, const zz_pE& a)
{ 
   mul(x, x, a);
   return x;
}

inline vec_zz_pE& operator*=(vec_zz_pE& x, const zz_p& a)
{ 
   mul(x, x, a);
   return x;
}

inline vec_zz_pE& operator*=(vec_zz_pE& x, long a)
{ 
   mul(x, x, a);
   return x;
}

NTL_CLOSE_NNS

#endif