HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 1 - 25 of 442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/memcheck/tests/
wrapmallocso.c 4 /* Fake malloc/free functions that just print something. When run
14 void free (void *ptr) function
16 printf ("free\n");
wrapmallocstatic.c 4 /* 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");
static_malloc.c 10 void free(void*ptr) { function
18 free(p);
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
BaseMemAllocation.c 39 void free (void *ptr) function
42 // In Standard C, free() handles a null pointer argument transparently. This
  /external/clang/test/CodeGenCXX/
attr-cleanup.cpp 4 void free(void *i) {} function in namespace:N
9 void *fp __attribute__((cleanup(N::free)));
debug-info-access.cpp 37 // CHECK: !DISubprogram(name: "free",
40 void free() {} function
  /external/compiler-rt/test/asan/TestCases/
deep_stack_uaf.cc 12 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/
refcnt.h 26 * When this count is decremented below zero, the free()
30 /** Free containing object
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/compiler-rt/test/tsan/Linux/
user_malloc.cc 15 extern "C" void free(void *p) { function
22 free((void*)p);
  /external/ltp/lib/newlib_tests/
tst_safe_fileops.c 4 * This program is free software: you can redistribute it and/or modify
6 * the Free Software Foundation, either version 2 of the License, or
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/syslinux/dos/
free.c 2 * 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
  /system/bt/osi/include/
allocator.h 30 free_fn free; member in struct:__anon2036
44 // Free a buffer that was previously allocated with function |osi_malloc|
  /libcore/ojluni/src/main/java/sun/nio/ch/
AllocatedNativeObject.java 5 * This code is free software; you can redistribute it and/or modify it
7 * published by the Free Software Foundation. Oracle designates this
18 * 2 along with this work; if not, write to the Free Software Foundation,
59 synchronized void free() { method in class:AllocatedNativeObject
  /prebuilts/go/darwin-x86/src/runtime/
mfixalloc.go 13 // FixAlloc is a simple free-list allocator for fixed size objects.
42 // the sweeper is placing an unmarked object on the free list it does not want the
94 func (f *fixalloc) free(p unsafe.Pointer) { func
  /prebuilts/go/linux-x86/src/runtime/
mfixalloc.go 13 // FixAlloc is a simple free-list allocator for fixed size objects.
42 // the sweeper is placing an unmarked object on the free list it does not want the
94 func (f *fixalloc) free(p unsafe.Pointer) { func
  /bionic/linker/
linker_block_allocator.h 40 * template-free.
49 void free(void* block);
85 void free(T* t) { block_allocator_.free(t); } function in class:LinkerTypeAllocator
  /bionic/tools/versioner/src/
Utils.h 35 std::unique_ptr<char, decltype(&free)> path_copy(strdup(path.c_str()), free); local
  /device/google/contexthub/firmware/os/cpu/cortexm4/
pendsv.c 26 int32_t i, free = -1; local
28 //check for dupes and also look fro a free slot
31 free = i;
37 if (free < 0)
40 mSubscribers[free] = cbk;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3parser.h 82 /** 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
antlr3parsetree.h 76 void (*free) (struct ANTLR3_PARSE_TREE_struct * tree); member in struct:ANTLR3_PARSE_TREE_struct
antlr3treeparser.h 71 /** 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/
StringBufferPool.java 37 * 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/
allocate_module.c 26 #define free(ptr) _test_free(ptr, __FILE__, __LINE__) macro
37 free(memory);
43 free(memory);
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence_work.h 4 * Permission is hereby granted, free of charge, to any person obtaining a
34 } free; member in struct:swr_fence_work
  /hardware/intel/common/libwsbm/src/
wsbm_mm.h 8 * Permission is hereby granted, free of charge, to any person obtaining a
35 * performance gains if a smarter free list is implemented. Currently it is just an
36 * unordered stack of free regions. This could easily be improved if an RB-tree
57 int free; member in struct:_WsbmMMNode

Completed in 1476 milliseconds

1 2 3 4 5 6 7 8 91011>>