Lines Matching defs:_ofl
544 #define OFL_GUIDANCE(_ofl, _no_flag) (((_ofl)->ofl_guideflags & \
551 #define OFL_ALLOW_DYNSYM(_ofl) (((_ofl)->ofl_flags & \
561 #define OFL_ALLOW_LDYNSYM(_ofl) (((_ofl)->ofl_flags & \
569 #define OFL_DO_RELOC(_ofl) (((_ofl)->ofl_flags & FLG_OF_RELOBJ) || \
570 !((_ofl)->ofl_dtflags_1 & DF_1_NORELOC))
575 #define OFL_IS_STATIC_EXEC(_ofl) (((_ofl)->ofl_flags & \
583 #define OFL_IS_STATIC_OBJ(_ofl) ((_ofl)->ofl_flags & \
591 #define SYMTAB_LOC_CNT(_ofl) /* local .symtab entries */ \
593 (_ofl)->ofl_shdrcnt + /* section symbol */ \
594 (_ofl)->ofl_caploclcnt + /* local capabilities */ \
595 (_ofl)->ofl_scopecnt + /* scoped symbols */ \
596 (_ofl)->ofl_locscnt) /* standard locals */
597 #define SYMTAB_ALL_CNT(_ofl) /* all .symtab entries */ \
598 (SYMTAB_LOC_CNT(_ofl) + /* .symtab locals */ \
599 (_ofl)->ofl_globcnt) /* standard globals */
601 #define DYNSYM_LOC_CNT(_ofl) /* local .dynsym entries */ \
603 (_ofl)->ofl_dynshdrcnt + /* section symbols */ \
604 (_ofl)->ofl_caploclcnt + /* local capabilities */ \
605 (_ofl)->ofl_lregsymcnt) /* local register symbols */
606 #define DYNSYM_ALL_CNT(_ofl) /* all .dynsym entries */ \
607 (DYNSYM_LOC_CNT(_ofl) + /* .dynsym locals */ \
608 (_ofl)->ofl_globcnt) /* standard globals */