HomeSort by relevance Sort by last modified time
    Searched full:next_free (Results 1 - 25 of 68) 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/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_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
  /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);
  /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-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.25/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...]
  /bionic/linker/
linker_allocator.cpp 82 small_object_block_record* next_free = reinterpret_cast<small_object_block_record*>( local
84 next_free->next = block_record->next;
85 next_free->free_blocks_cnt = block_record->free_blocks_cnt - 1;
86 free_blocks_list_ = next_free;
  /toolchain/binutils/binutils-2.25/libiberty/
obstack.c 176 h->next_free = h->object_base = chunk->contents;
222 h->next_free = h->object_base = chunk->contents;
244 register long obj_size = h->next_free - h->object_base;
291 h->next_free = h->object_base + obj_size;
352 h->object_base = h->next_free = (char *) (obj);
384 h->object_base = h->next_free = (char *) (obj);
  /external/opencv3/modules/core/test/
test_ds.cpp 1258 CvSetElem* next_free = first_free ? first_free->next_free : 0; local
1479 CvSetElem *first_free, *next_free; local
    [all...]
  /external/v8/src/
global-handles.cc 75 parameter_or_next_free_.next_free = NULL;
86 parameter_or_next_free_.next_free = *first_free;
253 Node* next_free() { function in class:v8::internal::GlobalHandles::Node
255 return parameter_or_next_free_.next_free;
259 parameter_or_next_free_.next_free = value;
414 Node* next_free; member in union:v8::internal::GlobalHandles::Node::__anon23705
511 parameter_or_next_free_.next_free = global_handles->first_free_;
601 first_free_ = result->next_free();
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
stabs.c 208 saved_string_obstack_end = notes.next_free;
346 if (saved_string_obstack_end == notes.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.9/aarch64-linux-android/lib64/
libgomp.a 239  : ;  : ; I8  : ;  (  : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .?: ; 'I@?B: ; I 4: ; I!??1"???B#??1$: ; I%4: ; I?<&4: ;I?<'.?: ; 'I<(.?: ;'<)*.?: ; 'I<P(?((,?P$,P,DPDGQG`c`h?P?HPP\hPh{P{??P?h{Q{?c???Q?|?P??P,???? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linux/tmp/5f456d13928ae03aa93ca31fef092e19/sysroot/usr/includealloc.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.hmalloc.h ".!!/>2<!=!L@<!!!Lchunk_size_ulltaskgroup_semwork_share_list_allocnext_queuegenerationhtabthreads_usedGNU C 4.9 20150123 (prerelease) -mbionic -fpic -mlittle-endian -mabi=lp64 -g -O2 -Os -fno-short-enumsGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizecallocawaitedtaskwaitgomp_work_sharework_share_chunkprev_tsbarrier/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/aarch64-linux-android/libgomplong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolwork_share_cancelledplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_varthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuereallocdatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamteam_idrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalsizeactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitgomp_malloc_clearednthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwaitin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tgomp_reallocschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripmalloclast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tgomp_mallocredundantend_ulltotalchildren__int128 unsignedrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_fatalgomp_mutex_tnext_taskgroup/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/alloc.cdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????x $,A ??A H?? ,<A ??A A?J?A?? ,4A ??A A?H?A?? .symtab.strtab.shstrtab.rela.text.data.bss.rodata.str1.1.rela.debug_info.debug_abbrev.debug_loc.rela.debug_aranges.rela.debug_line.debug_str.comment.note.GNU-stack.rela.debug_frame??  
584 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .: ;'I .?: ; '@?B4: ; I 4: ; I!??1"??#???B1$.?: ; 'I@?B%4: ; I?<&4: ;I?<'.?: ; n'I<(.?: ; '<).?: ; 'I<$P$'p??(0PDHpHPPPSp??,T?b? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linuxbarrier.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.h<built-in> ""1$/2""%!chunk_size_ulltaskgroup_semwork_share_list_allocnext_queuegeneration/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/barrier.chtabthreads_usedGNU C 4.9 20150123 (prerelease) -mbionic -fpic -mlittle-endian -mabi=lp64 -g -O2 -Os -fno-short-enumsGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizeawaitedtaskwait__emutls_get_addressgomp_work_sharework_share_chunkprev_tsbarrier/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/aarch64-linux-android/libgomplong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolGOMP_barrier_cancelgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolwork_share_cancelledplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_vargomp_team_barrier_wait_cancelgomp_team_barrier_waitthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuedatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamteam_idrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitnthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwait__builtin___emutls_get_addressin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripGOMP_barrierlast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tredundantend_ulltotalchildren__int128 unsignedrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_mutex_tnext_taskgroupdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????x 40A??B E
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/arm-linux-androideabi/lib/armv7-a/hard/
libgomp.a 173 chunk_size_ullwork_share_list_allocnext_queuegenerationhtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizecallocawaitedtaskwaitgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Bool/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/hard/libgompplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_varthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuereallocdatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalsizeactive_levelGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mfloat-abi=hard -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumstask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitgomp_malloc_clearednthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwaitin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tgomp_reallocschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripmalloclast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tgomp_mallocredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_fatalgomp_mutex_tnext_taskgroup/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/alloc.cdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????| (B??(0B??X(B??A4aeabi*7-A
345 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .: ;'I .?: ; '@?B4: ; I 4: ; I!??1"???B1#.?: ; 'I@?B$4: ; I?<%4: ;I?<&.?: ; n'I<'.?: ; '<(.?: ; 'I< P 'p??<DpDHPHKp??P?b? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linuxbarrier.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.h<built-in>,0iM/-O,0P-chunk_size_ullwork_share_list_allocnext_queuegeneration/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/barrier.chtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizeawaitedtaskwait__emutls_get_addressgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolGOMP_barrier_cancelgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Bool/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/hard/libgompplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_vargomp_team_barrier_wait_cancelgomp_team_barrier_waitthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuedatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalactive_levelGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mfloat-abi=hard -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumstask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitnthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwait__builtin___emutls_get_addressin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripGOMP_barrierlast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_mutex_tnext_taskgroupdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????| ,D??N??,$D??F??A4aeabi*7-A
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/arm-linux-androideabi/lib/armv7-a/
libgomp.a 170 chunk_size_ullwork_share_list_allocnext_queuegenerationhtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroup/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/libgompgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizecallocawaitedtaskwaitgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_varthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuereallocdatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mfloat-abi=soft -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumsteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalsizeactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitgomp_malloc_clearednthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwaitin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tgomp_reallocschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripmalloclast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tgomp_mallocredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_fatalgomp_mutex_tnext_taskgroup/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/alloc.cdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????| (B??(0B??X(B??A.aeabi$7-A
341 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .: ;'I .?: ; '@?B4: ; I 4: ; I!??1"???B1#.?: ; 'I@?B$4: ; I?<%4: ;I?<&.?: ; n'I<'.?: ; '<(.?: ; 'I< P 'p??<DpDHPHKp??P?b? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linuxbarrier.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.h<built-in>,0iM/-O,0P-chunk_size_ullwork_share_list_allocnext_queuegeneration/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/barrier.chtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroup/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/libgompgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizeawaitedtaskwait__emutls_get_addressgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolGOMP_barrier_cancelgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_vargomp_team_barrier_wait_cancelgomp_team_barrier_waitthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuedatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mfloat-abi=soft -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumsteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ullGOMP_TASK_IMPLICITdefault_device_varawaited_finalactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitnthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwait__builtin___emutls_get_addressin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripGOMP_barrierlast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_mutex_tnext_taskgroupdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????| ,D??N??,$D??F??A.aeabi$7-A
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/arm-linux-androideabi/lib/armv7-a/thumb/hard/
libgomp.a 164  : ;  : ; I8  : ;  (  : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .?: ; 'I@?B: ; I 4: ; I!??1"???B#??1$: ; I%4: ; I?<&4: ;I?<'.?: ; 'I<(.?: ;'<)*.?: ; 'I<PT?P? PP$P$'Q'6T6<?P?(,P4<P<CPCX?P?<CQCRTRX?Q?DHPPXPX??? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linux/tmp/a24beac16e1a563f55ec836777180cd1/sysroot/usr/includealloc.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.hmalloc.h" !/!ZN !K!ZN !/!Zchunk_size_ullwork_share_list_allocnext_queuegenerationhtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizecallocawaitedtaskwaitgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_varthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuereallocdatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ull/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/thumb/hard/libgompGOMP_TASK_IMPLICITdefault_device_varawaited_finalsizeactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitgomp_malloc_clearednthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mthumb -mfloat-abi=hard -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumsordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwaitin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tgomp_reallocschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripmalloclast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tgomp_mallocredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_fatalgomp_mutex_tnext_taskgroup/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/alloc.cdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????| A?? A??<A??A4aeabi*7-A
346 : ; I8  : ;  ( : ; I8  : ;  I : ; I : ;  I8 I!I : ; : ;I8  : ;I8< : ; : ; : ;I8 !I/ .: ;'I .?: ; '@?B4: ; I 4: ; I!??1"???B1#.?: ; 'I@?B$4: ; I?<%4: ;I?<&.?: ; n'I<'.?: ; '<(.?: ; 'I< Pp?? P*0p02P25p??<?b? /Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/gcc/include/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/config/linuxbarrier.cstddef.hsem.hmutex.hbar.hptrlock.hlibgomp.h<built-in>"M#!-k"B-chunk_size_ullwork_share_list_allocnext_queuegeneration/Volumes/Android/buildbot/src/android/gcc/toolchain/build/../gcc/gcc-4.9/libgomp/barrier.chtabthreads_usedteam_idGFS_RUNTIMEgomp_dependers_vecunsigned intnextGOMP_TASK_WAITINGnum_childrengomp_ptrlock_ttaskgroupgomp_task_kindlevelgomp_global_icvplace_partition_lentarget_dataGOMP_TASK_TIEDmodeordered_releaseprevchunk_sizeawaitedtaskwait__emutls_get_addressgomp_work_sharework_share_chunkprev_tsbarrierwork_share_cancelledlong long unsigned inttask_lockkinddyn_varmaster_releasesingle_countGFS_AUTOthread_poolGOMP_barrier_cancelgomp_tls_datanext_ulltask_queued_countprev_taskgroupgomp_thread_pooltarget_mem_descsize_tordered_num_usedinline_ordered_team_idswork_shares_to_free_Boolplace_partition_offgomp_taskwork_sharesGFS_GUIDEDis_inincrnthreads_vargomp_team_barrier_wait_cancelgomp_team_barrier_waitthreads_completednext_childelemchargomp_schedule_typegomp_threadprev_queuedatadepend_hashteam_cancelledbind_varthreads_sizegomp_task_depend_entryteamrun_sched_varnum_dependeeslong long inttask_queuelockin_depend_waittasklast_work_shareimplicit_taskincr_ull/Volumes/Android/buildbot/tmp/build/toolchain/gcc-4.9/arm-linux-androideabi/armv7-a/thumb/hard/libgompGOMP_TASK_IMPLICITdefault_device_varawaited_finalactive_leveltask_running_countcancellednext_wstaskwait_semcopyprivategomp_team_statein_taskwaitnthreadsparentordered_curshort intgomp_teamthreads_docklong intallocatedn_dependin_tied_taskfn_datathreadscopy_ctors_doneGNU C 4.9 20150123 (prerelease) -mbionic -fpic -march=armv7-a -mthumb -mfloat-abi=hard -mfpu=vfp -mtls-dialect=gnu -g -O2 -Os -fno-short-enumsordered_team_idslast_parent_depends_ongomp_task_icvthread_limit_vardepend_countsizetypeordered_ownerlong unsigned intnext_allocprev_childgomp_taskwait__builtin___emutls_get_addressin_taskgroup_waittask_countunsigned charparent_depends_onplacegomp_taskgroupwork_sharegomp_sem_tschednext_freedependaddrwork_share_list_freen_elemGOMP_TASK_IFFALSEstatic_tripGOMP_barrierlast_teamsigned charshort unsigned intreleaseredundant_outgomp_barrier_tredundantend_ulltotalchildrentaskgroup_semrun_sched_modifierGFS_STATICfinal_taskthreads_busyGFS_DYNAMICgomp_mutex_tnext_taskgroupdependersnest_varGCC: (GNU) 4.9 20150123 (prerelease) ????|  B??H
    [all...]

Completed in 781 milliseconds

1 2 3