HomeSort by relevance Sort by last modified time
    Searched full:adjustment (Results 1 - 25 of 860) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/courgette/
adjustment_method.h 18 // Returns the adjustment method used in production.
26 // Returns the original adjustment method.
29 // Returns the new shingle tiling adjustment method.
40 // Deletes 'this' adjustment method.
  /external/icu4c/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/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_SetGamma.3 11 Sets the "gamma function" for the display of each color component\&. Gamma controls the brightness/contrast of colors displayed on the screen\&. A gamma value of 1\&.0 is identity (i\&.e\&., no adjustment is made)\&.
13 This function adjusts the gamma based on the "gamma function" parameter, you can directly specify lookup tables for gamma adjustment with \fISDL_SetGammaRamp\fR\&.
18 Returns -1 on error (or if gamma adjustment is not supported)\&.
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 30 * adjustment = filtered_value - current_raw
39 * The adjustment vs. diff curve becomes flat very quick when diff increases.
44 * diff adjustment w/o motion correction adjustment w/ motion correction
70 * increasing the adjustment for each level. */
82 int adjustment = 0; local
97 adjustment = adj_val[0];
99 adjustment = adj_val[1];
101 adjustment = adj_val[2];
105 if ((sig[c] + adjustment) > 255
    [all...]
  /external/chromium_org/base/strings/
utf_offset_string_conversions.cc 49 offset_adjuster.Add(OffsetAdjuster::Adjustment(original_i,
121 OffsetAdjuster::Adjustment::Adjustment(size_t original_offset,
141 void OffsetAdjuster::Add(const Adjustment& adjustment) {
142 adjustments_.push_back(adjustment);
148 size_t adjustment = 0;
149 for (std::vector<Adjustment>::const_iterator i = adjustments_.begin();
157 adjustment += (i->original_length - i->output_length);
159 *offset -= adjustment;
    [all...]
utf_offset_string_conversions.h 70 // (each Adjustment gives the |original_offset| of a substring and the lengths
75 struct BASE_EXPORT Adjustment {
76 Adjustment(size_t original_offset,
88 void Add(const Adjustment& adjustment);
94 std::vector<Adjustment> adjustments_;
utf_offset_string_conversions_unittest.cc 113 offset_adjuster.Add(OffsetAdjuster::Adjustment(3, 3, 1));
128 offset_adjuster.Add(OffsetAdjuster::Adjustment(0, 3, 1));
129 offset_adjuster.Add(OffsetAdjuster::Adjustment(4, 4, 2));
130 offset_adjuster.Add(OffsetAdjuster::Adjustment(10, 7, 4));
131 offset_adjuster.Add(OffsetAdjuster::Adjustment(20, 3, 1));
149 offset_adjuster.Add(OffsetAdjuster::Adjustment(0, 3, 0));
150 offset_adjuster.Add(OffsetAdjuster::Adjustment(4, 4, 4));
151 offset_adjuster.Add(OffsetAdjuster::Adjustment(11, 3, 3));
152 offset_adjuster.Add(OffsetAdjuster::Adjustment(15, 2, 0));
  /external/clang/lib/StaticAnalyzer/Core/
SimpleConstraintManager.cpp 224 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) {
230 Adjustment = APSIntType(Adjustment).convert(SE->getRHS());
232 // Don't forget to negate the adjustment if it's being subtracted.
236 Adjustment = -Adjustment;
254 // The adjustment is "constant1" in the above expression. It's used to
258 // the subclasses of SimpleConstraintManager to handle the adjustment.
260 llvm::APSInt Adjustment = WraparoundType.getZeroValue();
261 computeAdjustment(Sym, Adjustment);
    [all...]
RangeConstraintManager.cpp 293 const llvm::APSInt& Adjustment);
297 const llvm::APSInt& Adjustment);
301 const llvm::APSInt& Adjustment);
305 const llvm::APSInt& Adjustment);
309 const llvm::APSInt& Adjustment);
313 const llvm::APSInt& Adjustment);
419 const llvm::APSInt &Adjustment) {
421 APSIntType AdjustmentType(Adjustment);
425 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
430 // [Int-Adjustment+1, Int-Adjustment-1
    [all...]
SimpleConstraintManager.h 58 const llvm::APSInt& Adjustment) = 0;
62 const llvm::APSInt& Adjustment) = 0;
66 const llvm::APSInt& Adjustment) = 0;
70 const llvm::APSInt& Adjustment) = 0;
74 const llvm::APSInt& Adjustment) = 0;
78 const llvm::APSInt& Adjustment) = 0;
  /external/ceres-solver/docs/source/
reading.rst 10 provides a thorough coverage of the bundle adjustment problem.
introduction.rst 37 c. Specialized solvers for bundle adjustment problems in computer
41 and bundle adjustment problems.
54 `bundle adjustment
  /external/chromium/base/
utf_offset_string_conversions_unittest.cc 123 adjustments.push_back(AdjustOffset::Adjustment(3, 3, 1));
135 adjustments.push_back(AdjustOffset::Adjustment(0, 3, 1));
136 adjustments.push_back(AdjustOffset::Adjustment(4, 4, 2));
137 adjustments.push_back(AdjustOffset::Adjustment(10, 7, 4));
138 adjustments.push_back(AdjustOffset::Adjustment(20, 3, 1));
152 adjustments.push_back(AdjustOffset::Adjustment(0, 3, 0));
153 adjustments.push_back(AdjustOffset::Adjustment(4, 4, 4));
154 adjustments.push_back(AdjustOffset::Adjustment(11, 3, 3));
155 adjustments.push_back(AdjustOffset::Adjustment(15, 2, 0));
utf_offset_string_conversions.h 72 // Adjustment function called by std::transform which will adjust any offset
76 // AdjustOffset(adjustments). Each Adjustment gives the original |location|
82 struct Adjustment {
83 Adjustment(size_t location, size_t old_length, size_t new_length);
90 typedef std::vector<Adjustment> Adjustments;
utf_offset_string_conversions.cc 53 adjustments.push_back(AdjustOffset::Adjustment(
58 // Make offset adjustment.
214 AdjustOffset::Adjustment::Adjustment(size_t location,
227 size_t adjustment = 0;
241 adjustment += (i->old_length - i->new_length);
243 offset -= adjustment;
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 4 // the exception specification adjustment occurs.
  /external/clang/include/clang/Basic/
ABI.h 37 /// \brief A return adjustment.
39 /// \brief The non-virtual adjustment from the derived object to its
67 /// \brief A \c this pointer adjustment.
69 /// \brief The non-virtual adjustment from the derived object to its
97 /// \brief The \c this pointer adjustment as well as an optional return
98 /// adjustment for a thunk.
100 /// \brief The \c this pointer adjustment.
103 /// \brief The return adjustment.
  /external/llvm/test/CodeGen/X86/
tailcall-largecode.ll 18 ; adjustment may change in the future, in which case the location of
19 ; the stack argument and the return adjustment will change too.)
47 ; adjustment may change in the future, in which case the location of
48 ; the stack argument and the return adjustment will change too.)
  /frameworks/base/core/java/android/gesture/
Instance.java 96 float adjustment = -orientation; local
101 if (Math.abs(delta) < Math.abs(adjustment)) {
102 adjustment = delta;
108 GestureUtils.rotate(pts, adjustment);
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 294 float[] adjustment = mTempAdjustment; local
298 adjustment[0] = edges.left / scale;
300 adjustment[0] = (edges.right - getWidth()) / scale;
303 adjustment[1] = FloatMath.ceil(edges.top / scale);
305 adjustment[1] = (edges.bottom - getHeight()) / scale;
308 if (coef[dim] > 0) adjustment[dim] = FloatMath.ceil(adjustment[dim]);
311 mInverseRotateMatrix.mapPoints(adjustment);
312 mCenterX += adjustment[0];
313 mCenterY += adjustment[1]
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 294 float[] adjustment = mTempAdjustment; local
298 adjustment[0] = edges.left / scale;
300 adjustment[0] = (edges.right - getWidth()) / scale;
303 adjustment[1] = FloatMath.ceil(edges.top / scale);
305 adjustment[1] = (edges.bottom - getHeight()) / scale;
308 if (coef[dim] > 0) adjustment[dim] = FloatMath.ceil(adjustment[dim]);
311 mInverseRotateMatrix.mapPoints(adjustment);
312 mCenterX += adjustment[0];
313 mCenterY += adjustment[1]
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-multiple-nonvirtual-inheritance.cpp 72 // Overrides only the right child's method (B::g), needs this adjustment but
231 // Overrides only the right child's method (pure_virtual::D::g), needs this adjustment but
249 // THIS-THUNKS-Test1-NEXT: [this adjustment: -4 non-virtual]
252 // THIS-THUNKS-Test1-NEXT: 0 | this adjustment: -4 non-virtual
272 // THIS-THUNKS-Test2-NEXT: [this adjustment: -4 non-virtual]
275 // THIS-THUNKS-Test2-NEXT: 0 | this adjustment: -4 non-virtual
297 // THIS-THUNKS-Test3-NEXT: [this adjustment: -8 non-virtual]
300 // THIS-THUNKS-Test3-NEXT: 0 | this adjustment: -8 non-virtual
304 // THIS-THUNKS-Test3-NEXT: [this adjustment: -8 non-virtual]
308 // THIS-THUNKS-Test3-NEXT: 0 | this adjustment: -8 non-virtua
    [all...]
vtable-layout-abi-examples.cpp 50 // CHECK-2-NEXT: [this adjustment: 0 non-virtual, -24 vcall offset offset]
53 // CHECK-2-NEXT: [this adjustment: 0 non-virtual, -40 vcall offset offset]
76 // CHECK-3-NEXT: [this adjustment: 0 non-virtual, -32 vcall offset offset]
78 // CHECK-3-NEXT: [this adjustment: 0 non-virtual, -40 vcall offset offset]
100 // CHECK-4-NEXT: [this adjustment: -16 non-virtual]
108 // CHECK-4-NEXT: [this adjustment: 0 non-virtual, -24 vcall offset offset]
110 // CHECK-4-NEXT: [this adjustment: 0 non-virtual, -32 vcall offset offset]
112 // CHECK-4-NEXT: [this adjustment: 0 non-virtual, -40 vcall offset offset]
139 // CHECK-5-NEXT: [this adjustment: -16 non-virtual]
141 // CHECK-5-NEXT: [this adjustment: -16 non-virtual
    [all...]
  /external/ceres-solver/internal/ceres/
schur_jacobi_preconditioner.h 34 // Bundle Adjustment in the Large
58 // from Motion/Bundle Adjustment problems. Full mathematical details
61 // Bundle Adjustment in the Large
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 308 THREAD_LOCAL int adjustment = 0; local
356 adjustment = a;
373 adjustment = 0;
377 if (adjustment >= MAX_ADJUSTMENT)
379 adjustment++;
381 adjustment = 0;
385 clock_reg = tv.tv_usec*10 + adjustment;
390 adjustment += *num - 1;
391 last.tv_usec += adjustment / 10;
392 adjustment = adjustment % 10
    [all...]

Completed in 337 milliseconds

1 2 3 4 5 6 7 8 91011>>