This file is indexed.

/usr/share/octave/site/m/vlfeat/toolbox/xtest/vl_test_ihashsum.m is in octave-vlfeat 0.9.17+dfsg0-6build1.

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
function results = vl_test_ihashsum(varargin)
% VL_TEST_IHASHSUM
vl_test_init ;

function s = setup()
rand('state',0) ;
s.data = uint8(round(16*rand(2,100))) ;
sel = find(all(s.data==0)) ;
s.data(1,sel)=1 ;

function test_hash(s)
D = size(s.data,1) ;
K = 5 ;
h = zeros(1,K,'uint32') ;
id = zeros(D,K,'uint8');
next = zeros(1,K,'uint32') ;
[h,id,next] = vl_ihashsum(h,id,next,K,s.data) ;

sel = vl_ihashfind(id,next,K,s.data) ;
count = double(h(sel)) ;

[drop,i,j] = unique(s.data','rows') ;
for k=1:size(s.data,2)
  count_(k) = sum(j == j(k)) ;
end
vl_assert_equal(count,count_) ;