Searched refs:e (Results 1 – 9 of 9) sorted by relevance
| /elf/ |
| A D | stringtable.c | 66 for (struct stringtable_entry *e = table->entries[i]; e != NULL; ) in stringtable_rehash() local 69 uint32_t hash = fnv1a (e->string, e->length); in stringtable_rehash() 73 e = next; in stringtable_rehash() 96 e != NULL; e = e->next) in stringtable_add() 98 return e; in stringtable_add() 115 e->offset = 0; in stringtable_add() 117 return e; in stringtable_add() 165 e = e->next) in stringtable_finalize() 205 for (struct stringtable_entry *e = table->entries[i]; e != NULL; in stringtable_finalize() local 206 e = e->next) in stringtable_finalize() [all …]
|
| A D | stringtable_free.c | 25 for (struct stringtable_entry *e = table->entries[i]; e != NULL; ) in stringtable_free() local 27 struct stringtable_entry *next = e->next; in stringtable_free() 28 free (e); in stringtable_free() 29 e = next; in stringtable_free()
|
| A D | tst-thrlock.c | 38 int e = pthread_create (&th[i], NULL, tf, NULL); in do_test() local 39 if (e != 0) in do_test() 41 printf ("pthread_create failed with %d (%s)\n", e, strerror (e)); in do_test() 48 int e = pthread_join (th[i], &res); in do_test() local 49 if (e != 0 || res != NULL) in do_test()
|
| A D | dso-sort-tests-1.def | 14 tst-dso-ordering2: a->b->[cd]->e 15 output: e>d>c>b>a>{}<a<b<c<d<e 19 output: i>h>g>f>e>d>c>b>a>{}<a<b<c<d<e<f<g<h<i 23 tst-dso-ordering4: a->b->[de];a->c->d->e 24 output: e>d>c>b>a>{}<a<b<c<d<e 32 output: f>e>d>c>b>a>{}<a<b<c<d<e<f 37 output: f>e>d>c>b>a>{}<a<b<c<d<e<f 48 output: e>d>c>b>a>{}<a<b<c<d<e 64 tst-bz15311: {+a;+e;+f;+g;+d;%d;-d;-g;-f;-e;-a};a->b->c->d;d=>[ba];c=>a;b=>e=>a;c=>f=>b;d=>g=>c 65 …c_sort=1): {+a[d>c>b>a>];+e[e>];+f[f>];+g[g>];+d[];%d(b(e(a()))a()g(c(a()f(b(e(a()))))));-d[];-g[]… [all …]
|
| A D | tst-stringtable.c | 42 struct stringtable_entry *e = stringtable_add (&s, ""); in do_test() local 43 TEST_COMPARE_STRING (e->string, ""); in do_test() 44 TEST_COMPARE (e->length, 0); in do_test() 49 TEST_COMPARE (e->offset, 0); in do_test() 59 struct stringtable_entry *e = stringtable_add (&s, "name"); in do_test() local 60 TEST_COMPARE_STRING (e->string, "name"); in do_test() 61 TEST_COMPARE (e->length, 4); in do_test() 66 TEST_COMPARE (e->offset, 0); in do_test()
|
| A D | link.h | 31 #define _ElfW(e,w,t) _ElfW_1 (e, w, _##t) argument 32 #define _ElfW_1(e,w,t) e##w##t argument
|
| A D | dl-diagnostics.c | 212 for (const char *e = system_dirs; *e != '\0'; ) in print_paths() local 214 size_t len = strlen (e); in print_paths() 216 print_string_length (e, len); in print_paths() 219 e += len + 1; in print_paths()
|
| A D | pldd-xx.c | 22 #define EW_(e, w, t) EW__(e, w, _##t) argument 23 #define EW__(e, w, t) e##w##t argument
|
| A D | ldconfig.c | 412 struct dirent64 *e = readdir64 (dir); in add_glibc_hwcaps_subdirectories() local 413 if (e == NULL) in add_glibc_hwcaps_subdirectories() 425 if (e->d_name[0] == '.' || e->d_type == DT_REG in add_glibc_hwcaps_subdirectories() 426 || strchr (e->d_name, ':') != NULL) in add_glibc_hwcaps_subdirectories() 431 if (fstatat64 (dirfd (dir), e->d_name, &st, 0) < 0) in add_glibc_hwcaps_subdirectories() 443 entry->path, e->d_name) < 0) in add_glibc_hwcaps_subdirectories() 449 new_entry->hwcaps = new_glibc_hwcaps_subdirectory (e->d_name); in add_glibc_hwcaps_subdirectories()
|
Completed in 9 milliseconds