Searched refs:n_desc (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/EXTERNAL_HEADERS/mach-o/
H A Dnlist.h85 int16_t n_desc; /* see <mach-o/stab.h> */ member in struct:nlist
98 uint16_t n_desc; /* see <mach-o/stab.h> */ member in struct:nlist_64
165 * between 2^1 and 2^15 as part of the n_desc field using the macros below. If
169 #define GET_COMM_ALIGN(n_desc) (((n_desc) >> 8) & 0x0f)
170 #define SET_COMM_ALIGN(n_desc,align) \
171 (n_desc) = (((n_desc) & 0xf0ff) | (((align) & 0x0f) << 8))
183 * undefined symbols will be to use some of the bits of the n_desc field as a
184 * reference type. The mask REFERENCE_TYPE will be applied to the n_desc fiel
[all...]
/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_sym.c56 static kern_return_t init_predicates(KXLDSym *sym, u_char n_type, u_short n_desc)
78 sym->desc = src->n_desc;
82 rval = init_predicates(sym, src->n_type, src->n_desc);
113 sym->desc = src->n_desc;
117 rval = init_predicates(sym, src->n_type, src->n_desc);
155 init_predicates(KXLDSym *sym, u_char n_type, u_short n_desc) argument
249 if (n_desc & N_DESC_DISCARDED) {
253 if (n_desc & N_WEAK_REF) {
257 if (n_desc & N_ARM_THUMB_DEF) {
874 nl->n_desc
[all...]
/darwin-on-arm/xnu/SETUP/kextsymboltool/
H A Dkextsymboltool.c803 nl.n_desc = 0;
808 nl.n_desc |= N_DESC_DISCARDED;
833 nl.n_desc = 0;
838 nl.n_desc |= N_DESC_DISCARDED;

Completed in 36 milliseconds