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

1 2 3 4

  /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/chromium_org/third_party/mesa/src/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_slab.c 37 struct util_slab_block *next_free; member in struct:util_slab_block
66 block->next_free = util_slab_get_block(pool, page, i+1);
71 block->next_free = pool->first_free;
90 pool->first_free = block->next_free;
102 block->next_free = pool->first_free;
u_mm.h 39 struct mem_block *next_free, *prev_free; member in struct:mem_block
  /external/chromium_org/third_party/mesa/src/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/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_slab.c 37 struct util_slab_block *next_free; member in struct:util_slab_block
66 block->next_free = util_slab_get_block(pool, page, i+1);
71 block->next_free = pool->first_free;
90 pool->first_free = block->next_free;
102 block->next_free = pool->first_free;
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
  /hardware/intel/img/libdrm/libdrm/intel/
mm.c 48 for(p = heap->next_free; p != heap; p = p->next_free) {
78 heap->next_free = block;
84 block->next_free = heap;
117 newblock->next_free = p->next_free;
119 p->next_free->prev_free = newblock;
120 p->next_free = newblock;
141 newblock->next_free = p->next_free;
    [all...]
mm.h 36 struct mem_block *next_free, *prev_free; member in struct:mem_block
  /external/bison/lib/
obstack.h 155 char *next_free; /* where to add next char to current object */
220 #define obstack_next_free(h) ((h)->next_free)
253 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
255 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
276 (unsigned) (__o->next_free - __o->object_base); })
281 (unsigned) (__o->chunk_limit - __o->next_free); })
287 if (__o->chunk_limit - __o->next_free < __len) \
295 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
303 if (__o->next_free + __len > __o->chunk_limit) \
305 memcpy (__o->next_free, where, __len);
154 char *next_free; \/* where to add next char to current object *\/ member in struct:obstack
    [all...]
obstack.c 177 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
225 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
248 register long obj_size = h->next_free - h->object_base;
303 h->next_free = h->object_base + obj_size;
364 h->object_base = h->next_free = (char *) (obj);
  /ndk/sources/host-tools/sed-4.2.1/lib/
obstack.h 155 char *next_free; /* where to add next char to current object */
220 #define obstack_next_free(h) ((h)->next_free)
253 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = (achar))
255 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
276 (unsigned) (__o->next_free - __o->object_base); })
281 (unsigned) (__o->chunk_limit - __o->next_free); })
287 if (__o->chunk_limit - __o->next_free < __len) \
295 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
303 if (__o->next_free + __len > __o->chunk_limit) \
305 memcpy (__o->next_free, where, __len);
154 char *next_free; \/* where to add next char to current object *\/ member in struct:obstack
    [all...]
obstack.c 179 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
227 h->next_free = h->object_base = __PTR_ALIGN ((char *) chunk, chunk->contents,
250 register long obj_size = h->next_free - h->object_base;
305 h->next_free = h->object_base + obj_size;
366 h->object_base = h->next_free = (char *) (obj);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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-linux-glibc2.11-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...]
  /external/chromium_org/v8/src/
global-handles.cc 69 parameter_or_next_free_.next_free = NULL;
79 parameter_or_next_free_.next_free = *first_free;
198 Node* next_free() { function in class:v8::internal::GlobalHandles::Node
200 return parameter_or_next_free_.next_free;
204 parameter_or_next_free_.next_free = value;
294 Node* next_free; member in union:v8::internal::GlobalHandles::Node::__anon21081
391 parameter_or_next_free_.next_free = global_handles->first_free_;
456 first_free_ = result->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
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/aarch64-linux-android/lib64/
libgomp.a 274 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8 : ;I8 !I/  : ;.: ;'I .?: ; '@?B4: ; I4: ; I1X Y  ??1!???B1"4: ; I?<#4: ;I?<$.?: ; 'I<%.?: ; '<$P$'p??(0P,0?J?? /tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/config/linux/tmp/toolchain-build-aarch64-linux-4.8/prefix/sysroot/usr/includebarrier.clibgomp.hpthread.hconfig/linux/sem.hconfig/linux/mutex.hconfig/linux/bar.hconfig/linux/ptrlock.h 6 ? ?}     ordered_releasekindgomp_sem_tincrwork_share_list_allocGFS_AUTOgenerationsigned chargomp_task_kindtask_running_countordered_curchunk_size_ulltaskwait_semsizetypetask_queue/private/tmp/toolchain-build-aarch64-linux-4.8/gcc-4.8/aarch64-linux-android/libgompprev_childthreads_dockmodegomp_team_statework_sharespthread_getspecificmaster_releaseinline_ordered_team_idsparentgomp_threadgomp_global_icvtaskprev_queuenthreadsstatic_tripcopyprivategomp_ptrlock_tGFS_DYNAMICbarriernext_childgomp_barrier_tlong long intgomp_teamlong intnext_wsgomp_thread_poolactive_levelGFS_GUIDEDchildrenrun_sched_modifierfinal_taskGFS_RUNTIMEnext_queueunsigned charreleasework_sharerun_sched_varsingle_countshort intnthreads_varwork_share_list_freepthread_key_tdyn_varlong long unsigned intgomp_schedule_typenest_varunsigned intgomp_team_barrier_waitGNU C 4.8 -mbionic -fpic -g -O2 -Os -ftls-model=initial-exec -fno-short-enumslong unsigned intincr_ulltask_lockGOMP_TASK_TIEDthreads_usedgomp_taskordered_team_idsGFS_STATICthreads_completedcharlockshort unsigned intimplicit_task_Bool/tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/barrier.cdatawork_share_chunkfn_datagomp_tls_keyGOMP_TASK_WAITINGGOMP_TASK_IFFALSEnext_allocchunk_sizeleveltask_countGOMP_barriergomp_mutex_tGOMP_TASK_IMPLICITnext_freethreads_sizeschedgomp_work_sharethread_poolteamgomp_task_icvthreadstotallast_work_shareordered_ownerprev_tsin_taskwaitin_tied_tasklast_teamteam_idend_ullnextnext_ullawaitedordered_num_usedGCC: (GNU) 4.8 ????| 40B??B L
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/arm-linux-androideabi/lib/armv7-a/
libgomp.a 221 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8 : ;I8 !I/  : ;.: ;'I .?: ; '@4: ; I4: ; I1X Y 4: ; I?<!4: ;I?<,2 ? /tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/tmp/toolchain-build-linux-4.8/prefix/sysroot/usr/include/tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/config/linuxbarrier.clibgomp.hpthread.hsem.hmutex.hbar.hptrlock.h?.?}f1M/-ordered_releasekindgomp_sem_tincrwork_share_list_allocGFS_AUTOgenerationsigned chargomp_task_kindtask_running_countordered_curchunk_size_ulltaskwait_semsizetypetask_queuetaskprev_childthreads_dockmodegomp_team_statework_sharesmaster_releaseinline_ordered_team_idsparentgomp_threadgomp_global_icvprev_queuenthreadsstatic_tripcopyprivategomp_ptrlock_tGFS_DYNAMICbarriernext_childgomp_barrier_tlong long intgomp_teamlong intnext_wsgomp_thread_poolactive_levelGFS_GUIDEDchildren/private/tmp/toolchain-build-linux-4.8/gcc-4.8/arm-linux-androideabi/armv7-a/libgomprun_sched_modifierfinal_taskGFS_RUNTIMEnext_queueunsigned charreleasework_sharerun_sched_varsingle_countshort intnthreads_varwork_share_list_freepthread_key_tdyn_varlong long unsigned intgomp_schedule_typenest_varunsigned intlong unsigned intincr_ulltask_lockGOMP_TASK_TIEDthreads_usedgomp_taskordered_team_idsGFS_STATICthreads_completedcharlockshort unsigned intimplicit_task_Bool/tmp/AOSP-toolchain/build/../gcc/gcc-4.8/libgomp/barrier.cdatawork_share_chunkfn_datagomp_tls_keyGOMP_TASK_WAITINGGOMP_TASK_IFFALSEnext_allocchunk_sizeleveltask_countGOMP_barriergomp_mutex_tGOMP_TASK_IMPLICITnext_freethreads_sizeschedgomp_work_sharethread_poolteamgomp_task_icvthreadstotallast_work_shareordered_ownerprev_tsin_taskwaitin_tied_taskGNU C 4.8 -mbionic -fpic -march=armv7-a -mfloat-abi=soft -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -ftls-model=initial-exec -fno-short-enumslast_teamteam_idend_ullnextnext_ullawaitedordered_num_usedGCC: (GNU) 4.8A.aeabi$7-A
    [all...]

Completed in 1959 milliseconds

1 2 3 4