Searched defs:Adjustment (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/base/strings/
H A Dutf_offset_string_conversions.h23 struct BASE_EXPORT Adjustment { struct in class:base::OffsetAdjuster
24 Adjustment(size_t original_offset,
32 typedef std::vector<Adjustment> Adjustments;
H A Dutf_offset_string_conversions.cc16 OffsetAdjuster::Adjustment::Adjustment(size_t original_offset, function in class:base::OffsetAdjuster::Adjustment
210 adjustments->push_back(OffsetAdjuster::Adjustment(
/external/icu/icu4c/source/layout/
H A DGlyphPositionAdjustments.h26 class Adjustment : public UMemory { class in class:GlyphPositionAdjustments
29 inline Adjustment();
30 inline Adjustment(float xPlace, float yPlace, float xAdv, float yAdv, le_int32 baseOff = -1);
31 inline ~Adjustment();
97 Adjustment *fAdjustments;
140 inline GlyphPositionAdjustments::Adjustment::Adjustment() function in class:GlyphPositionAdjustments::Adjustment
146 inline GlyphPositionAdjustments::Adjustment::Adjustment(float xPlace, float yPlace, float xAdv, float yAdv, le_int32 baseOff) function in class:GlyphPositionAdjustments::Adjustment
152 inline GlyphPositionAdjustments::Adjustment
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp193 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) { argument
199 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
205 Adjustment = -Adjustment;
229 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); local
230 computeAdjustment(Sym, Adjustment);
239 Adjustment.setIsSigned(false);
246 return assumeSymEQ(state, Sym, ConvertedInt, Adjustment);
249 return assumeSymNE(state, Sym, ConvertedInt, Adjustment);
[all...]
H A DRangeConstraintManager.cpp293 const llvm::APSInt& Adjustment) override;
297 const llvm::APSInt& Adjustment) override;
301 const llvm::APSInt& Adjustment) override;
305 const llvm::APSInt& Adjustment) override;
309 const llvm::APSInt& Adjustment) override;
313 const llvm::APSInt& Adjustment) override;
421 const llvm::APSInt &Adjustment) {
423 APSIntType AdjustmentType(Adjustment);
427 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
432 // [Int-Adjustment
419 assumeSymNE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
439 assumeSymEQ(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
454 assumeSymLT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
483 assumeSymGT(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
512 assumeSymGE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
541 assumeSymLE(ProgramStateRef St, SymbolRef Sym, const llvm::APSInt &Int, const llvm::APSInt &Adjustment) argument
[all...]
/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;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dratectrl.c652 int Adjustment; local
659 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits) ? cpi->kf_bitrate_adjustment : cpi->kf_overspend_bits;
661 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target))
662 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
664 cpi->kf_overspend_bits -= Adjustment;
670 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment;
683 Adjustment = (cpi->non_gf_bitrate_adjustment <= cpi->gf_overspend_bits) ? cpi->non_gf_bitrate_adjustment : cpi->gf_overspend_bits;
685 if (Adjustment > (cpi->this_frame_target - min_frame_target))
686 Adjustment = (cpi->this_frame_target - min_frame_target);
688 cpi->gf_overspend_bits -= Adjustment;
[all...]
H A Donyx_if.c3807 int Adjustment = cpi->active_worst_quality / 4; local
3809 if (Adjustment)
3818 Adjustment);
3821 Adjustment = (int)
3826 Adjustment = 0;
3829 cpi->active_worst_quality -= Adjustment;
/external/libvpx/libvpx/vp8/encoder/
H A Dratectrl.c652 int Adjustment; local
659 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits) ? cpi->kf_bitrate_adjustment : cpi->kf_overspend_bits;
661 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target))
662 Adjustment = (cpi->per_frame_bandwidth - min_frame_target);
664 cpi->kf_overspend_bits -= Adjustment;
670 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment;
683 Adjustment = (cpi->non_gf_bitrate_adjustment <= cpi->gf_overspend_bits) ? cpi->non_gf_bitrate_adjustment : cpi->gf_overspend_bits;
685 if (Adjustment > (cpi->this_frame_target - min_frame_target))
686 Adjustment = (cpi->this_frame_target - min_frame_target);
688 cpi->gf_overspend_bits -= Adjustment;
[all...]
H A Donyx_if.c3626 int Adjustment = cpi->active_worst_quality / 4; local
3628 if (Adjustment)
3637 Adjustment);
3640 Adjustment = (int)
3645 Adjustment = 0;
3648 cpi->active_worst_quality -= Adjustment;
/external/llvm/include/llvm/MC/
H A DMCDwarf.h371 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { argument
372 return MCCFIInstruction(OpAdjustCfaOffset, L, 0, Adjustment, "");
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp2105 const ThisAdjustment &Adjustment,
2108 if (!Adjustment.Virtual.isEmpty()) {
2123 if (Adjustment.Virtual.Microsoft.VBPtrOffset) {
2126 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBPtrOffset));
2128 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBOffsetOffset));
2130 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset));
2131 Mangler.mangleNumber(static_cast<uint32_t>(Adjustment.NonVirtual));
2135 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset));
2136 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual));
2138 } else if (Adjustment
2104 mangleThunkThisAdjustment(const CXXMethodDecl *MD, const ThisAdjustment &Adjustment, MicrosoftCXXNameMangler &Mangler, raw_ostream &Out) argument
2197 mangleCXXDtorThunk( const CXXDestructorDecl *DD, CXXDtorType Type, const ThisAdjustment &Adjustment, raw_ostream &Out) argument
[all...]
H A DExprConstant.cpp1886 /// \param Adjustment - The adjustment, in objects of type EltTy, to add.
1889 int64_t Adjustment) {
1895 LVal.Offset += Adjustment * SizeOfPointee;
1896 LVal.adjustIndex(Info, E, Adjustment);
1887 HandleLValueArrayAdjustment(EvalInfo &Info, const Expr *E, LValue &LVal, QualType EltTy, int64_t Adjustment) argument
H A DVTableBuilder.cpp1201 ReturnAdjustment Adjustment; local
1208 Adjustment.Virtual.Itanium.VBaseOffsetOffset =
1211 Adjustment.Virtual.Itanium.VBaseOffsetOffset =
1217 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1220 return Adjustment;
1289 ThisAdjustment Adjustment;
1309 Adjustment.Virtual.Itanium.VCallOffsetOffset =
1314 Adjustment.NonVirtual = Offset.NonVirtualOffset.getQuantity();
1316 return Adjustment;
2802 BaseOffset Adjustment local
[all...]
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp209 void EmitCFIAdjustCfaOffset(int64_t Adjustment) override;
1022 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { argument
1023 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1024 OS << "\t.cfi_adjust_cfa_offset " << Adjustment; local
H A DMCStreamer.cpp302 void MCStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) { argument
305 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp372 SubobjectAdjustment &Adjustment = Adjustments[I-1]; local
373 switch (Adjustment.Kind) {
376 GetAddressOfBaseClass(Object, Adjustment.DerivedToBase.DerivedClass,
377 Adjustment.DerivedToBase.BasePath->path_begin(),
378 Adjustment.DerivedToBase.BasePath->path_end(),
384 LV = EmitLValueForField(LV, Adjustment.Field);
392 llvm::Value *Ptr = EmitScalarExpr(Adjustment.Ptr.RHS);
394 *this, E, Object, Ptr, Adjustment.Ptr.MPT);
H A DMicrosoftCXXABI.cpp951 CharUnits Adjustment = ML.VFPtrOffset; local
958 Adjustment = CharUnits::Zero();
963 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase);
966 return Adjustment;
974 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); local
975 if (Adjustment.isZero())
981 assert(Adjustment.isPositive());
982 return CGF.Builder.CreateConstGEP1_32(This, Adjustment.getQuantity());
1081 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); local
1082 if (Adjustment
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3053 int64_t Adjustment = 0; local
3054 if (parseAbsoluteExpression(Adjustment))
3057 getStreamer().EmitCFIAdjustCfaOffset(Adjustment);

Completed in 2319 milliseconds