This file is indexed.

/usr/include/vl/imopv_sse2.h is in libvlfeat-dev 0.9.20+dfsg0-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
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
/** @file imopv_sse2.h
 ** @brief Vectorized image operations - SSE2
 ** @author Andrea Vedaldi
 **/

/*
Copyright (C) 2007-12 Andrea Vedaldi and Brian Fulkerson.
All rights reserved.

This file is part of the VLFeat library and is made available under
the terms of the BSD license (see the COPYING file).
*/

#ifndef VL_IMOPV_SSE2_H
#define VL_IMOPV_SSE2_H

#include "generic.h"

#ifndef VL_DISABLE_SSE2

VL_EXPORT
void _vl_imconvcol_vf_sse2 (float* dst, vl_size dst_stride,
                            float const* src,
                            vl_size src_width, vl_size src_height, vl_size src_stride,
                            float const* filt, vl_index filt_begin, vl_index filt_end,
                            int step, unsigned int flags) ;

VL_EXPORT
void _vl_imconvcol_vd_sse2 (double* dst, vl_size dst_stride,
                            double const* src,
                            vl_size src_width, vl_size src_height, vl_size src_stride,
                            double const* filt, vl_index filt_begin, vl_index filt_end,
                            int step, unsigned int flags) ;

/*
VL_EXPORT
void _vl_imconvcoltri_vf_sse2 (float* dst, int dst_stride,
                               float const* src,
                               int src_width, int src_height, int src_stride,
                               int filt_size,
                               int step, unsigned int flags) ;

VL_EXPORT
void _vl_imconvcoltri_vd_sse2 (double* dst, int dst_stride,
                               double const* src,
                               int src_width, int src_height, int src_stride,
                               int filt_size,
                               int step, unsigned int flags) ;
*/

#endif

/* VL_IMOPV_SSE2_H */
#endif