Searched refs:val (Results 1 – 12 of 12) sorted by relevance
| /elf/ |
| A D | tst-piemod1.c | 12 int val = foo (); in do_test() local 13 if (val != 34) in do_test() 15 printf ("foo () returned %d\n", val); in do_test()
|
| A D | vismain.c | 48 int val; in do_test() local 53 val = protlocal () + calllocal1 () + calllocal2 (); in do_test() 54 if (val != 0x155) in do_test() 111 val = protinmod () + callinmod1 () + callinmod2 (); in do_test() 112 if (val != 0x15800) in do_test() 114 printf ("calling of `protinmod' leads to wrong result (%#x)\n", val); in do_test() 142 val = protitcpt () + getitcpt1 () () + getitcpt2 () () + getitcpt3 () (); in do_test() 143 if (val != 0x8440000) in do_test() 146 pointers to `protitcpt' in mod1 or mod2 or mod3 incorrect (%#x)\n", val); in do_test() 149 val = protitcpt () + callitcpt1 () + callitcpt2 () + callitcpt3 (); in do_test() [all …]
|
| A D | tst-env-setuid-tunables.c | 84 const char *val = getenv ("GLIBC_TUNABLES"); in test_child() local 87 if (val != NULL && strcmp (val, resultstrings[off]) == 0) in test_child() 90 if (val != NULL) in test_child() 91 printf ("[%d] Unexpected GLIBC_TUNABLES VALUE %s\n", off, val); in test_child() 95 if (val != NULL) in test_child()
|
| A D | unload6.c | 22 int val = fn (16); in main() local 23 if (val != 24) in main() 25 printf ("foo returned %d != 24\n", val); in main()
|
| A D | dl-tunables.c | 86 *val = &envline[len + 1]; in get_next_env() 100 tunable_num_t val, min, max; in do_tunable_update_val() local 111 val = valp->numval; in do_tunable_update_val() 134 cur->val.numval = val; in do_tunable_update_val() 145 tunable_val_t val; in tunable_initialize() local 150 val.strval = strval; in tunable_initialize() 363 && cur->val.strval == NULL) in __tunables_print() 372 (int) cur->val.numval, in __tunables_print() 378 (long int) cur->val.numval, in __tunables_print() 384 (size_t) cur->val.numval, in __tunables_print() [all …]
|
| A D | unload3.c | 33 int val = fn (16); in main() local 34 if (val != 24) in main() 36 printf ("bar returned %d != 24\n", val); in main()
|
| A D | unload5.c | 34 int val = fn (16); in main() local 35 if (val != 24) in main() 37 printf ("bar returned %d != 24\n", val); in main()
|
| A D | dl-tunable-types.h | 64 tunable_val_t val; /* The value. */ member
|
| A D | dl-sysdep.c | 342 const char *val = (char *) av->a_un.a_val; in _dl_show_auxv() local 345 val = _itoa ((unsigned long int) av->a_un.a_val, in _dl_show_auxv() 348 val = _itoa ((unsigned long int) av->a_un.a_val, in _dl_show_auxv() 351 _dl_printf ("AT_%s%s\n", auxvars[idx].label, val); in _dl_show_auxv() 361 const char *val = _itoa ((unsigned long int) av->a_type, in _dl_show_auxv() local 363 _dl_printf ("AT_??? (0x%s): 0x%s\n", val, val2); in _dl_show_auxv()
|
| A D | dl-tls.c | 574 dtv[map->l_tls_modid].pointer.val = TLS_DTV_UNALLOCATED; in _dl_allocate_tls_init() 594 dtv[map->l_tls_modid].pointer.val = dest; in _dl_allocate_tls_init() 692 return (struct dtv_pointer) { .val = aligned, .to_free = start }; in rtld_hidden_def() 700 if (result.val == NULL) in allocate_and_init() 704 memset (__mempcpy (result.val, map->l_tls_initimage, in allocate_and_init() 815 dtv[modid].pointer.val = TLS_DTV_UNALLOCATED; in _dl_update_slotinfo() 889 dtv[GET_ADDR_MODULE].pointer.val = p; in tls_get_addr_tail() 900 return (char *) result.val + GET_ADDR_OFFSET; in tls_get_addr_tail() 911 void *p = dtv[GET_ADDR_MODULE].pointer.val; in update_get_addr() 945 void *p = dtv[GET_ADDR_MODULE].pointer.val; in rtld_hidden_def() [all …]
|
| A D | dl-lookup.c | 1038 struct sym_val val = { NULL, NULL }; in _dl_debug_bindings() local 1050 do_lookup_x (undef_name, new_hash, &old_hash, *ref, &val, in _dl_debug_bindings() 1053 if (val.s != value->s || val.m != value->m) in _dl_debug_bindings() 1056 && val.s in _dl_debug_bindings() 1057 && __glibc_unlikely (ELFW(ST_BIND) (val.s->st_info) in _dl_debug_bindings() 1071 if (scope->r_list[n] == val.m) in _dl_debug_bindings() 1083 val = val2; in _dl_debug_bindings() 1124 (size_t) (val.s ? val.m->l_map_start : 0), in _dl_debug_bindings() 1126 (size_t) (val.s ? val.s->st_value : 0)); in _dl_debug_bindings()
|
| A D | elf.h | 571 #define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4) argument 572 #define ELF32_ST_TYPE(val) ((val) & 0xf) argument 576 #define ELF64_ST_BIND(val) ELF32_ST_BIND (val) argument 577 #define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val) argument 667 #define ELF32_R_SYM(val) ((val) >> 8) argument 668 #define ELF32_R_TYPE(val) ((val) & 0xff) argument
|
Completed in 30 milliseconds