Searched refs:reloc_target_flags (Results 1 - 7 of 7) sorted by relevance

/openbsd-current/libexec/ld.so/aarch64/
H A Drtld_machine.c53 static const int reloc_target_flags[] = { variable
72 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
73 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
74 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
75 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
76 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
77 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
134 if (type >= nitems(reloc_target_flags) ||
135 (reloc_target_flags[type] & _RF_V) == 0)
/openbsd-current/libexec/ld.so/i386/
H A Drtld_machine.c102 static const int reloc_target_flags[] = { variable
129 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
130 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
131 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
132 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
133 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
134 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
136 ((t) >= nitems(reloc_target_flags) || (reloc_target_flags[t] & _RF_E))
/openbsd-current/libexec/ld.so/amd64/
H A Drtld_machine.c102 static const int reloc_target_flags[] = { variable
129 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
130 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
131 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
132 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
133 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
134 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
136 ((t) >= nitems(reloc_target_flags) || (reloc_target_flags[t] & _RF_E))
/openbsd-current/libexec/ld.so/riscv64/
H A Drtld_machine.c54 static const int reloc_target_flags[] = { variable
71 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
72 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
73 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
74 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
75 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
76 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
133 if (type >= nitems(reloc_target_flags) ||
134 (reloc_target_flags[type] & _RF_V) == 0)
/openbsd-current/libexec/ld.so/arm/
H A Drtld_machine.c53 static const int reloc_target_flags[] = { variable
99 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
100 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
101 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
102 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
103 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
104 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
197 if (reloc_target_flags[type] & _RF_E)
/openbsd-current/libexec/ld.so/sh/
H A Drtld_machine.c54 static const int reloc_target_flags[] = { variable
223 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
224 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
225 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
226 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
227 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
228 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)
230 ((t) >= nitems(reloc_target_flags) || (reloc_target_flags[t] & _RF_E))
/openbsd-current/libexec/ld.so/sparc64/
H A Drtld_machine.c103 static const int reloc_target_flags[] = { variable
163 #define RELOC_RESOLVE_SYMBOL(t) ((reloc_target_flags[t] & _RF_S) != 0)
164 #define RELOC_PC_RELATIVE(t) ((reloc_target_flags[t] & _RF_P) != 0)
165 #define RELOC_BASE_RELATIVE(t) ((reloc_target_flags[t] & _RF_B) != 0)
166 #define RELOC_UNALIGNED(t) ((reloc_target_flags[t] & _RF_U) != 0)
167 #define RELOC_USE_ADDEND(t) ((reloc_target_flags[t] & _RF_A) != 0)
168 #define RELOC_TARGET_SIZE(t) ((reloc_target_flags[t] >> 8) & 0xff)
169 #define RELOC_VALUE_RIGHTSHIFT(t) (reloc_target_flags[t] & 0xff)

Completed in 205 milliseconds