This file is indexed.

/usr/lib/ats-anairiats-0.2.11/libats/SATS/linbitvec.sats is in ats-lang-anairiats 0.2.11-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
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
(***********************************************************************)
(*                                                                     *)
(*                         Applied Type System                         *)
(*                                                                     *)
(*                              Hongwei Xi                             *)
(*                                                                     *)
(***********************************************************************)

(*
** ATS - Unleashing the Potential of Types!
** Copyright (C) 2002-2010 Hongwei Xi, Boston University
** All rights reserved
**
** ATS is free software;  you can  redistribute it and/or modify it under
** the  terms of the  GNU General Public License as published by the Free
** Software Foundation; either version 2.1, or (at your option) any later
** version.
** 
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without  even  the  implied  warranty  of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE.  See the  GNU General Public License
** for more details.
** 
** You  should  have  received  a  copy of the GNU General Public License
** along  with  ATS;  see  the  file  COPYING.  If not, write to the Free
** Software Foundation, 51  Franklin  Street,  Fifth  Floor,  Boston,  MA
** 02110-1301, USA.
*)

(* ****** ****** *)

%{#
#include "libats/CATS/linbitvec.cats"
%} // end of [%{#]

(* ****** ****** *)

#define ATS_STALOADFLAG 0 // no dynamic loading

(* ****** ****** *)

abst@ype BITVEC (n:int) // an abstract type of unspecified size 

(* ****** ****** *)

typedef bit = [i:two] int (i) // i = 0 or 1

(* ****** ****** *)

fun bitvec_make {n:nat}
  (n: size_t n):<> [l:addr] (free_gc_v l, BITVEC (n) @ l | ptr l)
  = "atslib_linbitvec_bitvec_make"
// end of [bitvec_make]

fun bitvec_make_nil {n:nat}
  (n: size_t n):<> [l:addr] (free_gc_v l, BITVEC (n) @ l | ptr l)
  = "atslib_linbitvec_bitvec_make_nil"
// end of [bitvec_make_nil]

fun bitvec_make_all {n:nat}
  (n: size_t n):<> [l:addr] (free_gc_v l, BITVEC (n) @ l | ptr l)
  = "atslib_linbitvec_bitvec_make_all"
// end of [bitvec_make_all]

fun bitvec_free {n:nat} {l:addr}
  (pf_gc: free_gc_v l, pf_vec: BITVEC (n) @ l | p: ptr l):<> void  
  = "atslib_linbitvec_bitvec_free"
// end of [bitvec_free]

(* ****** ****** *)

fun bitvec_get_at {n,i:nat | i < n}
  (vec: &BITVEC n, i: size_t i):<> bit = "atslib_linbitvec_bitvec_get_at"
// end of [bitvec_get_at]

fun bitvec_set_at {n,i:nat | i < n}
  (vec: &BITVEC n, i: size_t i, b: bit):<> void = "atslib_linbitvec_bitvec_set_at"
// end of [bitvec_set_at]

overload [] with bitvec_get_at
overload [] with bitvec_set_at

(* ****** ****** *)

fun bitvec_is_nil {n:nat}
  (vec: &BITVEC n, n: size_t n): bool = "atslib_linbitvec_bitvec_is_nil"
// end of [bitvec_is_nil]

fun bitvec_isnot_nil {n:nat} (vec: &BITVEC n, n: size_t n): bool

(* ****** ****** *)

fun bitvec_is_all {n:nat}
  (vec: &BITVEC n, n: size_t n): bool = "atslib_linbitvec_bitvec_is_all"
// end of [linbitvec_bitvec_is_all]

fun bitvec_isnot_all {n:nat} (vec: &BITVEC n, n: size_t n): bool

(* ****** ****** *)

// vec1 = vec2 ?
fun bitvec_equal {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n):<> bool
  = "atslib_linbitvec_bitvec_equal"
// end of [bitvec_equal]

fun bitvec_notequal {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n):<> bool

(* ****** ****** *)

// vec1 <- vec2
fun bitvec_copy {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n):<> void
  = "atslib_linbitvec_bitvec_copy"
// end of [bitvec_copy]

(* ****** ****** *)

// complement operation
fun bitvec_neg {n:nat}
  (vec: &BITVEC n, n: size_t n): void
  = "atslib_linbitvec_bitvec_neg"
// end of [bitvec_neg]

fun bitvec_or {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n): void
  = "atslib_linbitvec_bitvec_or"
// end of [bitvec_or]

fun bitvec_and {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n): void
  = "atslib_linbitvec_bitvec_and"
// end of [bitvec_and]

fun bitvec_xor {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n): void
  = "atslib_linbitvec_bitvec_xor"
// end of [bitvec_xor]

fun bitvec_diff {n:nat}
  (vec1: &BITVEC n, vec2: &BITVEC n, n: size_t n): void
  = "atslib_linbitvec_bitvec_diff"
// end of [bitvec_diff]

(* ****** ****** *)

(* end of [linbitvec.sats] *)