This file is indexed.

/usr/include/bart/misc/mmio.h is in libbart-dev 0.4.02-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
/* Copyright 2013-2015. The Regents of the University of California.
 * All rights reserved. Use of this source code is governed by 
 * a BSD-style license which can be found in the LICENSE file.
 */

#include "misc/cppwrap.h"

// extern void* private_raw(size_t* size, const char* name);

extern _Complex float* shared_cfl(unsigned int D, const long dims[__VLA(D)], const char* name);
extern _Complex float* private_cfl(unsigned int D, const long dims[__VLA(D)], const char* name);
extern void unmap_cfl(unsigned int D, const long dims[__VLA(D)], const _Complex float* x);

extern _Complex float* anon_cfl(const char* name, unsigned int D, const long dims[__VLA(D)]);
extern _Complex float* create_cfl(const char* name, unsigned int D, const long dimensions[__VLA(D)]);
extern _Complex float* load_cfl(const char* name, unsigned int D, long dimensions[__VLA(D)]);
extern _Complex float* load_shared_cfl(const char* name, unsigned int D, long dimensions[__VLA(D)]);

extern float* create_coo(const char* name, unsigned int D, const long dimensions[__VLA(D)]);
extern float* load_coo(const char* name, unsigned int D, long dimensions[__VLA(D)]);
extern _Complex float* create_zcoo(const char* name, unsigned int D, const long dimensions[__VLA(D)]);
extern _Complex float* load_zcoo(const char* name, unsigned int D, long dimensions[__VLA(D)]);
extern _Complex float* create_zra(const char* name, unsigned int D, const long dims[__VLA(D)]);
extern _Complex float* load_zra(const char* name, unsigned int D, long dims[__VLA(D)]);

#include "misc/cppwrap.h"