revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / gallium / auxiliary / util / u_memory.h
blob53d56599fe4a5ae6e8001257880e108843431a27
1 /**************************************************************************
2 *
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
30 * Memory functions
34 #ifndef U_MEMORY_H
35 #define U_MEMORY_H
38 #include "util/u_pointer.h"
39 #include "util/u_debug.h"
40 #include "os/os_memory.h"
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
48 #define MALLOC(_size) os_malloc(_size)
50 #define CALLOC(_count, _size) os_calloc(_count, _size)
52 #define FREE(_ptr ) os_free(_ptr)
54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size)
56 #define MALLOC_STRUCT(T) (struct T *) MALLOC(sizeof(struct T))
58 #define CALLOC_STRUCT(T) (struct T *) CALLOC(1, sizeof(struct T))
60 #define CALLOC_VARIANT_LENGTH_STRUCT(T,more_size) ((struct T *) CALLOC(1, sizeof(struct T) + more_size))
63 #define align_malloc(_size, _alignment) os_malloc_aligned(_size, _alignment)
64 #define align_free(_ptr) os_free_aligned(_ptr)
67 /**
68 * Duplicate a block of memory.
70 static INLINE void *
71 mem_dup(const void *src, uint size)
73 void *dup = MALLOC(size);
74 if (dup)
75 memcpy(dup, src, size);
76 return dup;
80 /**
81 * Number of elements in an array.
83 #ifndef Elements
84 #define Elements(x) (sizeof(x)/sizeof((x)[0]))
85 #endif
88 /**
89 * Offset of a field in a struct, in bytes.
91 #define Offset(TYPE, MEMBER) ((uintptr_t)&(((TYPE *)NULL)->MEMBER))
95 #ifdef __cplusplus
97 #endif
100 #endif /* U_MEMORY_H */