Searched refs:Adjustment (Results 1 - 25 of 34) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.h69 const llvm::APSInt& Adjustment) = 0;
73 const llvm::APSInt& Adjustment) = 0;
77 const llvm::APSInt& Adjustment) = 0;
81 const llvm::APSInt& Adjustment) = 0;
85 const llvm::APSInt& Adjustment) = 0;
89 const llvm::APSInt& Adjustment) = 0;
94 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
98 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
H A DSimpleConstraintManager.cpp229 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) { argument
235 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
241 Adjustment = -Adjustment;
265 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); local
266 computeAdjustment(Sym, Adjustment);
275 Adjustment.setIsSigned(false);
282 return assumeSymEQ(state, Sym, ConvertedInt, Adjustment);
285 return assumeSymNE(state, Sym, ConvertedInt, Adjustment);
311 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); local
[all...]
H A DRangeConstraintManager.cpp302 const llvm::APSInt& Adjustment) override;
306 const llvm::APSInt& Adjustment) override;
310 const llvm::APSInt& Adjustment) override;
314 const llvm::APSInt& Adjustment) override;
318 const llvm::APSInt& Adjustment) override;
322 const llvm::APSInt& Adjustment) override;
326 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
330 const llvm::APSInt &To, const llvm::APSInt &Adjustment) override;
346 const llvm::APSInt &Adjustment);
349 const llvm::APSInt &Adjustment);
450 assumeSymNE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
470 assumeSymEQ(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
484 getSymLTRange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
513 assumeSymLT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
521 getSymGTRange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
549 assumeSymGT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
557 getSymGERange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
585 assumeSymGE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
593 getSymLERange(const RangeSet &RS, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
621 getSymLERange(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
649 assumeSymLE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
657 assumeSymbolWithinInclusiveRange( ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, const llvm::APSInt &To, const llvm::APSInt &Adjustment) argument
668 assumeSymbolOutOfInclusiveRange( ProgramStateRef State, SymbolRef Sym, const llvm::APSInt &From, const llvm::APSInt &To, const llvm::APSInt &Adjustment) argument
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringX8632.h49 void _add_sp(Operand *Adjustment);
52 void _sub_sp(Operand *Adjustment);
H A DIceTargetLoweringX8664.h52 void _add_sp(Operand *Adjustment);
55 void _sub_sp(Operand *Adjustment);
H A DIceTargetLoweringX8632.cpp156 void TargetX8632::_add_sp(Operand *Adjustment) { argument
158 _add(esp, Adjustment);
205 void TargetX8632::_sub_sp(Operand *Adjustment) { argument
207 _sub(esp, Adjustment);
H A DIceTargetLoweringX8664.cpp143 void TargetX8664::_add_sp(Operand *Adjustment) { argument
147 _add(rsp, Adjustment);
159 // add Adjustment, %esp
168 // add Adjustment, %esp
175 // add Adjustment, %esp
180 _add(esp, Adjustment);
499 void TargetX8664::_sub_sp(Operand *Adjustment) { argument
510 // sub Adjustment, %esp
515 _sub(esp, Adjustment);
519 _sub(rsp, Adjustment);
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c585 int Adjustment; local
591 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits)
595 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) {
596 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
599 cpi->kf_overspend_bits -= Adjustment;
605 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment;
619 Adjustment = (cpi->non_gf_bitrate_adjustment <= cpi->gf_overspend_bits)
623 if (Adjustment > (cpi->this_frame_target - min_frame_target)) {
624 Adjustment = (cpi->this_frame_target - min_frame_target);
627 cpi->gf_overspend_bits -= Adjustment;
[all...]
/external/syslinux/efi32/include/efi/ia32/
H A Defibind.h141 #define ALIGN_VARIABLE(Value ,Adjustment) \
142 (UINTN)Adjustment = 0; \
144 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
145 Value = (UINTN)Value + (UINTN)Adjustment
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia32/
H A Defibind.h141 #define ALIGN_VARIABLE(Value ,Adjustment) \
142 (UINTN)Adjustment = 0; \
144 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
145 Value = (UINTN)Value + (UINTN)Adjustment
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
H A Defibind.h127 #define ALIGN_VARIABLE(Value , Adjustment) \
128 (UINTN) Adjustment = 0; \
130 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
131 Value = (UINTN)Value + (UINTN)Adjustment
/external/llvm/include/llvm/Support/
H A DARMWinEH.h198 uint16_t Adjustment = RF.StackAdjust(); local
199 if (Adjustment >= 0x3f4)
200 return (Adjustment & 0x3) ? ((Adjustment & 0x3) << 2) - 1 : 0;
201 return Adjustment;
H A DAllocator.h215 size_t Adjustment = alignmentAdjustment(CurPtr, Alignment); local
216 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow");
219 if (Adjustment + Size <= size_t(End - CurPtr)) {
220 char *AlignedPtr = CurPtr + Adjustment;
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DAllocator.h218 size_t Adjustment = alignmentAdjustment(CurPtr, Alignment); local
219 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow");
222 if (Adjustment + Size <= size_t(End - CurPtr)) {
223 char *AlignedPtr = CurPtr + Adjustment;
/external/syslinux/efi64/include/efi/x86_64/
H A Defibind.h150 #define ALIGN_VARIABLE(Value ,Adjustment) \
151 (UINTN)Adjustment = 0; \
153 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
154 Value = (UINTN)Value + (UINTN)Adjustment
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/x86_64/
H A Defibind.h150 #define ALIGN_VARIABLE(Value ,Adjustment) \
151 (UINTN)Adjustment = 0; \
153 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
154 Value = (UINTN)Value + (UINTN)Adjustment
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_sync_atomic_main.cpp159 Type Adjustment; member in struct:ThreadData
174 (void)TData->FuncPtr(TData->Fetch, TData->Ptr, TData->Adjustment);
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp2487 const ThisAdjustment &Adjustment,
2490 if (!Adjustment.Virtual.isEmpty()) {
2505 if (Adjustment.Virtual.Microsoft.VBPtrOffset) {
2508 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBPtrOffset));
2510 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBOffsetOffset));
2512 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset));
2513 Mangler.mangleNumber(static_cast<uint32_t>(Adjustment.NonVirtual));
2517 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset));
2518 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual));
2520 } else if (Adjustment
2486 mangleThunkThisAdjustment(const CXXMethodDecl *MD, const ThisAdjustment &Adjustment, MicrosoftCXXNameMangler &Mangler, raw_ostream &Out) argument
2581 mangleCXXDtorThunk( const CXXDestructorDecl *DD, CXXDtorType Type, const ThisAdjustment &Adjustment, raw_ostream &Out) argument
[all...]
H A DVTableBuilder.cpp1189 ReturnAdjustment Adjustment; local
1196 Adjustment.Virtual.Itanium.VBaseOffsetOffset =
1199 Adjustment.Virtual.Itanium.VBaseOffsetOffset =
1205 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1208 return Adjustment;
1276 ThisAdjustment Adjustment;
1296 Adjustment.Virtual.Itanium.VCallOffsetOffset =
1301 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1303 return Adjustment;
/external/llvm/include/llvm/MC/
H A DMCDwarf.h390 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { argument
391 return MCCFIInstruction(OpAdjustCfaOffset, L, 0, Adjustment, "");
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmStreamer.cpp218 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
958 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { argument
959 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
964 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
H A DMCStreamer.cpp325 void MCStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { argument
331 MachineLocation Source(MachineLocation::VirtualFP, Adjustment);
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCStreamer.h544 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp1278 CharUnits Adjustment = ML.VFPtrOffset; local
1285 Adjustment = CharUnits::Zero();
1290 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase);
1293 return Adjustment;
1302 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); local
1303 if (Adjustment.isZero())
1307 assert(Adjustment.isPositive());
1308 return CGF.Builder.CreateConstByteGEP(This, Adjustment);
1404 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); local
1405 if (Adjustment
[all...]
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp246 void EmitCFIAdjustCfaOffset(int64_t Adjustment) override;
1311 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1312 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1313 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;

Completed in 544 milliseconds

12