-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmemalloc.c
422 lines (362 loc) · 13.7 KB
/
memalloc.c
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*******************************************************************************
License:
This software was developed at the National Institute of Standards and
Technology (NIST) by employees of the Federal Government in the course
of their official duties. Pursuant to title 17 Section 105 of the
United States Code, this software is not subject to copyright protection
and is in the public domain. NIST assumes no responsibility whatsoever for
its use by other parties, and makes no guarantees, expressed or implied,
about its quality, reliability, or any other characteristic.
Disclaimer:
This software was developed to promote biometric standards and biometric
technology testing for the Federal Government in accordance with the USA
PATRIOT Act and the Enhanced Border Security and Visa Entry Reform Act.
Specific hardware and software products identified in this software were used
in order to perform the software development. In no case does such
identification imply recommendation or endorsement by the National Institute
of Standards and Technology, nor does it imply that the products and equipment
identified are necessarily the best available for the purpose.
*******************************************************************************/
/***********************************************************************
LIBRARY: UTIL - General Purpose Utility Routines
FILE: MEMALLOC.C
AUTHORS: Craig Watson
DATE: 08/22/1996
Contains general purpose routines for allocating/deallocating
memory units and buffers.
ROUTINES:
#cat: malloc_char_ret - allocates (malloc) a char of specified size n
#cat: returns on error.
#cat: malloc_uchar_ret - allocates (malloc) an unsigned char of specified size n
#cat: returns on error.
#cat: malloc_int_ret - allocates (malloc) an int of specified size n
#cat: returns on error.
#cat: calloc_int_ret - allocates (calloc) an int of specified size n
#cat: returns on error.
#cat: realloc_int_ret - reallocates an int to new size n. returns on error.
#cat:
#cat: datadup - mallocs new space and copies supplied data into it, see also
#cat: ../image/imageops.c imagedup
#cat: malloc_char - allocates (malloc) a char of specified size n
#cat:
#cat: malloc_uchar - allocates (malloc) an unsigned char of specified size n
#cat:
#cat: malloc_shrt - allocates (malloc) a short of specified size n
#cat:
#cat: malloc_int - allocates (malloc) an int of specified size n
#cat:
#cat: malloc_flt - allocates (malloc) a float of specified size n
#cat:
#cat: calloc_char - allocates (calloc) a char of specified size n
#cat:
#cat: calloc_uchar - allocates (calloc) an unsigned char of specified size n
#cat:
#cat: malloc_shrt - allocates (calloc) a short of specified size n
#cat:
#cat: calloc_int - allocates (calloc) an int of specified size n
#cat:
#cat: calloc_flt - allocates (calloc) a float of specified size n
#cat:
#cat: malloc_dbl_char_l1 - allocates (malloc) a set of char pointers of
#cat: specified number n
#cat: malloc_dbl_uchar_l1 - allocates (malloc) a set of unsigned char pointers
#cat: of specified number n
#cat: malloc_dbl_shrt_l1 - allocates (malloc) a set of short pointers of
#cat: specified number n
#cat: malloc_dbl_int_l1 - allocates (malloc) a set of int pointers of specified
#cat: number n
#cat: malloc_dbl_flt_l1 - allocates (malloc) a set of float pointers of
#cat: specified number n
#cat: realloc_char - reallocates a char to new size n
#cat:
#cat: realloc_uchar - reallocates an unsigned char to new size n
#cat:
#cat: realloc_shrt - reallocates a short to new size n
#cat:
#cat: realloc_int - reallocates an int to new size n
#cat:
#cat: realloc_flt - reallocates an float to new size n
#cat:
#cat: realloc_dbl_int_l1 - reallocates a set of int pointers to new number n
#cat:
#cat: realloc_dbl_char_l1 - reallocates a set of char pointers to a
#cat: new number n
#cat: realloc_dbl_uchar_l1 - reallocates a set of unsigned char pointers
#cat: to new number n
#cat: realloc_dbl_flt_l1 - reallocates a set of float pointers to new number n
#cat:
#cat: free_dbl_char - free a double char pointer
#cat:
#cat: free_dbl_uchar - free a double uchar pointer
#cat:
#cat: free_dbl_flt - free a double float pointer
#cat:
#cat: malloc_dbl_char - allocates (malloc) a set of char pointers
#cat: of specified number n
#cat: malloc_dbl_flt - allocates (malloc) a set of float pointers
#cat: of specified number n
***********************************************************************/
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include "memalloc.h"
#include "util.h"
/*******************************************************************/
int malloc_char_ret(char **ptr, const int n, char *s)
{
if(((*ptr) = (char *)malloc(n * sizeof(char))) == NULL) {
fprintf(stderr, "ERROR: malloc_char_ret: %s\n", s);
return(-2);
}
return(0);
}
/*******************************************************************/
int malloc_uchar_ret(unsigned char **ptr, const int n, char *s)
{
if(((*ptr) = (unsigned char *)malloc(n * sizeof(unsigned char))) == NULL) {
fprintf(stderr, "ERROR: malloc_uchar_ret: %s\n", s);
return(-2);
}
return(0);
}
/*******************************************************************/
int malloc_int_ret(int **ptr, const int n, char *s)
{
if(((*ptr) = (int *)malloc(n * sizeof(int))) == NULL) {
fprintf(stderr, "ERROR: malloc_int_ret: %s\n", s);
return(-2);
}
return(0);
}
/*******************************************************************/
int calloc_int_ret(int **ptr, const int n, char *s)
{
if(((*ptr) = (int *)calloc(n, sizeof(int))) == NULL) {
fprintf(stderr, "ERROR: calloc_int_ret: allocating memory\n");
return(-2);
}
return(0);
}
/*******************************************************************/
int realloc_int_ret(int **ptr, const int n, char *s)
{
if((*ptr = (int *)realloc(*ptr, n * sizeof(int))) == NULL) {
fprintf(stderr, "ERROR: realloc_int_ret: %s\n", s);
return(-2);
}
return(0);
}
/*******************************************************************/
void *datadup(void *p, int nbytes, char *s)
{
void *q;
if ( p == NULL )
return NULL;
if ((q = (void *)malloc(nbytes)) == NULL)
syserr("datadup", "malloc", s);
memcpy(q, p, nbytes);
return q;
}
/*******************************************************************/
void malloc_char(char **ptr, int n, char *s)
{
if(((*ptr) = (char *)malloc(n * sizeof(char))) == NULL)
syserr("malloc_char","malloc",s);
}
/*******************************************************************/
void malloc_uchar(unsigned char **ptr, int n, char *s)
{
if(((*ptr) = (unsigned char *)malloc(n * sizeof(unsigned char))) == NULL)
syserr("malloc_uchar","malloc",s);
}
/*******************************************************************/
void malloc_shrt(short **ptr, int n, char *s)
{
if(((*ptr) = (short *)malloc(n * sizeof(short))) == NULL)
syserr("malloc_shrt","malloc",s);
}
/*******************************************************************/
void malloc_int(int **ptr, int n, char *s)
{
if(((*ptr) = (int *)malloc(n * sizeof(int))) == NULL)
syserr("malloc_int","malloc",s);
}
/*******************************************************************/
void malloc_flt(float **ptr, int n, char *s)
{
if(((*ptr) = (float *)malloc(n * sizeof(float))) == NULL)
syserr("malloc_float","malloc",s);
}
/*******************************************************************/
void calloc_char(char **ptr, int n, char *s)
{
if(((*ptr) = (char *)calloc(n, sizeof(char))) == NULL)
syserr("calloc_char","calloc",s);
}
/*******************************************************************/
void calloc_uchar(unsigned char **ptr, int n, char *s)
{
if(((*ptr) = (unsigned char *)calloc(n, sizeof(unsigned char))) == NULL)
syserr("calloc_uchar","calloc",s);
}
/*******************************************************************/
void calloc_shrt(short **ptr, int n, char *s)
{
if(((*ptr) = (short *)calloc(n, sizeof(short))) == NULL)
syserr("calloc_shrt","calloc",s);
}
/*******************************************************************/
void calloc_int(int **ptr, int n, char *s)
{
if(((*ptr) = (int *)calloc(n, sizeof(int))) == NULL)
syserr("calloc_int","calloc",s);
}
/*******************************************************************/
void calloc_flt(float **ptr, int n, char *s)
{
if(((*ptr) = (float *)calloc(n, sizeof(float))) == NULL)
syserr("calloc_float","calloc",s);
}
/*******************************************************************/
void malloc_dbl_char_l1(char ***ptr, int ndbl, char *s)
{
if(((*ptr) = (char **)malloc(ndbl * sizeof(char *))) == NULL)
syserr("malloc_dbl_char_l1","malloc",s);
}
/*******************************************************************/
void malloc_dbl_uchar_l1(unsigned char ***ptr, int ndbl, char *s)
{
if(((*ptr) = (unsigned char **)malloc(ndbl * sizeof(unsigned char *))) == NULL)
syserr("malloc_dbl_uchar_l1","malloc",s);
}
/*******************************************************************/
void malloc_dbl_shrt_l1(short ***ptr, int ndbl, char *s)
{
if(((*ptr) = (short **)malloc(ndbl * sizeof(short *))) == NULL)
syserr("malloc_dbl_shrt_l1","malloc",s);
}
/*******************************************************************/
void malloc_dbl_int_l1(int ***ptr, int ndbl, char *s)
{
if(((*ptr) = (int **)malloc(ndbl * sizeof(int *))) == NULL)
syserr("malloc_dbl_int_l1","malloc",s);
}
/*******************************************************************/
void malloc_dbl_flt_l1(float ***ptr, int ndbl, char *s)
{
if(((*ptr) = (float **)malloc(ndbl * sizeof(float *))) == NULL)
syserr("malloc_dbl_flt_l1","malloc",s);
}
/*******************************************************************/
void realloc_char(char **ptr, int n, char *s)
{
if((*ptr = (char *)realloc(*ptr, n * sizeof(char))) == NULL)
syserr("realloc_char","realloc",s);
}
/*******************************************************************/
void realloc_uchar(unsigned char **ptr, int n, char *s)
{
if((*ptr = (unsigned char *)realloc(*ptr, n * sizeof(unsigned char))) == NULL)
syserr("realloc_uchar","realloc",s);
}
/*******************************************************************/
void realloc_shrt(short **ptr, int n, char *s)
{
if((*ptr = (short *)realloc(*ptr, n * sizeof(short))) == NULL)
syserr("realloc_shrt","realloc",s);
}
/*******************************************************************/
void realloc_int(int **ptr, int n, char *s)
{
if((*ptr = (int *)realloc(*ptr, n * sizeof(int))) == NULL)
syserr("realloc_int","realloc",s);
}
/*******************************************************************/
void realloc_flt(float **ptr, int n, char *s)
{
if((*ptr = (float *)realloc(*ptr, n * sizeof(float))) == NULL)
syserr("realloc_flt","realloc",s);
}
/*******************************************************************/
void realloc_dbl_int_l1(int ***ptr, int ndbl, char *s)
{
if((*ptr = (int **)realloc(*ptr, ndbl * sizeof(int *))) == NULL)
syserr("realloc_dbl_int_l1","realloc",s);
}
/*******************************************************************/
void realloc_dbl_char_l1(char ***ptr, int ndbl, char *s)
{
if((*ptr = (char **)realloc(*ptr, ndbl * sizeof(char *))) == NULL)
syserr("realloc_dbl_char_l1","realloc",s);
}
/*******************************************************************/
void realloc_dbl_uchar_l1(unsigned char ***ptr, int ndbl, char *s)
{
if((*ptr = (unsigned char **)realloc(*ptr, ndbl * sizeof(unsigned char *))) == NULL)
syserr("realloc_dbl_uchar_l1","realloc",s);
}
/*******************************************************************/
void realloc_dbl_flt_l1(float ***ptr, int ndbl, char *s)
{
if((*ptr = (float **)realloc(*ptr, ndbl * sizeof(float *))) == NULL)
syserr("realloc_dbl_flt_l1","realloc",s);
}
/*******************************************************************/
void free_dbl_char(char **ptr, const int n)
{
int i;
for(i = 0; i < n; i++)
free(ptr[i]);
free(ptr);
}
/*******************************************************************/
void free_dbl_uchar(unsigned char **ptr, const int n)
{
int i;
for(i = 0; i < n; i++)
free(ptr[i]);
free(ptr);
}
/*******************************************************************/
void free_dbl_flt(float **ptr, const int n)
{
int i;
for(i = 0; i < n; i++)
free(ptr[i]);
free(ptr);
}
/*******************************************************************/
void malloc_dbl_char(char ***ptr, const int ndbl, const int n, char *s)
{
int i;
char **p;
if((p = (char **)malloc(ndbl * sizeof(char *))) == NULL)
syserr("malloc_dbl_char","malloc",s);
for(i= 0; i < ndbl; i++)
malloc_char(&(p[i]), n, s);
*ptr = p;
}
/*******************************************************************/
void malloc_dbl_uchar(unsigned char ***ptr, const int ndbl, const int n,
char *s)
{
int i;
unsigned char **p;
if((p = (unsigned char **)malloc(ndbl * sizeof(unsigned char *))) == NULL)
syserr("malloc_dbl_uchar","malloc",s);
for(i= 0; i < ndbl; i++)
malloc_uchar(&(p[i]), n, s);
*ptr = p;
}
/*******************************************************************/
void malloc_dbl_flt(float ***ptr, const int ndbl, const int n, char *s)
{
int i;
float **p;
if((p = (float **)malloc(ndbl * sizeof(float *))) == NULL)
syserr("malloc_dbl_flt","malloc",s);
for(i= 0; i < ndbl; i++)
malloc_flt(&(p[i]), n, s);
*ptr = p;
}