HomeSort by relevance Sort by last modified time
    Searched full:next_free (Results 1 - 25 of 60) sorted by null

1 2 3

  /hardware/intel/img/psb_video/src/
object_heap.c 50 int next_free; local
58 next_free = heap->next_free;
67 obj->next_free = next_free;
68 next_free = i;
81 heap->next_free = next_free;
96 heap->next_free = LAST_FREE;
107 if (LAST_FREE == heap->next_free) {
    [all...]
object_heap.h 40 int next_free; member in struct:object_base_s
47 int next_free; member in struct:object_heap_s
  /external/syslinux/dos/
malloc.c 35 fp->next_free = fp->prev_free = &__malloc_head;
37 __malloc_head.next_free = __malloc_head.prev_free = fp;
65 nfp->next_free = fp->next_free;
67 fp->next_free->prev_free = nfp;
68 fp->prev_free->next_free = nfp;
74 fp->next_free->prev_free = fp->prev_free;
75 fp->prev_free->next_free = fp->next_free;
91 for (fp = __malloc_head.next_free; fp->a.type != ARENA_TYPE_HEAD
    [all...]
free.c 33 ah->next_free = __malloc_head.next_free;
35 __malloc_head.next_free = ah;
36 ah->next_free->prev_free = ah;
46 nah->next_free->prev_free = nah->prev_free;
47 nah->prev_free->next_free = nah->next_free;
malloc.h 51 struct free_arena_header *next_free, *prev_free; member in struct:free_arena_header
  /external/libdrm/intel/
mm.c 52 for (p = heap->next_free; p != heap; p = p->next_free) {
81 heap->next_free = block;
87 block->next_free = heap;
119 newblock->next_free = p->next_free;
121 p->next_free->prev_free = newblock;
122 p->next_free = newblock;
144 newblock->next_free = p->next_free;
    [all...]
mm.h 40 struct mem_block *next_free, *prev_free; member in struct:mem_block
  /external/mesa3d/src/gallium/auxiliary/util/
u_mm.c 58 for (p = heap->next_free; p != heap; p = p->next_free) {
89 heap->next_free = block;
95 block->next_free = heap;
128 newblock->next_free = p->next_free;
130 p->next_free->prev_free = newblock;
131 p->next_free = newblock;
152 newblock->next_free = p->next_free;
    [all...]
u_mm.h 39 struct mem_block *next_free, *prev_free; member in struct:mem_block
  /external/mesa3d/src/mesa/main/
mm.c 50 for(p = heap->next_free; p != heap; p = p->next_free) {
80 heap->next_free = block;
86 block->next_free = heap;
119 newblock->next_free = p->next_free;
121 p->next_free->prev_free = newblock;
122 p->next_free = newblock;
143 newblock->next_free = p->next_free;
    [all...]
mm.h 37 struct mem_block *next_free, *prev_free; member in struct:mem_block
  /external/syslinux/core/mem/
malloc.c 53 nfp->next_free = fp->next_free;
55 fp->next_free->prev_free = nfp;
56 fp->prev_free->next_free = nfp;
63 fp->next_free->prev_free = fp->prev_free;
64 fp->prev_free->next_free = fp->next_free;
80 for ( fp = head->next_free ; fp != head ; fp = fp->next_free ) {
176 nah->next_free->prev_free = nah->prev_free
    [all...]
free.c 42 ah->next_free = head->next_free;
44 head->next_free = ah;
45 ah->next_free->prev_free = ah;
56 nah->next_free->prev_free = nah->prev_free;
57 nah->prev_free->next_free = nah->next_free;
init.c 59 fp = head->next_free;
67 fp = fp->next_free;
83 fp->a.next = fp->a.prev = fp->next_free = fp->prev_free = fp;
malloc.h 71 struct free_arena_header *next_free, *prev_free; member in struct:free_arena_header
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
obstack.h 157 char *next_free; /* where to add next char to current object */
217 #define obstack_next_free(h) ((h)->next_free)
250 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
252 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
273 (unsigned) (__o->next_free - __o->object_base); })
278 (unsigned) (__o->chunk_limit - __o->next_free); })
284 if (__o->chunk_limit - __o->next_free < __len) \
292 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
300 if (__o->next_free + __len > __o->chunk_limit) \
302 memcpy (__o->next_free, where, __len);
156 char *next_free; \/* where to add next char to current object *\/ member in struct:obstack
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
obstack.h 170 char *next_free; /* where to add next char to current object */
261 #define obstack_next_free(h) ((h)->next_free)
292 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
294 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
315 (unsigned) (__o->next_free - __o->object_base); })
320 (unsigned) (__o->chunk_limit - __o->next_free); })
326 if (__o->chunk_limit - __o->next_free < __len) \
333 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
339 if (__o->next_free + __len > __o->chunk_limit) \
341 _obstack_memcpy (__o->next_free, (where), __len);
169 char *next_free; \/* where to add next char to current object *\/ member in struct:obstack
    [all...]
  /toolchain/binutils/binutils-2.27/include/
obstack.h 168 char *next_free; /* where to add next char to current object */ member in struct:obstack
236 #define obstack_next_free(h) ((void *) (h)->next_free)
269 #define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
271 #define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
288 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
295 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
309 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
319 memcpy (__o->next_free, where, __len); \
320 __o->next_free += __len; \
329 memcpy (__o->next_free, where, __len);
    [all...]
  /external/syslinux/com32/lib/
malloc.h 51 struct free_arena_header *next_free, *prev_free; member in struct:free_arena_header
  /bionic/linker/
linker_allocator.cpp 99 small_object_block_record* next_free = reinterpret_cast<small_object_block_record*>( local
101 next_free->next = block_record->next;
102 next_free->free_blocks_cnt = block_record->free_blocks_cnt - 1;
103 free_blocks_list_ = next_free;
  /toolchain/binutils/binutils-2.27/libiberty/
obstack.c 145 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
192 size_t obj_size = h->next_free - h->object_base;
233 h->next_free = h->object_base + obj_size;
288 h->object_base = h->next_free = (char *) (obj);
  /external/v8/src/
global-handles.cc 71 parameter_or_next_free_.next_free = NULL;
82 parameter_or_next_free_.next_free = *first_free;
222 Node* next_free() { function in class:v8::internal::GlobalHandles::Node
224 return parameter_or_next_free_.next_free;
228 parameter_or_next_free_.next_free = value;
382 Node* next_free; member in union:v8::internal::GlobalHandles::Node::__anon41021
479 parameter_or_next_free_.next_free = global_handles->first_free_;
569 first_free_ = result->next_free();
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
stabs.c 208 saved_string_obstack_end = notes.next_free;
346 if (saved_string_obstack_end == notes.next_free)
  /external/mesa3d/src/intel/vulkan/
anv_allocator.c 842 struct bo_pool_bo_link *next_free = next_free_void; local
843 *bo = VG_NOACCESS_READ(&next_free->bo);
845 assert(bo->map == next_free);
  /external/llvm/test/CodeGen/Thumb2/
2009-08-04-ScavengerAssert.ll 29 @next_free.4772 = external global i8** ; <i8***> [#uses=3]
259 store i8** %58, i8*** @next_free.4772, align 4
384 store i8** %78, i8*** @next_free.4772, align 4
402 store i8** %83, i8*** @next_free.4772, align 4

Completed in 2409 milliseconds

1 2 3