This file is indexed.

/usr/include/relion-1.4/src/memory.h is in librelion-dev-common 1.4+dfsg-3ubuntu1.

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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/***************************************************************************
 *
 * Author: "Sjors H.W. Scheres"
 * MRC Laboratory of Molecular Biology
 *
 * This program 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 of the License, or
 * (at your option) any later version.
 *
 * This program 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.
 *
 * This complete copyright notice must be included in any revised version of the
 * source code. Additional authorship citations may be added, but existing
 * author citations must be preserved.
 ***************************************************************************/
/***************************************************************************
 *
 * Authors:     Carlos Oscar S. Sorzano (coss@cnb.csic.es)
 *
 * Unidad de  Bioinformatica of Centro Nacional de Biotecnologia , CSIC
 *
 * This program 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 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307  USA
 *
 *  All comments concerning this program package may be sent to the
 *  e-mail address 'xmipp@cnb.csic.es'
 ***************************************************************************/

#ifndef _XMIPP_MEMORY
#define _XMIPP_MEMORY

#include "src/error.h"

/* Memory managing --------------------------------------------------------- */
///@defgroup MemoryManaging Memory management for numerical recipes
/// @ingroup DataLibrary
//@{
/** Ask memory for any type vector.
    The valid values range from v[nl] to v[nh]. If no memory is available
    an exception is thrown. NULL is returned if nh is not greater than nl*/
template <class T> void ask_Tvector(T* &v, int nl, int nh)
{
    if (nh - nl + 1 > 1)
    {
        v = (T *)malloc((unsigned)(nh - nl + 1) * sizeof(T));
        if (!v) REPORT_ERROR("allocation failure in vector()");
        v -= nl;
    }
    else v = NULL;
}

/** Free memory associated to any type vector.
    After freeing v=NULL*/
template <class T> void free_Tvector(T* &v, int nl, int nh)
{
    if (v != NULL)
    {
        free((char*)(v + nl));
        v = NULL;
    }
}

/** Ask memory for any type matrix.
    The valid values range from v[nrl][ncl] to v[nrh][nch].
    If no memory is available an exception is thrown. NULL is returned if any
    nh is not greater than its nl*/
template <class T> void ask_Tmatrix(T ** &m, int nrl, int nrh,
                                    int ncl, int nch)
{
    if (nrh - nrl + 1 > 1 && nch - ncl + 1 > 1)
    {
        m = (T **) malloc((unsigned)(nrh - nrl + 1) * sizeof(T*));
        if (!m) REPORT_ERROR( "allocation failure 1 in matrix()");
        m -= nrl;

        for (int i = nrl;i <= nrh;i++)
        {
            m[i] = (T *) malloc((unsigned)(nch - ncl + 1) * sizeof(T));
            if (!m[i]) REPORT_ERROR( "allocation failure 2 in matrix()");
            m[i] -= ncl;
        }
    }
    else m = NULL;
}

/** Free memory associated to any type matrix.
    After freeing v=NULL*/
template <class T> void free_Tmatrix(T ** &m, int nrl, int nrh,
                                     int ncl, int nch)
{
    if (m != NULL)
    {
        for (int i = nrh;i >= nrl;i--) free((char*)(m[i] + ncl));
        free((char*)(m + nrl));
        m = NULL;
    }
}

/** Ask memory for any type voliume.
    The valid values range from v[nsl][nrl][ncl] to v[nsh][nrh][nch].
    If no memory is available an exception is thrown. NULL is returned if any
    nh is not greater than its nl. */
template <class T> void ask_Tvolume(T *** &m, int nsl, int nsh, int nrl,
                                    int nrh, int ncl, int nch)
{
    if (nsh - nsl + 1 > 1 && nrh - nrl + 1 > 1 && nch - ncl + 1 > 1)
    {
        m = (T ***) malloc((unsigned)(nsh - nsl + 1) * sizeof(T**));
        if (!m) REPORT_ERROR( "allocation failure 1 in matrix()");
        m -= nsl;

        for (int k = nsl;k <= nsh;k++)
        {
            m[k] = (T **) malloc((unsigned)(nrh - nrl + 1) * sizeof(T*));
            if (!m[k]) REPORT_ERROR( "allocation failure 2 in matrix()");
            m[k] -= nrl;

            for (int i = nrl;i <= nrh;i++)
            {
                m[k][i] = (T *) malloc((unsigned)(nch - ncl + 1) * sizeof(T));
                if (!m[k][i]) REPORT_ERROR( "allocation failure 2 in matrix()");
                m[k][i] -= ncl;
            }
        }
    }
    else m = NULL;
}

/** Free memory associated to any type volume.
    After freeing v=NULL*/
template <class T> void free_Tvolume(T *** &m, int nsl, int nsh,
                                     int nrl, int nrh, int ncl, int nch)
{
    if (m != NULL)
    {
        for (int k = nsh;k >= nsl;k--)
        {
            for (int i = nrh;i >= nrl;i--) free((char*)(m[k][i] + ncl));
            free((char*)(m[k] + nrl));
        }
        free((char*)(m + nsl));
        m = NULL;
    }
}
/** Allocates memory.
 * Adapted from Bsofts bfree
 *
 * It is called exactly like malloc, with the following enhancements:
 *
 * - If allocation of zero bytes are requested it notifies the user.
 * - NO LONGER TRUE: Successfully allocated memory is zeroed
 * - Allocation is attempted and an error message is printed on failure.
 * - All failures return a NULL pointer to allow error handling from
 *    calling functions.
 *
 * returns char* : a pointer to the memory (NULL on failure)
 */
char* askMemory(unsigned long size);

/** Frees allocated memory.
 * Adapted from Bsofts bfree
 *
 * It is called exactly like free, with the following enhancements:
 *  - If freeing fails an error message is printed.
 *  - the pointer is reset to NULL
 *
 * returns int: 0 = success, -1 = failure.
*/
int freeMemory(void* ptr, unsigned long memsize);

//@}
#endif