OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is64bits
(Results
1 - 13
of
13
) sorted by null
/external/llvm/include/llvm/Object/
Binary.h
59
static inline unsigned int getELFType(bool isLE, bool
is64Bits
) {
61
return
is64Bits
? ID_ELF64L : ID_ELF32L;
63
return
is64Bits
? ID_ELF64B : ID_ELF32B;
66
static unsigned int getMachOType(bool isLE, bool
is64Bits
) {
68
return
is64Bits
? ID_MachO64L : ID_MachO32L;
70
return
is64Bits
? ID_MachO64B : ID_MachO32B;
MachO.h
61
MachOObjectFile(MemoryBuffer *Object, bool IsLittleEndian, bool
Is64Bits
,
ELF.h
40
template<endianness target_endianness, std::size_t max_alignment, bool
is64Bits
>
44
static const bool
Is64Bits
=
is64Bits
;
62
// Templates to choose Elf_Addr and Elf_Off depending on
is64Bits
.
126
ELFT::
Is64Bits
)
[
all
...]
/frameworks/compile/mclinker/include/mcld/
TargetOptions.h
67
bool
is64Bits
() const { return (64 == m_BitClass); }
/external/llvm/tools/llvm-objdump/
ELFDump.cpp
58
const char *Fmt = ELFT::
Is64Bits
? "0x%016" PRIx64 " " : "0x%08" PRIx64 " ";
/frameworks/compile/mclinker/lib/LD/
ELFDynObjReader.cpp
37
else if (pConfig.targets().
is64Bits
() && pConfig.targets().isLittleEndian())
ELFObjectWriter.cpp
170
else if (m_Config.targets().
is64Bits
()) {
408
else if (pConfig.targets().
is64Bits
())
417
else if (pConfig.targets().
is64Bits
())
ELFObjectReader.cpp
45
else if (pConfig.targets().
is64Bits
() && pConfig.targets().isLittleEndian()) {
/external/llvm/lib/Target/X86/
X86MCInstLower.cpp
613
bool
is64Bits
= MI.getOpcode() == X86::TLS_addr64 ||
643
if (
is64Bits
) {
676
StringRef name =
is64Bits
? "__tls_get_addr" : "___tls_get_addr";
683
OutStreamer.EmitInstruction(MCInstBuilder(
is64Bits
? X86::CALL64pcrel32
/external/llvm/tools/yaml2obj/
yaml2elf.cpp
255
Header.e_ident[EI_CLASS] = ELFT::
Is64Bits
? ELFCLASS64 : ELFCLASS32;
/frameworks/compile/mclinker/lib/Target/
ELFDynamic.cpp
42
} else if (m_Config.targets().
is64Bits
()) {
GNULDBackend.cpp
[
all
...]
/external/llvm/lib/Object/
MachOObjectFile.cpp
414
bool IsLittleEndian, bool
Is64bits
,
416
: ObjectFile(getMachOType(IsLittleEndian,
Is64bits
), Object),
[
all
...]
Completed in 7292 milliseconds