Searched refs:base (Results 1 – 9 of 9) sorted by relevance
/elf/ |
A D | dl-debug.c | 44 if (r->base.r_map == NULL) in _dl_debug_update() 45 atomic_store_release (&r->base.r_map, in _dl_debug_update() 47 return &r->base; in _dl_debug_update() 64 _r_debug_extended.base.r_version = 1; in _dl_debug_initialize() 69 if (r->base.r_brk == 0) in _dl_debug_initialize() 81 r->base.r_version = 2; in _dl_debug_initialize() 85 if (r->base.r_brk == 0) in _dl_debug_initialize() 90 r->base.r_ldbase = ldbase ?: _r_debug_extended.base.r_ldbase; in _dl_debug_initialize() 95 if (r->base.r_map == NULL) in _dl_debug_initialize() 96 atomic_store_release (&r->base.r_map, in _dl_debug_initialize() [all …]
|
A D | tst-dlmopen4.c | 53 TEST_COMPARE (debug->base.r_version, 1); in do_test() 59 TEST_COMPARE (debug->base.r_version, 2); in do_test() 62 TEST_VERIFY_EXIT (debug->r_next->base.r_map != NULL); in do_test() 63 TEST_VERIFY_EXIT (debug->r_next->base.r_map->l_name != NULL); in do_test() 64 const char *name = basename (debug->r_next->base.r_map->l_name); in do_test()
|
A D | multiload.c | 17 char *base; in main() local 30 base = basename (wd); in main() 31 buf = alloca (strlen (wd) + strlen (base) + 5 + sizeof "testobj1.so"); in main() 41 stpcpy (stpcpy (stpcpy (buf, "../"), base), "/testobj1.so"); in main() 59 stpcpy (stpcpy (stpcpy (stpcpy (buf, wd), "/../"), base), "/testobj1.so"); in main()
|
A D | tst-ldconfig-bad-aux-cache.c | 51 fpath, ftwbuf->base, fpath + ftwbuf->base); in display_info()
|
A D | dl-misc.c | 450 int base = 10; in _dl_strtoul() local 456 base = 16; in _dl_strtoul() 461 base = 8; in _dl_strtoul() 471 else if (base == 16) in _dl_strtoul() 483 if (result >= (UINT64_MAX - digval) / base) in _dl_strtoul() 489 result *= base; in _dl_strtoul()
|
A D | dl-minimal.c | 215 _itoa (unsigned long long int value, char *buflim, unsigned int base, in rtld_hidden_weak() 221 *--buflim = _itoa_lower_digits[value % base]; in rtld_hidden_weak() 222 while ((value /= base) != 0); in rtld_hidden_weak()
|
A D | link.h | 76 struct r_debug base; member
|
A D | dl-cache.c | 114 const uint32_t *left = ext.sections[cache_extension_tag_glibc_hwcaps].base; in glibc_hwcaps_priorities_init()
|
A D | cache.c | 276 = ext->sections[cache_extension_tag_glibc_hwcaps].base; in glibc_hwcaps_string() 303 if (ext->sections[cache_extension_tag_generator].base != NULL) in print_extensions() 306 fwrite (ext->sections[cache_extension_tag_generator].base, 1, in print_extensions()
|
Completed in 12 milliseconds