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

123456789

/external/libchrome/base/files/
H A Dscoped_file.cc22 void ScopedFDCloseTraits::Free(int fd) { function in class:base::internal::ScopedFDCloseTraits
H A Dscoped_file.h25 static void Free(int fd);
/external/libchrome/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
29 void PortSetTraits::Free(mach_port_t port) { function in class:base::mac::internal::PortSetTraits
H A Dscoped_mach_port.h23 BASE_EXPORT static void Free(mach_port_t port);
31 BASE_EXPORT static void Free(mach_port_t port);
39 BASE_EXPORT static void Free(mach_port_t port);
H A Dscoped_cffiledescriptorref.h19 static void Free(CFFileDescriptorRef ref) { function in struct:base::mac::internal::ScopedCFFileDescriptorRefTraits
H A Dscoped_launch_data.h19 static void Free(launch_data_t ldt) { launch_data_free(ldt); } function in struct:base::mac::internal::ScopedLaunchDataTraits
/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/lzma/CPP/Windows/
H A DDLL.h22 ~CLibrary() { Free(); }
30 Free();
40 bool Free() throw();
H A DShell.h27 ~CItemIDList() { Free(); }
28 void Free();
31 Free();
57 void Free();
60 ~CDrop() { Free(); }
H A DCOM.h34 ~CStgMedium() { Free(); }
35 void Free() function in class:NWindows::NCOM::CStgMedium
H A DDLL.cpp16 bool CLibrary::Free() throw() function in class:NWindows::NDLL::CLibrary
28 if (!Free())
45 if (!Free())
/external/libchrome/base/win/
H A Dscoped_gdi_object.h20 static void Free(T object) { DeleteObject(object); } function in struct:base::win::internal::ScopedGDIObjectTraits
26 void inline ScopedGDIObjectTraits<HICON>::Free(HICON icon) { function in class:base::win::internal::ScopedGDIObjectTraits
/external/v8/src/base/
H A Daccounting-allocator.h21 void Free(void* memory, size_t bytes);
H A Daccounting-allocator.cc22 void AccountingAllocator::Free(void* memory, size_t bytes) { function in class:v8::base::AccountingAllocator
/external/avahi/avahi-sharp/
H A DUtility.cs6 published by the Free Software Foundation; either version 2.1 of the
15 License along with avahi; if not, write to the Free Software
59 Free (ptr);
83 public static void Free (IntPtr ptr) method in class:Avahi.Utility
93 Utility.Free (straddr);
106 Utility.Free (addrPtr);
H A DClient.cs6 published by the Free Software Foundation; either version 2.1 of the
15 License along with avahi; if not, write to the Free Software
310 Utility.Free (buf);
315 Utility.Free (buf);
332 Utility.Free (namePtr);
333 Utility.Free (typePtr);
334 Utility.Free (domainPtr);
346 Utility.Free (namePtr);
347 Utility.Free (typePtr);
348 Utility.Free (domainPt
[all...]
/external/lzma/CPP/7zip/Common/
H A DCWrappers.h62 ~CByteInBufWrap() { Free(); }
63 void Free() throw();
94 ~CByteOutBufWrap() { Free(); }
95 void Free() throw();
H A DInBuffer.h85 ~CInBuffer() { Free(); }
87 void Free() throw();
/external/lzma/CPP/Common/
H A DMyBuffer.h23 void Free() function in class:CBuffer
46 Free();
59 Free();
89 Free();
128 void Free() function in class:CObjArray
164 void Free() function in class:CObjArray2
221 Free();
/external/lzma/C/
H A D7zBuf.c33 alloc->Free(alloc, p->data);
H A D7zBuf2.c34 alloc->Free(alloc, p->data);
44 alloc->Free(alloc, p->data);
/external/v8/src/extensions/
H A Dfree-buffer-extension.cc25 isolate->array_buffer_allocator()->Free(contents.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/llvm/lib/ExecutionEngine/
H A DSectionMemoryManager.cpp53 if (FreeMB.Free.size() >= RequiredSize) {
54 Addr = (uintptr_t)FreeMB.Free.base();
55 uintptr_t EndOfBlock = Addr + FreeMB.Free.size();
72 FreeMB.Free = sys::MemoryBlock((void *)(Addr + Size), EndOfBlock - Addr - Size);
116 FreeMB.Free = sys::MemoryBlock((void*)(Addr + Size), FreeSize);
195 FreeMB.Free = trimBlockToPageSize(FreeMB.Free);
203 [](FreeMemBlock &FreeMB) { return FreeMB.Free.size() == 0; }),

Completed in 365 milliseconds

123456789