HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 126 - 150 of 483) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/
DirectByteBuffer.java 295 public final void free() { method in class:DirectByteBuffer
296 block.free();
MemoryBlock.java 42 @Override public void free() { method in class:MemoryBlock.MemoryMappedBlock
52 super.free();
56 free(); method
79 @Override public void free() { method in class:MemoryBlock.NonMovableHeapBlock
81 super.free();
152 public void free() { method in class:MemoryBlock
  /bionic/linker/
linker_allocator.cpp 31 // designed to provide the same functionality as the malloc/free/realloc
39 // On free:
45 // the block to free_blocks_list_. If the number of free pages reaches 2,
131 void LinkerSmallObjectAllocator::free(void* ptr) { function in class:LinkerSmallObjectAllocator
153 // if we already have a free page - unmap this one.
292 free(ptr);
314 free(ptr);
321 void LinkerMemoryAllocator::free(void* ptr) { function in class:LinkerMemoryAllocator
336 allocator->free(ptr);
  /development/ndk/platforms/android-3/include/linux/
smb.h 36 __u16 free; member in struct:smb_dskattr
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3basetree.h 133 void (*free) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
antlr3input.h 121 * you set it manually as it will be free()d
135 void (*free) (struct ANTLR3_INPUT_STREAM_struct * input); member in struct:ANTLR3_INPUT_STREAM_struct
  /external/cmockery/cmockery_0_1_2/src/example/
calculator.c 54 /* Redirect calloc and free to test_calloc() and test_free() so cmockery can
60 #ifdef free
61 #undef free macro
62 #endif // free
63 #define free(ptr) _test_free(ptr, __FILE__, __LINE__) macro
230 free(*intermediate_values);
262 free(intermediate_values);
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 154 ulong_t used, free; local
164 free = 64 - used;
166 if (size < free) {
171 internal_memcpy(&ctx->buffer[used], data, free);
172 data = (const unsigned char *)data + free;
173 size -= free;
186 ulong_t used, free; local
192 free = 64 - used;
194 if (free < 8) {
195 internal_memset(&ctx->buffer[used], 0, free);
    [all...]
  /external/e2fsprogs/e2fsck/
mtrace.h 2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
5 This library is free software; you can redistribute it and/or
7 published by the Free Software Foundation; either version 2 of the
17 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
21 or (US mail) as Mike Haertel c/o Free Software Foundation. */
67 /* Free a block allocated by `malloc', `realloc' or `calloc'. */
68 extern void free __P ((__ptr_t __ptr));
113 /* Number of contiguous free blocks allowed to build up at the end of
130 size_t nfree; /* Free fragments in a fragmented block. */
131 size_t first; /* First free fragment of the block. *
144 } free; member in union:__anon8166
    [all...]
  /external/e2fsprogs/lib/ext2fs/
irel.h 95 * Free the inode relocation table.
97 errcode_t (*free)(ext2_irel irel); member in struct:ext2_inode_relocation_table
114 #define ext2fs_irel_free(irel) ((irel)->free((irel)))
  /external/freetype/include/
ftsystem.h 164 * free ::
175 FT_Free_Func free; member in struct:FT_MemoryRec_
  /external/libvpx/libvpx/vpx_mem/
vpx_mem.h 112 # define free vpx_free macro
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_pool.c 6 * Permission is hereby granted, free of charge, to any person obtaining a
67 struct list_head free; member in struct:pool_pb_manager
114 LIST_ADD(&pool_buf->head, &pool->free);
207 item = pool->free.next;
209 if (item == &pool->free) {
243 FREE(pool->bufs);
250 FREE(mgr);
275 LIST_INITHEAD(&pool->free);
307 LIST_ADDTAIL(&pool_buf->head, &pool->free);
315 FREE(pool->bufs)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
compat.hpp 4 // Permission is hereby granted, free of charge, to any person obtaining a
54 free(int n, T *p) { function in class:clover::compat::vector
58 std::free(p);
77 free(n, p);
82 free(n, p);
94 free(n, p);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_dma.c 12 Permission is hereby granted, free of charge, to any person obtaining a
206 make_empty_list(&rmesa->dma.free);
223 if (is_empty_list(&rmesa->dma.free)
224 || last_elem(&rmesa->dma.free)->bo->size < size) {
242 dma_bo = last_elem(&rmesa->dma.free);
302 foreach_s(dma_bo, temp, &rmesa->dma.free) {
305 FREE(dma_bo);
311 FREE(dma_bo);
317 FREE(dma_bo);
347 const int expire_at = ++rmesa->dma.free.expire_counter + DMA_BO_FREE_TIME
351 size_t free = 0, local
    [all...]
  /external/pdfium/third_party/freetype/include/
ftsystem.h 164 * free ::
175 FT_Free_Func free; member in struct:FT_MemoryRec_
  /external/selinux/libsemanage/src/
database.h 30 /* Free record key */
53 void (*free) (record_t * rec); member in struct:record_table
  /external/skia/src/core/
SkDescriptor.h 29 static void Free(SkDescriptor* desc) {
140 ~SkAutoDescriptor() { this->free(); }
143 this->free();
153 void free() { function in class:SkAutoDescriptor
155 SkDescriptor::Free(fDesc);
  /external/skia/src/gpu/
GrGlyph.h 55 void free() { function in struct:GrGlyph
  /external/skia/src/gpu/gl/
GrGLNameAllocator.cpp 46 * there is not a free name within.
49 * be set to zero if there were no free names within the
97 * Free a name so it is no longer tracked as allocated. If the name is at
101 * @param name The name to free. Not-allocated names are silently ignored
103 * @return The resulting SparseNameRange after the free (or NULL if it
109 virtual SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) = 0;
188 SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) override {
190 fLeft.reset(fLeft->free(name));
192 // fLeft became empty after the free.
198 fRight.reset(fRight->free(name))
363 void GrGLNameAllocator::free(GrGLuint name) { function in class:GrGLNameAllocator
    [all...]
  /external/skia/src/lazy/
SkDiscardableMemoryPool.cpp 60 /** Function called to free memory if needed */
63 void free(PoolDiscardableMemory* dm);
110 fPool->free(this);
190 void DiscardableMemoryPool::free(PoolDiscardableMemory* dm) { function in class:__anon18347::DiscardableMemoryPool
  /external/valgrind/coregrind/m_demangle/
vg_libciface.h 13 This program is free software; you can redistribute it and/or
15 published by the Free Software Foundation; either version 2 of the
24 along with this program; if not, write to the Free Software
49 #define free(_pt) VG_(arena_free) (VG_AR_DEMANGLE,(_pt)) macro
  /external/valgrind/coregrind/m_gdbserver/
server.h 4 Free Software Foundation, Inc.
9 This program is free software; you can redistribute it and/or modify
11 the Free Software Foundation; either version 2 of the License, or
20 along with this program; if not, write to the Free Software
161 #define free(b) VG_(free) (b) macro
  /external/valgrind/drd/tests/
circular_buffer.c 29 #define FREE_SEMAPHORE_NAME "cb-free-semaphore"
37 /* Counting semaphore representing the number of free elements. */
38 sem_t* free; member in struct:__anon20578
86 free(p);
93 b->free = create_semaphore(FREE_SEMAPHORE_NAME, BUFFER_MAX);
122 sem_post(b->free);
128 sem_wait(b->free);
151 destroy_semaphore(FREE_SEMAPHORE_NAME, b->free);
unit_bitmap.c 29 void VG_(free)(void* p) function
30 { return free(p); }

Completed in 640 milliseconds

1 2 3 4 56 7 8 91011>>