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

12345678

/external/compiler-rt/test/asan/TestCases/
H A Ddeep_stack_uaf.cc12 static void free(char *x) { function in struct:DeepFree
13 DeepFree<depth - 1>::free(x);
19 static void free(char *x) { function in struct:DeepFree
20 ::free(x);
27 DeepFree<200>::free(x);
29 // CHECK: {{.*ERROR: AddressSanitizer: heap-use-after-free on address}}
/external/syslinux/gpxe/src/include/gpxe/
H A Drefcnt.h26 * When this count is decremented below zero, the free()
35 * If this method is left NULL, the standard library free()
37 * may omit the free() method if the @c refcnt object is the
40 void ( * free ) ( struct refcnt *refcnt ); member in struct:refcnt
/external/valgrind/memcheck/tests/
H A Dwrapmallocso.c4 /* Fake malloc/free functions that just print something. When run
14 void free (void *ptr) function
16 printf ("free\n");
H A Dwrapmallocstatic.c4 /* Test that a program that has malloc/free interposed in the
11 free (p);
16 /* Fake malloc/free functions that just print something. When run
26 void free (void *ptr) function
28 printf ("free\n");
H A Dstatic_malloc.c10 void free(void*ptr) { function
18 free(p);
/external/clang/test/CodeGenCXX/
H A Dattr-cleanup.cpp4 void free(void *i) {} function in namespace:N
9 void *fp __attribute__((cleanup(N::free)));
H A Ddebug-info-access.cpp37 // CHECK: !DISubprogram(name: "free",
40 void free() {} function
/external/ltp/lib/newlib_tests/
H A Dtst_safe_fileops.c4 * This program is free software: you can redistribute it and/or modify
23 long free; local
27 SAFE_FILE_LINES_SCANF("/proc/meminfo", "MemFree: %ld", &free);
30 tst_res(TPASS, "Free: %ld, nproc: %ld", free, nproc);
/external/compiler-rt/test/tsan/Linux/
H A Duser_malloc.cc15 extern "C" void free(void *p) { function
22 free((void*)p);
/external/syslinux/dos/
H A Dfree.c2 * free.c
4 * Very simple linked-list based malloc()/free().
30 /* Need to add this block to the free chain */
60 void free(void *ptr) function
/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
/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/cmockery/cmockery_0_1_2/src/example/
H A Dallocate_module.c26 #define free(ptr) _test_free(ptr, __FILE__, __LINE__) macro
37 free(memory);
43 free(memory);
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_fence_work.h4 * Permission is hereby granted, free of charge, to any person obtaining a
34 } free; member in struct:swr_fence_work
/external/boringssl/src/crypto/fipsmodule/digest/
H A Dinternal.h8 * This library is free for commercial and non-commercial use as long as
98 // free is called when an |EVP_MD_CTX| is being freed and the |pctx| also
100 void (*free) (EVP_PKEY_CTX *pctx); member in struct:evp_md_pctx_ops
/external/curl/lib/
H A Dcurl_memory.h30 * or free, and given source file is used to build libcurl library.
114 * realloc and free, along with others, in memdebug.h in a different
129 #undef free macro
130 #define free(ptr) Curl_cfree(ptr) macro
/external/e2fsprogs/lib/ext2fs/
H A Dhashmap.h10 void(*free)(void*); member in struct:ext2fs_hashmap
/external/iproute2/include/libiptc/
H A Dxtcshared.h10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
/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/iptables/include/libiptc/
H A Dxtcshared.h10 void (*free)(struct xtc_handle *); member in struct:xtc_ops
/external/libdrm/intel/
H A Dmm.h5 * Permission is hereby granted, free of charge, to any person obtaining a
43 unsigned int free:1; member in struct:mem_block
55 * restrict the search to free memory after 'startSearch'
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dfilters.h6 * Permission is hereby granted, free of charge, to any person obtaining a
49 pp_free_func free; /* Free function */ member in struct:pp_filter_t
55 /* name inner shaders verts init run free */
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_mm.h5 * Permission is hereby granted, free of charge, to any person obtaining a
42 unsigned int free:1; member in struct:mem_block
56 * restrict the search to free memory after 'startSearch'

Completed in 756 milliseconds

12345678