HomeSort by relevance Sort by last modified time
    Searched refs:Free (Results 1 - 25 of 333) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/base/files/
scoped_file.cc 21 void ScopedFDCloseTraits::Free(int fd) {
scoped_file.h 25 static void Free(int fd);
  /external/chromium_org/base/mac/
scoped_mach_port.cc 14 void SendRightTraits::Free(mach_port_t port) {
21 void ReceiveRightTraits::Free(mach_port_t port) {
scoped_mach_port.h 23 static void Free(mach_port_t port);
31 static void Free(mach_port_t port);
  /external/ceres-solver/internal/ceres/
cxsparse.h 72 // with Free. May return NULL if the compression or allocation fails.
77 // The returned matrix should be deallocated with Free when not used
83 // The returned matrix should be deallocated with Free when not used
89 // The returned matrix should be deallocated with Free when not used anymore.
95 // The returned matrix should be deallocated with Free when not used anymore.
107 // The returned matrix should be deallocated with Free when not used
118 void Free(cs_di* sparse_matrix);
119 void Free(cs_dis* symbolic_factorization);
136 void Free(void*) {};
suitesparse.h 259 void Free(cholmod_sparse* m) { cholmod_free_sparse(&m, &cc_); }
260 void Free(cholmod_dense* m) { cholmod_free_dense(&m, &cc_); }
261 void Free(cholmod_factor* m) { cholmod_free_factor(&m, &cc_); }
301 void Free(void*) {};
  /external/chromium_org/base/threading/
thread_local_android.cc 20 slot.Free();
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.h 61 // Free() since that call to Alloc(). The space is returned to the arena
63 static void Free(void *s) ATTRIBUTE_SECTION(malloc_hook);
65 // ATTRIBUTE_SECTION(malloc_hook) for Alloc* and Free
75 // Report calls to Alloc() and Free() via the MallocHook interface.
79 // Make calls to Alloc(), Free() be async-signal-safe. Not set in
88 // Alloc/Free.
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.h 61 // Free() since that call to Alloc(). The space is returned to the arena
63 static void Free(void *s) ATTRIBUTE_SECTION(malloc_hook);
65 // ATTRIBUTE_SECTION(malloc_hook) for Alloc* and Free
75 // Report calls to Alloc() and Free() via the MallocHook interface.
79 // Make calls to Alloc(), Free() be async-signal-safe. Not set in
88 // Alloc/Free.
  /external/lzma/CPP/7zip/Common/
CWrappers.h 57 ~CByteInBufWrap() { Free(); }
58 void Free();
89 ~CByteOutBufWrap() { Free(); }
90 void Free();
  /external/lzma/CPP/Windows/
DLL.h 24 ~CLibrary() { Free(); }
32 Free();
42 bool Free();
  /external/chromium_org/gpu/command_buffer/client/
mapped_memory_unittest.cc 144 chunk_->Free(pointer);
154 chunk_->Free(pointer_char);
191 // Check if we free and realloc the same size we get the same memory
194 manager_->Free(mem1);
207 // Free 3 and allocate 2 half size blocks.
208 manager_->Free(mem3);
221 manager_->Free(mem4);
222 manager_->Free(mem2);
223 manager_->Free(mem5);
242 // Free one successful allocation, pending fence
    [all...]
fenced_allocator_test.cc 122 // Checks basic alloc and free.
134 allocator_->Free(offset);
169 // Free one successful allocation, reallocate with half the size
170 allocator_->Free(offsets[0]);
182 // Free up everything.
184 allocator_->Free(offsets[i]);
189 // Checks the free-pending-token mechanism.
211 // Free one successful allocation, pending fence.
230 // Free up everything.
232 allocator_->Free(offsets[i])
    [all...]
mapped_memory.h 30 // Gets the size of the largest free block that is available without waiting.
35 // Gets the size of the largest free block that can be allocated if the
74 // pointer: the pointer to the memory block to free.
75 void Free(void* pointer) {
76 allocator_.Free(pointer);
83 // pointer: the pointer to the memory block to free.
154 // pointer: the pointer to the memory block to free.
155 void Free(void* pointer);
161 // pointer: the pointer to the memory block to free.
165 // Free Any Shared memory that is not in use
    [all...]
  /ndk/sources/host-tools/make-3.81/
subproc.bat 3 rem 2005, 2006 Free Software Foundation, Inc.
6 rem GNU Make is free software; you can redistribute it and/or modify it under
7 rem the terms of the GNU General Public License as published by the Free
17 rem with GNU Make; see the file COPYING. If not, write to the Free Software
  /external/chromium_org/cc/resources/
scoped_resource.h 34 void Free();
scoped_resource.cc 15 Free();
52 void ScopedResource::Free() {
  /external/chromium_org/mojo/public/cpp/utility/lib/
thread_local.h 42 void Free() {
  /external/chromium_org/third_party/lzma_sdk/
7zBuf.c 33 alloc->Free(alloc, p->data);
  /external/chromium_org/v8/src/extensions/
free-buffer-extension.cc 5 #include "src/extensions/free-buffer-extension.h"
24 V8::ArrayBufferAllocator()->Free(contents.Data(), contents.ByteLength());
  /external/lzma/C/
7zBuf.c 33 alloc->Free(alloc, p->data);
  /external/aac/libSYS/include/
genericStds.h 39 You must make available free of charge copies of the complete source code of the FDK AAC Codec and your
151 #define H_ALLOC_MEM(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
155 #define H_ALLOC_MEM_OVERLAY(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
162 void Free ## name(type** p) { if (p != NULL) { FDKfree(*p); *p=NULL; } } \
168 static void Free ## name(type** p) { if (p != NULL) { FDKfree(*p); *p=NULL; } } \
174 void Free ## name(type** p) { if (p != NULL) { FDKfree(*p); *p=NULL; } } \
180 void Free ## name(type** p) { if (p != NULL) { FDKafree(*p); *p=NULL; } } \
186 void Free ## name(type** p) { if (p != NULL) { FDKafree(*p); *p=NULL; } } \
192 void Free ## name(type** p) { if (p != NULL) { FDKfree_L(*p); *p=NULL; } } \
198 void Free ## name(type** p) { if (p != NULL) { FDKfree_L(*p); *p=NULL; } }
    [all...]
  /art/runtime/base/
allocator.cc 41 virtual void Free(void* p) {
42 free(p);
61 virtual void Free(void* p) {
  /external/chromium_org/v8/src/
regexp-stack.cc 30 thread_local_.Free();
57 void RegExpStack::ThreadLocal::Free() {
regexp-stack.h 68 void FreeThreadResources() { thread_local_.Free(); }
95 void Free();

Completed in 1605 milliseconds

1 2 3 4 5 6 7 8 91011>>