Searched defs:free (Results 1 - 25 of 117) sorted by relevance

12345

/external/compiler-rt/lib/asan/lit_tests/
H A Ddeep_stack_uaf.cc15 static void free(char *x) { function in struct:DeepFree
16 DeepFree<depth - 1>::free(x);
22 static void free(char *x) { function in struct:DeepFree
23 ::free(x);
30 DeepFree<200>::free(x);
32 // CHECK: {{.*ERROR: AddressSanitizer heap-use-after-free on address}}
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3parser.h82 /** Pointer to a function that knows how to free resources of an ANTLR3 parser.
84 void (*free) (struct ANTLR3_PARSER_struct * parser); member in struct:ANTLR3_PARSER_struct
H A Dantlr3parsetree.h76 void (*free) (struct ANTLR3_PARSE_TREE_struct * tree); member in struct:ANTLR3_PARSE_TREE_struct
H A Dantlr3treeparser.h71 /** Pointer to a function that knows how to free resources of an ANTLR3 tree parser.
73 void (*free) (struct ANTLR3_TREE_PARSER_struct * parser); member in struct:ANTLR3_TREE_PARSER_struct
H A Dantlr3bitset.h106 void (*free) (struct ANTLR3_BITSET_struct * bitset); member in struct:ANTLR3_BITSET_struct
H A Dantlr3intstream.h195 void (*free) (struct ANTLR3_INT_STREAM_struct * stream); member in struct:ANTLR3_INT_STREAM_struct
H A Dantlr3lexer.h182 /** Pointer to a function that knows how to free the resources of a lexer
184 void (*free) (struct ANTLR3_LEXER_struct * lexer); member in struct:ANTLR3_LEXER_struct
H A Dantlr3rewritestreams.h78 /// Indicates whether we should free the vector or it was supplied to us
156 void (*free) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStringBufferPool.java37 * Get the first free instance of a string buffer, or create one
38 * if there are no free instances.
52 public synchronized static void free(FastStringBuffer sb) method in class:StringBufferPool
/external/ipsec-tools/src/racoon/
H A Dgcmalloc.h46 * malloc(), calloc(), realloc(), and free() entry points in the main
77 free(void *ptr) function
120 #define racoon_free(p) free((p))
/external/qemu/android/
H A Daudio-test.c30 testAudio_audio_callback(void* opaque, int free) argument
34 //printf("%s: pos=%d free=%d\n", __FUNCTION__, ta->pos, free);
36 while (free > 0) {
38 if (avail > free)
39 avail = free;
46 free -= avail;
94 free(testAudio);
/external/valgrind/main/helgrind/
H A Dhg_basics.c14 This program is free software; you can redistribute it and/or
55 void HG_(free) ( void* p ) function
58 VG_(free)(p);
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DSystemMallocBrew.h63 #define free(p) freeBrew(p) macro
/external/webkit/Source/WebKit/chromium/tests/
H A DArenaTestHelpers.h53 virtual void free(void* ptr) function in class:WebCore::ArenaTestHelpers::TrackedAllocator
58 PODArena::FastMallocAllocator::free(ptr);
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc13 // We simply define functions like malloc, free, realloc, etc.
25 DECLARE_REAL_AND_INTERCEPTOR(void, free, void *ptr);
32 void (*free)(void* mem); member in struct:MallocDebug
39 WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
61 INTERCEPTOR(void, free, void *ptr) {
/external/kernel-headers/original/linux/
H A Dmempool.h22 mempool_free_t *free; member in struct:mempool_s
/external/webkit/Source/WebCore/rendering/
H A DRenderArena.cpp7 * This library is free software; you can redistribute it and/or
114 void RenderArena::free(size_t size, void* ptr) function in class:WebCore::RenderArena
117 // Use standard free so that memory debugging tools work.
124 ::free(block);
/external/chromium/base/allocator/
H A Dgeneric_allocators.cc6 // low-level functions malloc() and free(). This way, including a new
32 free(p);
40 free(p);
79 free(p);
106 #undef free macro
126 free(ptr);
/external/chromium/base/
H A Dsys_info_win.cc39 ULARGE_INTEGER available, total, free; local
40 if (!GetDiskFreeSpaceExW(path.value().c_str(), &available, &total, &free)) {
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h73 errcode_t (*free)(ext2_brel brel); member in struct:ext2_block_relocation_table
85 #define ext2fs_brel_free(brel) ((brel)->free((brel)))
/external/freetype/src/raster/
H A Dftmisc.h77 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/libnfc-nci/src/nfc/nci/
H A Dnci_hrcv.c42 ** Returns TRUE-caller of this function to free the GKI buffer p_msg
49 BOOLEAN free = TRUE; local
68 free = FALSE;
92 return free;
/external/skia/include/core/
H A DSkPostConfig.h235 #ifdef free
236 #undef free macro
239 #undef free macro
/external/skia/include/gpu/
H A DGrGlyph.h42 void free() { function in struct:GrGlyph
/external/skia/src/gpu/
H A DGrAllocPool.cpp46 size_t free = GrMin(bytes, fBytesTotal - fBytesFree); local
47 fBytesFree += free;
48 fPtr -= free;
49 return bytes - free;

Completed in 4598 milliseconds

12345