Searched defs:free (Results 1 - 25 of 92) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStringBufferPool.java37 * 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/bluetooth/glib/glib/gnulib/
H A Dg-gnulib.h4 * This library is free software; you can redistribute it and/or
35 #undef free macro
38 #define free g_free macro
/external/valgrind/main/helgrind/
H A Dhg_basics.c14 This program is free software; you can redistribute it and/or
55 void HG_(free) ( void* p ) function
58 VG_(free)(p);
/external/ipsec-tools/src/racoon/
H A Dgcmalloc.h46 * malloc(), calloc(), realloc(), and free() entry points in the main
77 free(void *ptr) function
120 #define racoon_free(p) free((p))
/external/qemu/android/
H A Daudio-test.c30 testAudio_audio_callback(void* opaque, int free) argument
34 //printf("%s: pos=%d free=%d\n", __FUNCTION__, ta->pos, free);
36 while (free > 0) {
38 if (avail > free)
39 avail = free;
46 free -= avail;
94 free(testAudio);
/external/webkit/Source/JavaScriptCore/wtf/brew/
H A DSystemMallocBrew.h63 #define free(p) freeBrew(p) macro
/external/webkit/Source/WebKit/chromium/tests/
H A DArenaTestHelpers.h53 virtual void free(void* ptr) function in class:WebCore::ArenaTestHelpers::TrackedAllocator
58 PODArena::FastMallocAllocator::free(ptr);
/external/kernel-headers/original/linux/
H A Dmempool.h22 mempool_free_t *free; member in struct:mempool_s
/external/webkit/Source/WebCore/rendering/
H A DRenderArena.cpp7 * This library is free software; you can redistribute it and/or
114 void RenderArena::free(size_t size, void* ptr) function in class:WebCore::RenderArena
117 // Use standard free so that memory debugging tools work.
124 ::free(block);
/external/chromium/base/allocator/
H A Dgeneric_allocators.cc6 // low-level functions malloc() and free(). This way, including a new
32 free(p);
40 free(p);
79 free(p);
106 #undef free macro
126 free(ptr);
/external/chromium/base/
H A Dsys_info_win.cc39 ULARGE_INTEGER available, total, free; local
40 if (!GetDiskFreeSpaceExW(path.value().c_str(), &available, &total, &free)) {
/external/clang/test/SemaTemplate/
H A Dalias-templates.cpp33 void free(inner_ptr&&);
49 ~thing() { traits.free(static_cast<inner_ptr&&>(val)); }
61 template<> void traits<thing<bool>>::free(bool&) {} function in class:X::traits
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h73 errcode_t (*free)(ext2_brel brel); member in struct:ext2_block_relocation_table
85 #define ext2fs_brel_free(brel) ((brel)->free((brel)))
/external/expat/amiga/
H A Dstdlib.c4 ** Permission is hereby granted, free of charge, to any person obtaining
50 free(mem);
61 free(mem);
67 void free (void * mem) function
/external/freetype/src/raster/
H A Dftmisc.h77 FT_Free_Func free; member in struct:FT_MemoryRec_
/external/skia/gpu/include/
H A DGrGlyph.h49 void free() { function in struct:GrGlyph
H A DGrMemory.h73 * free the block now. get() will now return NULL
75 void free() { function in class:GrAutoMalloc
150 * free the block now. get() will now return NULL
152 void free() { function in class:GrAutoSMalloc
/external/skia/gpu/src/
H A DGrAllocPool.cpp53 size_t free = GrMin(bytes, fBytesTotal - fBytesFree); local
54 fBytesFree += free;
55 fPtr -= free;
56 return bytes - free;
/external/skia/include/core/
H A DSkPostConfig.h216 #ifdef free
217 #undef free macro
220 #undef free macro
/external/skia/src/images/
H A DSkCreateRLEPixelRef.cpp73 size_t free = 0; local
79 if (free < maxPacked) {
81 free = size;
84 SkASSERT(packedSize <= free);
88 free -= packedSize;
/external/srec/portable/include/
H A Dpmemory.h68 #define FREE(p) free(p)
77 #define PMemLogFree(p) (free(p), ESR_SUCCESS)
88 #define free #error macro
147 * Portable free()
152 * Portable free()
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dmemory.c59 // we need to call the `real' malloc and free, not our replacements
61 #undef free macro
75 uintptr_t free, end; member in struct:MemoryPool_rec
94 pool->free = ((uintptr_t)(pool + 1) + pool->alignmask) & ~pool->alignmask;
110 free(p);
117 void *rv = (void *)pool->free;
120 pool->free += size;
121 if (pool->free > pool->end || pool->free < (uintptr_t)rv) {
124 pool->free
[all...]
/external/bluetooth/glib/glib/
H A Dgmem.h4 * This library is free software; you can redistribute it and/or
88 void (*free) (gpointer mem); member in struct:_GMemVTable
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
H A DOpenSSLDigest.java83 free();
109 private void free() { method in class:OpenSSLDigest
119 free();
/external/e2fsprogs/e2fsck/
H A Dmtrace.h5 This library is free software; you can redistribute it and/or
68 extern void free __P ((__ptr_t __ptr));
113 /* Number of contiguous free blocks allowed to build up at the end of
131 size_t first; /* First free fragment of the block. */
137 /* Heap information for a free block
138 (that may be the first of a free cluster). */
141 size_t size; /* Size (in blocks) of a free cluster. */
142 size_t next; /* Index of next free cluster. */
143 size_t prev; /* Index of previous free cluster. */
144 } free; member in union:__anon4106
[all...]

Completed in 575 milliseconds

1234