Searched refs:Free (Results 1 - 25 of 269) sorted by relevance

1234567891011

/external/chromium_org/base/files/
H A Dscoped_file.cc21 void ScopedFDCloseTraits::Free(int fd) { function in class:base::internal::ScopedFDCloseTraits
H A Dscoped_file.h25 static void Free(int fd);
/external/chromium_org/base/mac/
H A Dscoped_mach_port.cc14 void SendRightTraits::Free(mach_port_t port) { function in class:base::mac::internal::SendRightTraits
21 void ReceiveRightTraits::Free(mach_port_t port) { function in class:base::mac::internal::ReceiveRightTraits
H A Dscoped_mach_port.h23 static void Free(mach_port_t port);
31 static void Free(mach_port_t port);
/external/ceres-solver/internal/ceres/
H A Dcxsparse.h72 // 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*) {};
H A Dsuitesparse.h259 void Free(cholmod_sparse* m) { cholmod_free_sparse(&m, &cc_); } function in class:ceres::internal::SuiteSparse
260 void Free(cholmod_dense* m) { cholmod_free_dense(&m, &cc_); } function in class:ceres::internal::SuiteSparse
261 void Free(cholmod_factor* m) { cholmod_free_factor(&m, &cc_); } function in class:ceres::internal::SuiteSparse
301 void Free(void*) {};
/external/chromium_org/base/threading/
H A Dthread_local_android.cc20 slot.Free();
/external/lzma/CPP/7zip/Common/
H A DCWrappers.h57 ~CByteInBufWrap() { Free(); }
58 void Free();
89 ~CByteOutBufWrap() { Free(); }
90 void Free();
H A DInBuffer.cpp24 Free();
30 void CInBuffer::Free() function in class:CInBuffer
H A DInBuffer.h36 ~CInBuffer() { Free(); }
39 void Free();
H A DOutBuffer.h37 ~COutBuffer() { Free(); }
40 void Free();
/external/lzma/CPP/Windows/
H A DDLL.h24 ~CLibrary() { Free(); }
32 Free();
42 bool Free();
/external/chromium_org/gpu/command_buffer/client/
H A Dmapped_memory_unittest.cc144 chunk_->Free(pointer);
154 chunk_->Free(pointer_char);
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.
264 // Free u
[all...]
H A Dfenced_allocator_test.cc134 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]);
211 // Free one successful allocation, pending fence.
230 // Free up everything.
232 allocator_->Free(offsets[i]);
258 // Free one successful allocation, pending fence.
272 // Free tw
[all...]
/external/chromium_org/cc/resources/
H A Dscoped_resource.h34 void Free();
H A Dscoped_resource.cc15 Free();
52 void ScopedResource::Free() { function in class:cc::ScopedResource
/external/chromium_org/third_party/lzma_sdk/
H A D7zBuf.c33 alloc->Free(alloc, p->data);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlow_level_alloc.h61 // 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/
H A Dlow_level_alloc.h61 // 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/v8/src/extensions/
H A Dfree-buffer-extension.cc25 V8::ArrayBufferAllocator()->Free(contents.Data(), contents.ByteLength());
/external/lzma/C/
H A D7zBuf.c33 alloc->Free(alloc, p->data);
H A D7zBuf2.c31 alloc->Free(alloc, p->data);
41 alloc->Free(alloc, p->data);
/external/aac/libSYS/include/
H A DgenericStds.h151 #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; } } \
204 void Free ## nam
[all...]
/external/chromium_org/v8/src/
H A Dregexp-stack.cc31 thread_local_.Free();
58 void RegExpStack::ThreadLocal::Free() { function in class:v8::internal::RegExpStack::ThreadLocal
H A Dregexp-stack.h68 void FreeThreadResources() { thread_local_.Free(); }
95 void Free();

Completed in 443 milliseconds

1234567891011