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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DBinary.h75 static inline unsigned int getELFType(bool isLE, bool is64Bits) { argument
77 return is64Bits ? ID_ELF64L : ID_ELF32L;
79 return is64Bits ? ID_ELF64B : ID_ELF32B;
82 static unsigned int getMachOType(bool isLE, bool is64Bits) { argument
84 return is64Bits ? ID_MachO64L : ID_MachO32L;
86 return is64Bits ? ID_MachO64B : ID_MachO32B;

Completed in 89 milliseconds