This file is indexed.

/usr/include/dieharder/rgb_bitdist.h is in libdieharder-dev 3.31.1-4.

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
/*
 * rgb_bitdist test header.
 */

/*
 * function prototype
 */
int rgb_bitdist(Test **test,int irun);

static Dtest rgb_bitdist_dtest __attribute__((unused)) = {
  "RGB Bit Distribution Test",
  "rgb_bitdist",
  "\n\
#========================================================================\n\
#                 RGB Bit Distribution Test\n\
# Accumulates the frequencies of all n-tuples of bits in a list\n\
# of random integers and compares the distribution thus generated\n\
# with the theoretical (binomial) histogram, forming chisq and the\n\
# associated p-value.  In this test n-tuples are selected without\n\
# WITHOUT overlap (e.g. 01|10|10|01|11|00|01|10) so the samples\n\
# are independent.  Every other sample is offset modulus of the\n\
# sample index and ntuple_max.\n\
#\n\
# This test must be run with -n ntuple for ntuple > 0.  Note that if\n\
# ntuple > 12, one should probably increase tsamples so that each of the\n\
# 2^ntuple bins should end up with an average of around 30 occurrences.\n\
# Note also that the memory requirements and CPU time requirements will\n\
# get quite large by e.g. ntuple = 20 -- use caution when sampling the\n\
# distribution of very large ntuples.\n\
#\n",
  100,     /* Default psamples */
  100000,  /* Default tsamples */
  1,       /* We magically make all the bit tests return a single histogram */
  rgb_bitdist,
  0
};