HomeSort by relevance Sort by last modified time
    Searched defs:Adjustment (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/base/strings/
utf_offset_string_conversions.h 23 struct BASE_EXPORT Adjustment {
24 Adjustment(size_t original_offset,
32 typedef std::vector<Adjustment> Adjustments;
utf_offset_string_conversions.cc 16 OffsetAdjuster::Adjustment::Adjustment(size_t original_offset,
40 int adjustment = 0; local
49 adjustment += static_cast<int>(i->original_length - i->output_length);
51 *offset -= adjustment;
70 int adjustment = 0; local
73 if (*offset + adjustment <= i->original_offset)
75 adjustment += static_cast<int>(i->original_length - i->output_length);
76 if ((*offset + adjustment) <
82 *offset += adjustment;
    [all...]
  /external/icu/icu4c/source/layout/
GlyphPositionAdjustments.h 26 class Adjustment : public UMemory {
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()
146 inline GlyphPositionAdjustments::Adjustment::Adjustment(float xPlace, float yPlace, float xAdv, float yAdv, le_int32 baseOff)
152 inline GlyphPositionAdjustments::Adjustment::~Adjustment(
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 193 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) {
199 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
201 // Don't forget to negate the adjustment if it's being subtracted.
205 Adjustment = -Adjustment;
223 // The adjustment is "constant1" in the above expression. It's used to
227 // the subclasses of SimpleConstraintManager to handle the adjustment.
229 llvm::APSInt Adjustment = WraparoundType.getZeroValue();
230 computeAdjustment(Sym, Adjustment);
    [all...]
  /external/llvm/include/llvm/Support/
ARMWinEH.h 81 /// indicate the number of words' of adjustment (1-4), minus 1
83 /// indicates if the prologue combined adjustment into push
85 /// indicates if the epilogue combined adjustment into pop
185 /// prologue has stack adjustment combined into the push
190 /// epilogue has stack adjustment combined into the pop
194 /// StackAdjustment - calculated stack adjustment in words. The stack
195 /// adjustment should be determined via this function to account for the special
198 uint16_t Adjustment = RF.StackAdjust();
199 if (Adjustment >= 0x3f4)
200 return (Adjustment & 0x3) ? ((Adjustment & 0x3) << 2) - 1 : 0
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
ratectrl.c 390 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
393 /* frame separation adjustment ( down) */
652 int Adjustment;
653 /* Make rate adjustment to recover bits spent in key frame
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;
678 /* If appropriate make an adjustment to recover bits spent on
    [all...]
onyx_if.c     [all...]
  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 390 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
393 /* frame separation adjustment ( down) */
652 int Adjustment;
653 /* Make rate adjustment to recover bits spent in key frame
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;
678 /* If appropriate make an adjustment to recover bits spent on
    [all...]
onyx_if.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
ratectrl.c 390 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */
393 /* frame separation adjustment ( down) */
652 int Adjustment;
653 /* Make rate adjustment to recover bits spent in key frame
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;
678 /* If appropriate make an adjustment to recover bits spent on
    [all...]
onyx_if.c     [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 209 void EmitCFIAdjustCfaOffset(int64_t Adjustment) override;
    [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 288 // No adjustment needed.
311 // No adjustment needed.
830 /// (Used for computing 'this' pointer adjustment thunks.
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 431 /// \brief Shared code for virtual base adjustment. Returns the offset from
450 /// \brief Performs a full virtual base adjustment. Used to dereference
640 // Perform a base adjustment.
    [all...]
CGExpr.cpp 372 SubobjectAdjustment &Adjustment = Adjustments[I-1];
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);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h 237 LONG Adjustment;
248 LONG Adjustment;
    [all...]

Completed in 670 milliseconds