Lines Matching refs:FUNC
11 static inline bool FUNC(patch_vdso)(const char *path, void *vdso) in FUNC() function
21 shdrs = vdso + FUNC(swap_uint)(ehdr->e_shoff); in FUNC()
26 shstrtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
45 dyn = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
74 while (FUNC(swap_uint)(dyn->d_tag) != DT_NULL) { in FUNC()
75 switch (FUNC(swap_uint)(dyn->d_tag)) { in FUNC()
80 local_gotno = FUNC(swap_uint)(dyn->d_un.d_val); in FUNC()
87 symtabno = FUNC(swap_uint)(dyn->d_un.d_val); in FUNC()
95 gotsym = FUNC(swap_uint)(dyn->d_un.d_val); in FUNC()
113 static inline bool FUNC(get_symbols)(const char *path, void *vdso) in FUNC() function
124 shdrs = vdso + FUNC(swap_uint)(ehdr->e_shoff); in FUNC()
151 symtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
152 st_entsize = FUNC(swap_uint)(shdr->sh_entsize); in FUNC()
153 st_count = FUNC(swap_uint)(shdr->sh_size) / st_entsize; in FUNC()
157 strtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
169 offset = FUNC(swap_uint)(sym->st_value); in FUNC()