Home | History | Annotate | Download | only in libdwfl

Lines Matching refs:NN

715 #define AUXV_SCAN(NN, BL) do                                            \
717 const Elf##NN##_auxv_t *av = auxv; \
720 const char *typep = auxv + i * sizeof (Elf##NN##_auxv_t); \
721 typep += offsetof (Elf##NN##_auxv_t, a_type); \
722 uint##NN##_t type = READ_AUXV##NN (typep); \
723 const char *valp = auxv + i * sizeof (Elf##NN##_auxv_t); \
724 valp += offsetof (Elf##NN##_auxv_t, a_un.a_val); \
725 uint##NN##_t val = BL##NN (READ_AUXV##NN (valp)); \
726 if (type == BL##NN (AT_ENTRY)) \
728 else if (type == BL##NN (AT_PHDR)) \
730 else if (type == BL##NN (AT_PHNUM)) \
732 else if (type == BL##NN (AT_PHENT)) \
734 else if (type == BL##NN (AT_PAGESZ)) \