This file is indexed.

/usr/include/cppad/local/user_state.hpp is in cppad 2017.00.00.4-3.

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
// $Id$
# ifndef CPPAD_LOCAL_USER_STATE_HPP
# define CPPAD_LOCAL_USER_STATE_HPP
/* --------------------------------------------------------------------------
CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-16 Bradley M. Bell

CppAD is distributed under multiple licenses. This distribution is under
the terms of the
                    GNU General Public License Version 3.

A copy of this license is included in the COPYING file of this distribution.
Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
-------------------------------------------------------------------------- */

namespace CppAD { namespace local { // BEGIN_CPPAD_LOCAL_NAMESPACE

enum enum_user_state {
	/// next UserOp marks beginning of a user atomic call
	start_user,

	/// next UsrapOp (UsravOp) is a parameter (variable) argument
	arg_user,

	/// next UsrrpOp (UsrrvOp) is a parameter (variable) result
	ret_user,

	/// next UserOp marks end of a user atomic call
	end_user
};

} } // END_CPPAD_LOCAL_NAMESPACE
# endif