Searched defs:Adjusted (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Support/
H A DScaledNumber.h713 auto Adjusted = ScaledNumbers::getAdjusted<DigitsT>(N, Shift); local
714 return Adjusted;
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp96 /// \param [in,out] Adjusted the current SP offset from the top of the frame.
100 int OffsetFromTop, int &Adjusted, int FrameSize,
102 while (OffsetFromTop > Adjusted) {
103 assert(Adjusted < FrameSize && "OffsetFromTop is beyond FrameSize");
104 int remaining = FrameSize - Adjusted;
108 Adjusted += OpImm;
110 EmitDefCfaOffset(MBB, MBBI, dl, TII, MMI, Adjusted*4);
248 int Adjusted = 0; local
260 Adjusted = (FrameSize > MaxImmU16) ? MaxImmU16 : FrameSize;
261 int Opcode = isImmU6(Adjusted)
97 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 DSemaTemplate.cpp6799 QualType Adjusted = Function->getType(); local
6800 if (!hasExplicitCallingConv(Adjusted))
6801 Adjusted = adjustCCAndNoReturn(Adjusted, Method->getType());
6802 if (Context.hasSameType(Adjusted, Method->getType())) {
7576 QualType Adjusted = adjustCCAndNoReturn(R, Method->getType()); local
7577 if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {

Completed in 328 milliseconds