Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DBinary.h78 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
80 return is64Bits ? ID_ELF64L : ID_ELF32L; in getELFType()
82 return is64Bits ? ID_ELF64B : ID_ELF32B; in getELFType()
85 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
87 return is64Bits ? ID_MachO64L : ID_MachO32L; in getMachOType()
89 return is64Bits ? ID_MachO64B : ID_MachO32B; in getMachOType()