Searched refs:index (Results 1 – 6 of 6) sorted by relevance
/elf/ |
A D | loadtest.c | 38 int index; member 109 int index = tests[nr].index; in main() local 114 if (testobjs[index].handle == NULL) in main() 119 testobjs[index].handle = dlopen (testobjs[index].name, in main() 121 if (testobjs[index].handle == NULL) in main() 123 testobjs[index].name, dlerror ()); in main() 130 tests[nr].fname, testobjs[index].name, dlerror ()); in main() 135 testobjs[index].name, testobjs[index].handle); in main() 139 if (dlclose (testobjs[index].handle) != 0) in main() 146 testobjs[index].name, testobjs[index].handle); in main() [all …]
|
A D | tst-dl-hwcaps_split.c | 30 size_t index = 0; in check_split_masked() local 33 TEST_VERIFY_EXIT (index < expected_length); in check_split_masked() 34 TEST_COMPARE_BLOB (expected[index], strlen (expected[index]), in check_split_masked() 36 ++index; in check_split_masked() 38 TEST_COMPARE (index, expected_length); in check_split_masked() 47 size_t index = 0; in check_split() local 50 TEST_VERIFY_EXIT (index < expected_length); in check_split() 51 TEST_COMPARE_BLOB (expected[index], strlen (expected[index]), in check_split() 53 ++index; in check_split() 55 TEST_COMPARE (index, expected_length); in check_split()
|
A D | dl-diagnostics.c | 185 unsigned int index = 0; in print_environ() local 192 unfiltered ? "" : "_filtered", index); in print_environ() 198 ++index; in print_environ() 210 unsigned int index = 0; in print_paths() local 215 _dl_printf ("path.system_dirs[0x%x]=", index); in print_paths() 218 ++index; in print_paths()
|
A D | dl-cache.c | 161 glibc_hwcaps_priority (uint32_t index) in glibc_hwcaps_priority() argument 170 if (index < glibc_hwcaps_priorities_length) in glibc_hwcaps_priority() 171 return glibc_hwcaps_priorities[index]; in glibc_hwcaps_priority() 189 size_t index) in _dl_cache_file_entry() argument 191 return (const void *) libs + index * entry_size; in _dl_cache_file_entry()
|
A D | stringtable.c | 111 uint32_t index = hash & (table->allocated - 1); in stringtable_add() local 112 e->next = table->entries[index]; in stringtable_add() 113 table->entries[index] = e; in stringtable_add()
|
A D | cache.c | 279 uint32_t index = (uint32_t) entry->hwcap; in glibc_hwcaps_string() local 280 if (index < ext->sections[cache_extension_tag_glibc_hwcaps].size / 4) in glibc_hwcaps_string() 282 uint32_t string_table_index = hwcaps_array[index]; in glibc_hwcaps_string()
|
Completed in 10 milliseconds