Searched defs:Adjusted (Results 1 - 3 of 3) sorted by relevance
/external/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 712 auto Adjusted = ScaledNumbers::getAdjusted<DigitsT>(N, Shift); local 713 return Adjusted;
|
/external/llvm/lib/Target/XCore/ |
H A D | XCoreFrameLowering.cpp | 97 /// \param [in,out] Adjusted the current SP offset from the top of the frame. 101 int OffsetFromTop, int &Adjusted, int FrameSize, 103 while (OffsetFromTop > Adjusted) { 104 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize"); 105 int remaining = FrameSize - Adjusted; 109 Adjusted += OpImm; 111 EmitDefCfaOffset(MBB, MBBI, dl, TII, MMI, Adjusted*4); 248 int Adjusted = 0; local 260 Adjusted = (FrameSize > MaxImmU16) ? MaxImmU16 : FrameSize; 261 int Opcode = isImmU6(Adjusted) 98 IfNeededExtSP(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, DebugLoc dl, const TargetInstrInfo &TII, MachineModuleInfo *MMI, int OffsetFromTop, int &Adjusted, int FrameSize, bool emitFrameMoves) argument [all...] |
/external/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 6920 QualType Adjusted = Function->getType(); local 6921 if (!hasExplicitCallingConv(Adjusted)) 6922 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType()); 6923 if (Context.hasSameType(Adjusted, Method->getType())) { 7715 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType()); local 7716 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
|
Completed in 134 milliseconds