Searched defs:free (Results 51 - 75 of 203) sorted by relevance

123456789

/external/srec/portable/include/
H A Dpmemory.h68 #define FREE(p) free(p)
77 #define PMemLogFree(p) (free(p), ESR_SUCCESS)
88 #define free #error macro
147 * Portable free()
152 * Portable free()
/external/valgrind/main/coregrind/
H A Dm_poolalloc.c11 This program is free software; you can redistribute it and/or
41 void (*free)(void*); /* pool allocator's free-er */ member in struct:_PoolAlloc
46 /* next free element. Is a pointer to an element in one of the
73 pa->free = free_fn;
85 pa->free (*(UWord **)VG_(indexXA) ( pa->pools, i ));
87 pa->free (pa);
H A Dpub_core_mallocfree.h13 This program is free software; you can redistribute it and/or
37 // PURPOSE: high-level memory allocation (malloc/free), for the core and
139 Bool free; // True if this is in the arena free zone. member in struct:_AddrArenaInfo
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3basetree.h133 void (*free) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3input.h121 * you set it manually as it will be free()d
135 void (*free) (struct ANTLR3_INPUT_STREAM_struct * input); member in struct:ANTLR3_INPUT_STREAM_struct
/external/chromium_org/base/allocator/
H A Dgeneric_allocators.cc6 // low-level functions malloc() and free(). This way, including a new
32 free(p);
40 free(p);
48 free(p);
56 free(p);
87 free(p);
114 #undef free macro
165 free(ptr);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDefaultAllocator.h91 static void free(void* address) function in class:WTF::DefaultAllocator
103 free(ptr); // Not the system free, the one from this class.
179 void operator delete(void* p) { Allocator::free(p); } \
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsystem.h164 * free ::
175 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/chromium_org/third_party/freetype/src/raster/
H A Dftmisc.h77 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
H A Dvpx_mem.h115 # define free vpx_free macro
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c6 * Permission is hereby granted, free of charge, to any person obtaining
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
128 * @param mask which components must be free in the temporary index that is
130 * @return -1 If there are no more free temporaries, otherwise the index of
153 int free; local
159 free = rc_find_free_temporary_list(c, used, RC_REGISTER_MAX_INDEX,
161 if (free < 0) {
165 return free;
/external/chromium_org/third_party/skia/include/gpu/
H A DGrGlyph.h40 void free() { function in struct:GrGlyph
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNameAllocator.cpp46 * there is not a free name within.
49 * be set to zero if there were no free names within the
101 * @param name The name to free. Not-allocated names are silently ignored
103 * @return The resulting SparseNameRange after the free (or NULL if it
109 virtual SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) = 0;
188 virtual SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) SK_OVERRIDE {
190 fLeft.reset(fLeft->free(name));
192 // fLeft became empty after the free.
198 fRight.reset(fRight->free(name));
200 // fRight became empty after the free
363 void GrGLNameAllocator::free(GrGLuint name) { function in class:GrGLNameAllocator
[all...]
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c54 /* Redirect calloc and free to test_calloc() and test_free() so cmockery can
60 #ifdef free
61 #undef free macro
62 #endif // free
63 #define free(ptr) _test_free(ptr, __FILE__, __LINE__) macro
230 free(*intermediate_values);
262 free(intermediate_values);
/external/compiler-rt/lib/asan/
H A Dasan_malloc_win.cc36 void free(void *ptr) { function
43 free(ptr);
139 // set on malloc/free etc (e.g. dllimport), so declare a few things manually:
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc81 void free(void *p) { function
137 void cfree(void *p) ALIAS("free");
159 void operator delete(void *ptr) throw() ALIAS("free");
160 void operator delete[](void *ptr) throw() ALIAS("free");
161 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free");
162 void operator delete[](void *ptr, std::nothrow_t const&) ALIAS("free");
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_md5.cc156 ulong_t used, free; local
166 free = 64 - used;
168 if (size < free) {
173 internal_memcpy(&ctx->buffer[used], data, free);
174 data = (unsigned char *)data + free;
175 size -= free;
188 ulong_t used, free; local
194 free = 64 - used;
196 if (free < 8) {
197 internal_memset(&ctx->buffer[used], 0, free);
[all...]
/external/e2fsprogs/e2fsck/
H A Dmtrace.h5 This library is free software; you can redistribute it and/or
68 extern void free __P ((__ptr_t __ptr));
113 /* Number of contiguous free blocks allowed to build up at the end of
131 size_t first; /* First free fragment of the block. */
137 /* Heap information for a free block
138 (that may be the first of a free cluster). */
141 size_t size; /* Size (in blocks) of a free cluster. */
142 size_t next; /* Index of next free cluster. */
143 size_t prev; /* Index of previous free cluster. */
144 } free; member in union:__anon20447
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Direl.h97 errcode_t (*free)(ext2_irel irel); member in struct:ext2_inode_relocation_table
114 #define ext2fs_irel_free(irel) ((irel)->free((irel)))
/external/freetype/include/
H A Dftsystem.h164 * free ::
175 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/freetype/src/raster/
H A Dftmisc.h77 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h112 # define free vpx_free macro
/external/llvm/lib/Support/
H A DMD5.cpp189 unsigned long used, free; local
201 free = 64 - used;
203 if (Size < free) {
208 memcpy(&buffer[used], Ptr, free);
209 Ptr = Ptr + free;
210 Size -= free;
233 unsigned long used, free; local
239 free = 64 - used;
241 if (free < 8) {
242 memset(&buffer[used], 0, free);
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c6 * Permission is hereby granted, free of charge, to any person obtaining
122 /* Search a list of used temporaries for a free one
124 * @note If this functions finds a free temporary, it will mark it as used
128 * @param mask which components must be free in the temporary index that is
130 * @return -1 If there are no more free temporaries, otherwise the index of
153 int free; local
159 free = rc_find_free_temporary_list(c, used, RC_REGISTER_MAX_INDEX,
161 if (free < 0) {
165 return free;
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsystem.h170 * free ::
182 FT_Free_Func free; member in struct:FT_MemoryRec_

Completed in 506 milliseconds

123456789