HomeSort by relevance Sort by last modified time
    Searched defs:free (Results 151 - 175 of 234) sorted by null

1 2 3 4 5 67 8 910

  /external/wpa_supplicant_8/src/utils/
os.h 325 * os_free - Free dynamic memory
491 #define os_free(p) free((p))
642 #define free OS_DO_NOT_USE_free macro
  /frameworks/av/include/media/
MediaExtractorPluginApi.h 76 void (*free)(void *data); member in struct:android::CMediaTrack
88 void (*free)(void *data); member in struct:android::CMediaExtractor
  /frameworks/av/media/ndk/
NdkImage.cpp 76 AImage::free() { function in class:AImage
78 ALOGE("Cannot free AImage before close!");
628 image->free();
  /external/cmockery/cmockery_0_1_2/src/google/
cmockery.h 241 // Redirect malloc, calloc and free to the unit test allocators.
245 #define free test_free macro
  /external/harfbuzz_ng/src/
hb.hh 109 #define free hb_free_impl macro
  /external/jemalloc_new/src/
zone.c 21 void (*free)(struct _malloc_zone_t *, void *); member in struct:_malloc_zone_t
172 free(ptr);
204 free(ptr);
337 jemalloc_zone.free = zone_free;
  /external/libchrome/base/process/
process_metrics.h 283 // GetSystemMemoryInfo(). Total/free swap memory are available on all platforms
288 // Free is absent on Windows (see "avail_phys" below).
299 int free = 0; member in struct:base::SystemMemoryInfoKB
305 // size of the standby, free, and zero lists." (MSDN).
  /external/libxml2/
dict.c 106 xmlChar *free; member in struct:_xmlDictStrings
217 * Free the dictionary mutex. Do not call unless sure the library
252 if ((size_t)(pool->end - pool->free) > namelen)
275 pool->free = &pool->array[0];
284 ret = pool->free;
285 memcpy(pool->free, name, namelen);
286 pool->free += namelen;
287 *(pool->free++) = 0;
320 if ((size_t)(pool->end - pool->free) > namelen + plen + 1)
343 pool->free = &pool->array[0]
    [all...]
  /external/protobuf/js/binary/
reader.js 150 jspb.BinaryReader.prototype.free = function() { method in class:jspb.BinaryReader
    [all...]
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 42 // nullptr out the entries that are really free list links rather than ptrs before deleting.
64 // no free slots - create a new one
69 // grab the head of the free list and advance the head to the next free slot.
80 void free(T* object) { function in class:__anon38184::TGLObjectManager
93 // Index of the first entry of fGLObjects in the free list. Free slots in fGLObjects are indices
94 // to the next free slot. The last free slot has a value of kFreeListEnd.
294 fBufferManager.free(buffer)
    [all...]
  /external/skqp/src/gpu/gl/
GrGLCreateNullInterface.cpp 42 // nullptr out the entries that are really free list links rather than ptrs before deleting.
64 // no free slots - create a new one
69 // grab the head of the free list and advance the head to the next free slot.
80 void free(T* object) { function in class:__anon38985::TGLObjectManager
93 // Index of the first entry of fGLObjects in the free list. Free slots in fGLObjects are indices
94 // to the next free slot. The last free slot has a value of kFreeListEnd.
294 fBufferManager.free(buffer)
    [all...]
  /external/u-boot/drivers/mtd/nand/
tegra_nand.c 510 struct nand_oobfree *free = chip->ecc.layout->oobfree; local
547 memcpy(tag_ptr, chip->oob_poi + free->offset,
627 memcpy(chip->oob_poi + free->offset,
726 struct nand_oobfree *free = chip->ecc.layout->oobfree; local
806 (u8 *)(chip->oob_poi + free->offset),
lpc32xx_nand_mlc.c 88 * OOB data in each small page are 6 'free' then 10 ECC bytes.
90 * 'free' OOB bytes are grouped in the first 24 bytes of the OOB buffer,
93 * The struct below represents how free vs ecc oob bytes are stored
102 } free[4]; member in struct:lpc32xx_oob
259 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->buff, 6);
301 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->data, 6);
359 memcpy(&oob->free[i], lpc32xx_nand_mlc_registers->buff, 6);
393 memcpy(&lpc32xx_nand_mlc_registers->buff, &oob->free[i], 6);
449 memcpy(lpc32xx_nand_mlc_registers->buff, &oob->free[i], 6);
484 memcpy(lpc32xx_nand_mlc_registers->data, &oob->free[i], 6)
    [all...]
  /external/u-boot/fs/ubifs/
lprops.c 33 return lprops->free;
35 return lprops->free + lprops->dirty;
50 * is either the amount of free space or the amount of dirty space, depending
88 * of free space or the amount of dirty space, depending on the category.
407 if (lprops->free == c->leb_size) {
412 if (lprops->free + lprops->dirty == c->leb_size) {
420 if (lprops->dirty + lprops->free >= c->min_idx_node_sz)
424 lprops->dirty > lprops->free)
426 if (lprops->free > 0)
463 * @spc: amount of free and dirty space in the LE
1026 int cat, lnum = lp->lnum, is_idx = 0, used = 0, free, dirty, ret; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c 320 which determines whether a name is local, global, or free. In addition,
322 bindings that are used for free variables in enclosed blocks.
324 There are also two kinds of free variables, implicit and explicit. An
326 global is a free variable for which the compiler has found no binding
340 are used to determine if the variable is free or an implicit global.
344 The children update the free variable set. If a local variable is free
347 frame. Cell variables are removed from the free set before the analyze
350 The sets of bound and free variables are implemented as dictionaries
374 PyObject *bound, PyObject *local, PyObject *free,
780 PyObject *free, *global; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c 318 which determines whether a name is local, global, or free. In addition,
320 bindings that are used for free variables in enclosed blocks.
322 There are also two kinds of free variables, implicit and explicit. An
324 global is a free variable for which the compiler has found no binding
338 are used to determine if the variable is free or an implicit global.
342 The children update the free variable set. If a local variable is free
345 frame. Cell variables are removed from the free set before the analyze
348 The sets of bound and free variables are implemented as dictionaries
372 PyObject *bound, PyObject *local, PyObject *free,
778 PyObject *free, *global; local
    [all...]
  /external/antlr/runtime/C/include/
antlr3collections.h 76 void (ANTLR3_CDECL *free)(void * data); member in struct:ANTLR3_HASH_ENTRY_struct
128 void (*free) (struct ANTLR3_HASH_TABLE_struct * table); member in struct:ANTLR3_HASH_TABLE_struct
174 void (*free) (struct ANTLR3_HASH_ENUM_struct * table); member in struct:ANTLR3_HASH_ENUM_struct
186 void (*free) (struct ANTLR3_LIST_struct * list); member in struct:ANTLR3_LIST_struct
208 void (*free) (struct ANTLR3_STACK_struct * stack); member in struct:ANTLR3_STACK_struct
230 * that can free the element if it is removed. It auto resizes but does not
250 * the malloc/free callas we would otherwise require.
255 * case only the factory can free the memory for the actual vector,
256 * though the vector free function is called and will recurse through its
257 * entries calling any free pointers for each entry
265 void (ANTLR3_CDECL *free) (struct ANTLR3_VECTOR_struct * vector); member in struct:ANTLR3_VECTOR_struct
386 void (*free) (struct ANTLR3_INT_TRIE_struct * trie); member in struct:ANTLR3_INT_TRIE_struct
503 void (*free) (struct ANTLR3_TOPO_struct * topo); member in struct:ANTLR3_TOPO_struct
    [all...]
  /external/autotest/client/deps/nvmap_compactor/src/
nvmap_carveout_compactor.c 103 * This function gets the free amount of carveout from sysfs.
105 int GetCarveoutFreeSize(unsigned int *free)
114 * can query free carveout size
124 fscanf(f, "%d", free);
191 free(data);
353 unsigned int free; local
354 GetCarveoutFreeSize(&free);
355 printf("CarveOut free after phase %d allocation: %d\n",
356 phase, free);
389 printf("CarveOut free before cleanup: %d [%dMB]\n", carveoutFree
419 unsigned int free; local
451 unsigned int free; local
    [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 64 void free (deUint32 object) function in class:tcu::null::ObjectManager
  /external/freetype/src/base/
ftdbgmem.c 136 FT_Free_Func free; member in struct:FT_MemTableRec_
249 table->free( memory, block );
326 table->free = memory->free;
336 memory->free( memory, table );
670 "trying to free unknown block at %p in (%s:%ld)\n",
721 ft_mem_debug_panic( "trying to free NULL in (%s:%ld)",
840 memory->free = ft_mem_debug_free;
893 memory->free = table->free;
    [all...]
  /external/jemalloc/include/jemalloc/
jemalloc.h 98 # define je_free free
363 # define free je_free macro
  /external/jemalloc_new/include/jemalloc/
jemalloc.h 346 # define free je_free macro
  /external/libxml2/python/
libxml.py 499 Note: This method does not free memory taken by the ns
500 definitions. You will need to free it manually with the
516 def free(self): member in class:xmlCore
  /external/python/cpython2/Python/
symtable.c 322 which determines whether a name is local, global, or free. In addition,
324 bindings that are used for free variables in enclosed blocks.
326 There are also two kinds of free variables, implicit and explicit. An
328 global is a free variable for which the compiler has found no binding
342 are used to determine if the variable is free or an implicit global.
346 The children update the free variable set. If a local variable is free
349 frame. Cell variables are removed from the free set before the analyze
352 The sets of bound and free variables are implemented as dictionaries
376 PyObject *bound, PyObject *local, PyObject *free,
782 PyObject *free, *global; local
    [all...]
  /external/python/cpython3/Objects/
codeobject.c 895 freefunc free = interp->co_extra_freefuncs[index]; local
896 if (free != NULL) {
897 free(co_extra->ce_extras[index]);

Completed in 1110 milliseconds

1 2 3 4 5 67 8 910