This file is indexed.

/usr/share/doc/libbotan1.10-dev/examples/cpuid.cpp is in libbotan1.10-dev 1.10.16-1.

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
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#include <iostream>
#include <string>
#include <botan/cpuid.h>

using namespace Botan;

namespace {

void print_if_feature(const std::string& feature_name, bool exists)
   {
   std::cout << (exists ? '+' : '-') << " " << feature_name << "\n";
   }

void print_header(const std::string& descr)
   {
   std::cout << "\n" << descr << "\n-----\n";
   }

}

int main()
   {
   CPUID::initialize();

   std::cout << "Cache line size = " << CPUID::cache_line_size() << "\n";

   print_header("SIMD instruction sets");
   print_if_feature("SSE2", CPUID::has_sse2());
   print_if_feature("SSSE3", CPUID::has_ssse3());
   print_if_feature("SSE4.1", CPUID::has_sse41());
   print_if_feature("SSE4.2", CPUID::has_sse42());
   print_if_feature("AVX", CPUID::has_avx());
   print_if_feature("AltiVec", CPUID::has_altivec());

   print_header("Other extensions");
   print_if_feature("RDTSC", CPUID::has_rdtsc());
   print_if_feature("PCMUL", CPUID::has_pcmuludq());
   print_if_feature("AES-NI", CPUID::has_aes_ni());
   print_if_feature("RDRND", CPUID::has_rdrand());
   print_if_feature("MOVBE", CPUID::has_movbe());
   }