This file is indexed.

/usr/include/blasr/tuples/TupleMask.h is in libblasr-dev 0~20151014+gitbe5d1bf-2.

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

#include <stdint.h>
//
// Each f is conveniently 2 bases.
//
//                     
static uint64_t TupleMask[] = {0, 0xf, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff,  // 0 - 6
                                  0xfffffff, 0xfffffff, 0xffffffff, 0xfffffffff,   // 7 - 9
                                  0xffffffffff, 0xfffffffffff, 0xffffffffffff,     // 10-12
                                  0xfffffffffffff, 0xffffffffffffff, 0xfffffffffffffff, // 13-15
                                  0xffffffffffffffff}; // 16

#endif