HomeSort by: relevance | last modified time | path
    Searched refs:ImplicitShift (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOAArch64.h 136 int ImplicitShift = 0;
139 ImplicitShift = ((*p >> 30) & 0x3);
140 if (ImplicitShift == 0) {
143 ImplicitShift = 4;
147 Addend <<= ImplicitShift;
237 int ImplicitShift = 0;
240 ImplicitShift = ((*p >> 30) & 0x3);
241 switch (ImplicitShift) {
245 ImplicitShift = 4;
262 Addend >>= ImplicitShift;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
MachO_arm64.cpp 518 uint32_t ImplicitShift = Instr >> 30;
519 if (ImplicitShift == 0)
521 ImplicitShift = 4;
523 return ImplicitShift;

Completed in 33 milliseconds