/external/clang/lib/StaticAnalyzer/Core/ |
D | RangeConstraintManager.cpp | 302 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 …]
|
D | SimpleConstraintManager.cpp | 229 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 …]
|
D | SimpleConstraintManager.h | 69 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/ |
D | ratectrl.c | 585 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/ |
D | ARMWinEH.h | 198 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()
|
D | Allocator.h | 215 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/ |
D | efibind.h | 127 #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/ |
D | efibind.h | 141 #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/ |
D | efibind.h | 141 #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/ |
D | IceTargetLoweringX8632.h | 49 void _add_sp(Operand *Adjustment); 52 void _sub_sp(Operand *Adjustment);
|
D | IceTargetLoweringX8664.h | 52 void _add_sp(Operand *Adjustment); 55 void _sub_sp(Operand *Adjustment);
|
D | IceTargetLoweringX8632.cpp | 156 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()
|
D | IceTargetLoweringX8664.cpp | 143 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/ |
D | Allocator.h | 218 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/ |
D | efibind.h | 150 #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/ |
D | efibind.h | 150 #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/ |
D | pluginStructure.txt | 10 Adjustment ranker
|
/external/clang/lib/AST/ |
D | MicrosoftMangle.cpp | 2487 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 …]
|
D | VTableBuilder.cpp | 1189 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/ |
D | test_sync_atomic_main.cpp | 159 Type Adjustment; member 174 (void)TData->FuncPtr(TData->Fetch, TData->Ptr, TData->Adjustment); in threadWrapper()
|
/external/llvm/include/llvm/MC/ |
D | MCDwarf.h | 390 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/ |
D | MCAsmStreamer.cpp | 218 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()
|
D | MCStreamer.cpp | 325 void MCStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { in EmitCFIAdjustCfaOffset() argument 331 MachineLocation Source(MachineLocation::VirtualFP, Adjustment); in EmitCFIAdjustCfaOffset()
|
/external/llvm/lib/MC/ |
D | MCAsmStreamer.cpp | 246 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/ |
D | ppd-compiler.shtml | 682 <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" ""
|