Searched refs:alloc (Results 1 - 9 of 9) sorted by relevance

/ndk/sources/host-tools/ndk-stack/elff/
H A Delf_alloc.cc34 void* ElfAllocator::alloc(size_t size) { function in class:ElfAllocator
61 return elf->allocator()->alloc(size);
H A Delf_alloc.h39 * without having to adjust alignment of the blocks, returned from alloc()
95 void* alloc(size_t size);
/ndk/sources/host-tools/sed-4.2.1/sed/
H A Dexecute.c92 size_t alloc; /* Allocated space for active. */
217 if (inactive > lb->alloc * 2)
220 lb->alloc += lb->active - lb->text;
224 if (lb->alloc > len)
228 lb->alloc *= 2;
229 if (lb->alloc < len)
230 lb->alloc = len;
231 if (lb->alloc < INITIAL_BUFFER_SIZE)
232 lb->alloc = INITIAL_BUFFER_SIZE;
234 lb->text = REALLOC(lb->text, inactive + lb->alloc, cha
91 size_t alloc; /* Allocated space for active. */ member in struct:line
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dregex_internal.c974 set->alloc = size;
986 set->alloc = 1;
991 set->alloc = set->nelem = 0;
1002 set->alloc = 2;
1035 dest->alloc = dest->nelem;
1036 dest->elems = re_malloc (Idx, dest->alloc);
1039 dest->alloc = dest->nelem = 0;
1051 Note: We assume dest->elems is NULL, when dest->alloc is 0. */
1064 if (src1->nelem + src2->nelem + dest->nelem > dest->alloc)
1066 Idx new_alloc = src1->nelem + src2->nelem + dest->alloc;
[all...]
H A Dregex_internal.h227 Idx alloc; member in struct:__anon164
561 Idx alloc; member in struct:re_state_table_entry
570 Idx alloc; member in struct:__anon169
655 Idx alloc; member in struct:re_fail_stack_t
H A Dregexec.c1399 if (fs->num == fs->alloc)
1403 * fs->alloc * 2));
1406 fs->alloc *= 2;
1459 fs->stack = re_malloc (struct re_fail_stack_ent_t, fs->alloc);
1867 if (!state->inveclosure.alloc)
2938 if (BE (path->alloc < last_str + mctx->max_mb_elem_len + 1, 0))
2941 Idx old_alloc = path->alloc;
2950 path->alloc = new_alloc;
2952 sizeof (re_dfastate_t *) * (path->alloc - old_alloc));
H A Dregcomp.c3006 if *alloc == 0. */
3194 /* Use realloc since array is NULL if *alloc == 0. */
3473 /* Use realloc since the array is NULL if *alloc == 0. */
3526 /* Use realloc since array is NULL if *alloc == 0. */
3592 Idx alloc = 0;
3623 mbcset, &alloc,
3583 Idx alloc = 0; local
/ndk/sources/cxx-stl/stlport/src/
H A Dsparc_atomic.s1 .section ".text",#alloc,#execinstr
H A Dsparc_atomic64.s1 .section ".text",#alloc,#execinstr

Completed in 80 milliseconds