/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdlib/malloc-standard/ |
A D | malloc.c | 70 char* max_address = (char*)(av->top) + chunksize(av->top); in __do_check_chunk() 94 if (contiguous(av) && av->top != initial_top(av)) { in __do_check_chunk() 242 if (av->top == 0 || av->top == initial_top(av)) in __do_check_malloc_state() 246 assert((av->pagesize & (av->pagesize-1)) == 0); in __do_check_malloc_state() 279 b = bin_at(av,i); in __do_check_malloc_state() 323 assert(av->n_mmaps <= av->max_n_mmaps); in __do_check_malloc_state() 392 (av->n_mmaps < av->n_mmaps_max)) { in __malloc_alloc() 433 if (++av->n_mmaps > av->max_n_mmaps) in __malloc_alloc() 434 av->max_n_mmaps = av->n_mmaps; in __malloc_alloc() 730 p = av->top; in __malloc_alloc() [all …]
|
A D | free.c | 128 bin = bin_at(av,i); in malloc_init_state() 146 av->top = initial_top(av); in malloc_init_state() 194 clear_fastchunks(av); in __malloc_consolidate() 206 maxfb = &(av->fastbins[fastbin_index(av->max_fast)]); in __malloc_consolidate() 250 av->top = p; in __malloc_consolidate() 268 mstate av; in free() local 305 set_fastchunks(av); in free() 316 set_anychunks(av); in free() 367 av->top = p; in free() 390 __malloc_trim(av->top_pad, av); in free() [all …]
|
A D | mallinfo.c | 24 mstate av; in mallinfo() local 35 av = get_malloc_state(); in mallinfo() 37 if (av->top == 0) { in mallinfo() 38 __malloc_consolidate(av); in mallinfo() 44 avail = chunksize(av->top); in mallinfo() 62 b = bin_at(av, i); in mallinfo() 73 mi.arena = av->sbrked_mem; in mallinfo() 74 mi.hblks = av->n_mmaps; in mallinfo() 75 mi.hblkhd = av->mmapped_mem; in mallinfo() 77 mi.keepcost = chunksize(av->top); in mallinfo() [all …]
|
A D | mallopt.c | 24 mstate av; in mallopt() local 29 av = get_malloc_state(); in mallopt() 31 __malloc_consolidate(av); in mallopt() 36 set_max_fast(av, value); in mallopt() 42 av->trim_threshold = value; in mallopt() 47 av->top_pad = value; in mallopt() 52 av->mmap_threshold = value; in mallopt() 57 av->n_mmaps_max = value; in mallopt()
|
A D | realloc.c | 23 mstate av; in realloc() local 58 av = get_malloc_state(); in realloc() 78 if (next == av->top && in realloc() 82 av->top = chunk_at_offset(oldp, nb); in realloc() 83 set_head(av->top, (newsize - nb) | PREV_INUSE); in realloc() 89 else if (next != av->top && in realloc() 187 size_t pagemask = av->pagesize - 1; in realloc() 211 sum = av->mmapped_mem += newsize - oldsize; in realloc() 213 av->max_mmapped_mem = sum; in realloc() 214 sum += av->sbrked_mem; in realloc() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/elf/ |
A D | dl-support.c | 38 void internal_function _dl_aux_init (ElfW(auxv_t) *av); 39 void internal_function _dl_aux_init (ElfW(auxv_t) *av) in _dl_aux_init() argument 42 _dl_phdr = (ElfW(Phdr) *) av[AT_PHDR].a_un.a_val; in _dl_aux_init() 45 _dl_phnum = (size_t) av[AT_PHNUM].a_un.a_val; in _dl_aux_init() 48 _dl_pagesize = (av[AT_PAGESZ].a_un.a_val) ? (size_t) av[AT_PAGESZ].a_un.a_val : PAGE_SIZE; in _dl_aux_init()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/ |
A D | conf.c | 515 int main(int ac, char **av) in main() argument 517 const char *progname = av[0]; in main() 530 while ((opt = getopt_long(ac, av, "", long_opts, NULL)) != -1) in main() 533 while ((opt = getopt(ac, av, "asonymArD:S:ldh")) != -1) in main() 591 printf(_("%s: Kconfig file missing\n"), av[0]); in main() 595 name = av[optind]; in main()
|
A D | gconf.c | 1468 int main(int ac, char *av[]) in main() argument 1480 gtk_init(&ac, &av); in main() 1490 else if (av[0][0] == '/') in main() 1491 glade_file = g_strconcat(av[0], ".glade", NULL); in main() 1493 glade_file = g_strconcat(g_get_current_dir(), "/", av[0], ".glade", NULL); in main() 1496 if (ac > 1 && av[1][0] == '-') { in main() 1497 switch (av[1][1]) { in main() 1503 printf("%s <config>\n", av[0]); in main() 1506 name = av[2]; in main() 1508 name = av[1]; in main()
|
A D | kxgettext.c | 228 int main(int ac, char **av) in main() argument 230 conf_parse(av[1]); in main()
|
A D | qconf.cc | 1748 int main(int ac, char** av) in main() argument 1756 progname = av[0]; in main() 1757 configApp = new QApplication(ac, av); in main() 1758 if (ac > 1 && av[1][0] == '-') { in main() 1759 switch (av[1][1]) { in main() 1764 name = av[2]; in main() 1766 name = av[1]; in main()
|
A D | mconf.c | 1004 int main(int ac, char **av) in main() argument 1015 conf_parse(av[1]); in main()
|
A D | nconf.c | 1476 int main(int ac, char **av) in main() argument 1485 conf_parse(av[1]); in main()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/internals/ |
A D | __uClibc_main.c | 70 void internal_function _dl_aux_init (ElfW(auxv_t) *av);
|