Home
last modified time | relevance | path

Searched refs:Adjustment (Results 1 – 25 of 63) sorted by relevance

123

/external/clang/lib/StaticAnalyzer/Core/
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);
[all …]
DSimpleConstraintManager.cpp229 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) { in computeAdjustment() argument
235 Adjustment = APSIntType(Adjustment).convert(SE->getRHS()); in computeAdjustment()
241 Adjustment = -Adjustment; in computeAdjustment()
265 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); in assumeSymRel() local
266 computeAdjustment(Sym, Adjustment); in assumeSymRel()
275 Adjustment.setIsSigned(false); in assumeSymRel()
282 return assumeSymEQ(state, Sym, ConvertedInt, Adjustment); in assumeSymRel()
285 return assumeSymNE(state, Sym, ConvertedInt, Adjustment); in assumeSymRel()
288 return assumeSymGT(state, Sym, ConvertedInt, Adjustment); in assumeSymRel()
291 return assumeSymGE(state, Sym, ConvertedInt, Adjustment); in assumeSymRel()
[all …]
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;
/external/libvpx/libvpx/vp8/encoder/
Dratectrl.c585 int Adjustment; in calc_pframe_target_size() local
591 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits) in calc_pframe_target_size()
595 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) { in calc_pframe_target_size()
596 Adjustment = (cpi->per_frame_bandwidth - min_frame_target); in calc_pframe_target_size()
599 cpi->kf_overspend_bits -= Adjustment; in calc_pframe_target_size()
605 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment; in calc_pframe_target_size()
619 Adjustment = (cpi->non_gf_bitrate_adjustment <= cpi->gf_overspend_bits) in calc_pframe_target_size()
623 if (Adjustment > (cpi->this_frame_target - min_frame_target)) { in calc_pframe_target_size()
624 Adjustment = (cpi->this_frame_target - min_frame_target); in calc_pframe_target_size()
627 cpi->gf_overspend_bits -= Adjustment; in calc_pframe_target_size()
[all …]
/external/llvm/include/llvm/Support/
DARMWinEH.h198 uint16_t Adjustment = RF.StackAdjust(); in StackAdjustment() local
199 if (Adjustment >= 0x3f4) in StackAdjustment()
200 return (Adjustment & 0x3) ? ((Adjustment & 0x3) << 2) - 1 : 0; in StackAdjustment()
201 return Adjustment; in StackAdjustment()
DAllocator.h215 size_t Adjustment = alignmentAdjustment(CurPtr, Alignment); in Allocate() local
216 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow"); in Allocate()
219 if (Adjustment + Size <= size_t(End - CurPtr)) { in Allocate()
220 char *AlignedPtr = CurPtr + Adjustment; in Allocate()
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
Defibind.h127 #define ALIGN_VARIABLE(Value , Adjustment) \ argument
128 (UINTN) Adjustment = 0; \
130 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
131 Value = (UINTN)Value + (UINTN)Adjustment
/external/syslinux/efi32/include/efi/ia32/
Defibind.h141 #define ALIGN_VARIABLE(Value ,Adjustment) \ argument
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/
Defibind.h141 #define ALIGN_VARIABLE(Value ,Adjustment) \ argument
142 (UINTN)Adjustment = 0; \
144 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
145 Value = (UINTN)Value + (UINTN)Adjustment
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX8632.h49 void _add_sp(Operand *Adjustment);
52 void _sub_sp(Operand *Adjustment);
DIceTargetLoweringX8664.h52 void _add_sp(Operand *Adjustment);
55 void _sub_sp(Operand *Adjustment);
DIceTargetLoweringX8632.cpp156 void TargetX8632::_add_sp(Operand *Adjustment) { in _add_sp() argument
158 _add(esp, Adjustment); in _add_sp()
205 void TargetX8632::_sub_sp(Operand *Adjustment) { in _sub_sp() argument
207 _sub(esp, Adjustment); in _sub_sp()
DIceTargetLoweringX8664.cpp143 void TargetX8664::_add_sp(Operand *Adjustment) { in _add_sp() argument
147 _add(rsp, Adjustment); in _add_sp()
180 _add(esp, Adjustment); in _add_sp()
499 void TargetX8664::_sub_sp(Operand *Adjustment) { in _sub_sp() argument
515 _sub(esp, Adjustment); in _sub_sp()
519 _sub(rsp, Adjustment); in _sub_sp()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DAllocator.h218 size_t Adjustment = alignmentAdjustment(CurPtr, Alignment); in Allocate() local
219 assert(Adjustment + Size >= Size && "Adjustment + Size must not overflow"); in Allocate()
222 if (Adjustment + Size <= size_t(End - CurPtr)) { in Allocate()
223 char *AlignedPtr = CurPtr + Adjustment; in Allocate()
/external/syslinux/efi64/include/efi/x86_64/
Defibind.h150 #define ALIGN_VARIABLE(Value ,Adjustment) \ argument
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/
Defibind.h150 #define ALIGN_VARIABLE(Value ,Adjustment) \ argument
151 (UINTN)Adjustment = 0; \
153 (UINTN)Adjustment = MIN_ALIGNMENT_SIZE - ((UINTN)Value % MIN_ALIGNMENT_SIZE); \
154 Value = (UINTN)Value + (UINTN)Adjustment
/external/owasp/sanitizer/tools/findbugs/doc/
DpluginStructure.txt10 Adjustment ranker
/external/clang/lib/AST/
DMicrosoftMangle.cpp2487 const ThisAdjustment &Adjustment, in mangleThunkThisAdjustment() argument
2490 if (!Adjustment.Virtual.isEmpty()) { in mangleThunkThisAdjustment()
2505 if (Adjustment.Virtual.Microsoft.VBPtrOffset) { in mangleThunkThisAdjustment()
2508 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBPtrOffset)); in mangleThunkThisAdjustment()
2510 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBOffsetOffset)); in mangleThunkThisAdjustment()
2512 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); in mangleThunkThisAdjustment()
2513 Mangler.mangleNumber(static_cast<uint32_t>(Adjustment.NonVirtual)); in mangleThunkThisAdjustment()
2517 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); in mangleThunkThisAdjustment()
2518 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual)); in mangleThunkThisAdjustment()
2520 } else if (Adjustment.NonVirtual != 0) { in mangleThunkThisAdjustment()
[all …]
DVTableBuilder.cpp1189 ReturnAdjustment Adjustment; in ComputeReturnAdjustment() local
1196 Adjustment.Virtual.Itanium.VBaseOffsetOffset = in ComputeReturnAdjustment()
1199 Adjustment.Virtual.Itanium.VBaseOffsetOffset = in ComputeReturnAdjustment()
1205 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); in ComputeReturnAdjustment()
1208 return Adjustment; in ComputeReturnAdjustment()
1276 ThisAdjustment Adjustment; in ComputeThisAdjustment() local
1296 Adjustment.Virtual.Itanium.VCallOffsetOffset = in ComputeThisAdjustment()
1301 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity(); in ComputeThisAdjustment()
1303 return Adjustment; in ComputeThisAdjustment()
/external/swiftshader/third_party/subzero/crosstest/
Dtest_sync_atomic_main.cpp159 Type Adjustment; member
174 (void)TData->FuncPtr(TData->Fetch, TData->Ptr, TData->Adjustment); in threadWrapper()
/external/llvm/include/llvm/MC/
DMCDwarf.h390 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { in createAdjustCfaOffset() argument
391 return MCCFIInstruction(OpAdjustCfaOffset, L, 0, Adjustment, ""); in createAdjustCfaOffset()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCAsmStreamer.cpp218 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
958 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { in EmitCFIAdjustCfaOffset() argument
959 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment); in EmitCFIAdjustCfaOffset()
964 OS << "\t.cfi_adjust_cfa_offset " << Adjustment; in EmitCFIAdjustCfaOffset()
DMCStreamer.cpp325 void MCStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { in EmitCFIAdjustCfaOffset() argument
331 MachineLocation Source(MachineLocation::VirtualFP, Adjustment); in EmitCFIAdjustCfaOffset()
/external/llvm/lib/MC/
DMCAsmStreamer.cpp246 void EmitCFIAdjustCfaOffset(int64_t Adjustment) override;
1311 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { in EmitCFIAdjustCfaOffset() argument
1312 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment); in EmitCFIAdjustCfaOffset()
1313 OS << "\t.cfi_adjust_cfa_offset " << Adjustment; in EmitCFIAdjustCfaOffset()
/external/libcups/filter/
Dppd-compiler.shtml682 <a href='ref-ppdcfile.html#Option'>Option</a> "fooCyanAdjust/Cyan Adjustment"
685 *<a href='ref-ppdcfile.html#Choice'>Choice</a> "none/No Adjustment" ""
688 <a href='ref-ppdcfile.html#Option'>Option</a> "fooMagentaAdjust/Magenta Adjustment"
691 *<a href='ref-ppdcfile.html#Choice'>Choice</a> "none/No Adjustment" ""
694 <a href='ref-ppdcfile.html#Option'>Option</a> "fooYellowAdjust/Yellow Adjustment"
697 *<a href='ref-ppdcfile.html#Choice'>Choice</a> "none/No Adjustment" ""
700 <a href='ref-ppdcfile.html#Option'>Option</a> "fooBlackAdjust/Black Adjustment"
703 *<a href='ref-ppdcfile.html#Choice'>Choice</a> "none/No Adjustment" ""

123