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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
BaseMemAllocation.c 39 void free (void *ptr) function
  /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
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
libtest_malloc_lockup.cpp 35 // Override malloc() and free() to ensure they are never called!
38 // any malloc() and free() calls it contains will be compiled as direct calls to
46 extern "C" void free(void*) { function
47 write(2, PAYLOAD("ERROR: free called!"));
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
libtest_malloc_lockup.cpp 35 // Override malloc() and free() to ensure they are never called!
38 // any malloc() and free() calls it contains will be compiled as direct calls to
46 extern "C" void free(void*) { function
47 write(2, PAYLOAD("ERROR: free called!"));
  /external/compiler-rt/test/tsan/Linux/
user_malloc.cc 15 extern "C" void free(void *p) { function
22 free((void*)p);
  /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:__anon106063
44 // Free a buffer that was previously allocated with function |osi_malloc|
  /external/valgrind/memcheck/tests/
static_malloc.c 10 void free(void*ptr) { function
18 free(p);
  /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
PollArrayWrapper.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,
67 void free() { method in class:PollArrayWrapper
68 pollArray.free();
109 pollArray.free();
  /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 41 * template-free.
50 void free(void* block);
86 void free(T* t) { block_allocator_.free(t); } function in class:LinkerTypeAllocator
  /bionic/tools/versioner/src/
Utils.h 33 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);
  /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
  /libcore/ojluni/src/main/java/java/sql/
Array.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,
349 * it holds. The object is invalid once the <code>free</code>
352 * After <code>free</code> has been called, any attempt to invoke a
353 * method other than <code>free</code> will result in a <code>SQLException</code>
354 * being thrown. If <code>free</code> is called multiple times, the subsequent
355 * calls to <code>free</code> are treated as a no-op.
364 void free() throws SQLException; method in interface:Array

Completed in 1124 milliseconds

1 2 3 4 5 6 7 8 91011>>