OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isMips64EL
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Object/
ELFTypes.h
381
uint32_t getRInfo(bool
isMips64EL
) const {
382
assert(!
isMips64EL
);
385
void setRInfo(uint32_t R, bool
IsMips64EL
) {
386
assert(!
IsMips64EL
);
392
uint32_t getSymbol(bool
isMips64EL
) const {
393
return this->getRInfo(
isMips64EL
) >> 8;
395
unsigned char getType(bool
isMips64EL
) const {
396
return (unsigned char)(this->getRInfo(
isMips64EL
) & 0x0ff);
398
void setSymbol(uint32_t s, bool
IsMips64EL
) {
399
setSymbolAndType(s, getType(),
IsMips64EL
);
[
all
...]
ELFObjectFile.h
684
symbolIdx = getRel(Rel)->getSymbol(EF.
isMips64EL
());
686
symbolIdx = getRela(Rel)->getSymbol(EF.
isMips64EL
());
712
return getRel(Rel)->getType(EF.
isMips64EL
());
714
return getRela(Rel)->getType(EF.
isMips64EL
());
ELF.h
106
bool
isMips64EL
() const {
308
uint32_t Index = Rel->getSymbol(
isMips64EL
());
/external/llvm/tools/yaml2obj/
yaml2elf.cpp
356
static bool
isMips64EL
(const ELFYAML::Object &Doc) {
389
REntry.setSymbolAndType(SymIdx, Rel.Type,
isMips64EL
(Doc));
395
REntry.setSymbolAndType(SymIdx, Rel.Type,
isMips64EL
(Doc));
/external/llvm/tools/llvm-readobj/
ELFDumper.cpp
[
all
...]
/external/llvm/tools/obj2yaml/
elf2yaml.cpp
207
R.Type = Rel->getType(Obj.
isMips64EL
());
Completed in 793 milliseconds