HomeSort by relevance Sort by last modified time
    Searched defs:ApplyFunctions (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 138 static const ApplyFunctionTriple ApplyFunctions[] = {
184 return ApplyFunctions[type].func(pRelocation, *this);
188 return ApplyFunctions[pType].name;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 293 static const ApplyFunctionTriple ApplyFunctions[] = {
313 return ApplyFunctions[type].func(pRelocation, *this);
317 return ApplyFunctions[pType].name;
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.cpp 135 static const ApplyFunctionTriple ApplyFunctions[] = {
160 if (info.type() >= sizeof(ApplyFunctions) / sizeof(ApplyFunctions[0]))
163 const ApplyFunctionTriple& triple = ApplyFunctions[info.type()];
180 return ApplyFunctions[pType & 0xff].name;
788 return ApplyFunctions[pType & 0xff].size;
826 return ApplyFunctions[(pType >> 16) & 0xff].size;
828 return ApplyFunctions[(pType >> 8) & 0xff].size;
829 return ApplyFunctions[pType & 0xff].size;
    [all...]

Completed in 78 milliseconds