/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...] |
ratectrl.c | 177 /* % adjustment to target kf size based on seperation from previous frame */ 398 /* adjustment up based on q: this factor ranges from ~1.2 to 2.2. */ 401 /* frame separation adjustment ( down) */ 617 int Adjustment; 661 /* Make rate adjustment to recover bits spent in key frame 667 Adjustment = (cpi->kf_bitrate_adjustment <= cpi->kf_overspend_bits) ? cpi->kf_bitrate_adjustment : cpi->kf_overspend_bits; 669 if (Adjustment > (cpi->per_frame_bandwidth - min_frame_target)) 670 Adjustment = (cpi->per_frame_bandwidth - min_frame_target); 672 cpi->kf_overspend_bits -= Adjustment; 678 cpi->this_frame_target = cpi->per_frame_bandwidth - Adjustment; [all...] |
/external/webkit/Source/WebCore/platform/gtk/ |
MainFrameScrollbarGtk.cpp | 40 // as GtkScrolledWindow). The adjustment may also be null, in which case there 45 MainFrameScrollbarGtk::MainFrameScrollbarGtk(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, GtkAdjustment* adjustment) 49 attachAdjustment(adjustment); 61 void MainFrameScrollbarGtk::attachAdjustment(GtkAdjustment* adjustment) 63 if (m_adjustment.get() == adjustment) 68 m_adjustment = adjustment;
|
ScrollbarThemeGtk2.cpp | 111 // The adjustment controls the rendering of the scrollbar thumb. If it's not set 113 GtkAdjustment* adjustment = gtk_range_get_adjustment(GTK_RANGE(widget)); local 114 gtk_adjustment_set_value(adjustment, scrollbar->currentPos()); 115 gtk_adjustment_set_lower(adjustment, 0); 116 gtk_adjustment_set_upper(adjustment, scrollbar->maximum()); 120 gtk_adjustment_set_page_size(adjustment, rect.height()); 123 gtk_adjustment_set_page_size(adjustment, rect.width());
|
GtkVersioning.c | 32 void gtk_adjustment_configure(GtkAdjustment* adjustment, gdouble value, gdouble lower, gdouble upper, 35 g_object_freeze_notify(G_OBJECT(adjustment)); 37 g_object_set(adjustment, 45 g_object_thaw_notify(G_OBJECT(adjustment)); 47 gtk_adjustment_changed(adjustment); 48 gtk_adjustment_value_changed(adjustment);
|
/external/ceres-solver/docs/ |
bundleadjustment.tex | 2 \chapter{Bundle Adjustment} 4 One of the main reasons for writing Ceres was our need to solve large scale bundle adjustment problems~\cite{hartley-zisserman-book-2004,triggs-etal-1999}. 6 Given a set of measured image feature locations and correspondences, the goal of bundle adjustment is to find 3D point positions and camera parameters that minimize the reprojection error. This optimization problem is usually formulated as a non-linear least squares problem, where the error is the squared $L_2$ norm of the difference between the observed feature location and the projection of the corresponding 3D point on the image plane of the camera. Ceres has extensive support for solving bundle adjustment problems. 69 Given this functor, the bundle adjustment problem can be constructed as follows: 71 // Create residuals for each observation in the bundle adjustment problem. The 89 Again note that that the problem construction for bundle adjustment is very similar to the curve fitting example. 91 One way to solve this problem is to set \texttt{Solver::Options::linear\_solver\_type} to \texttt{SPARSE\_NORMAL\_CHOLESKY} and call \texttt{Solve}. And while this is a reasonable thing to do, bundle adjustment problems have a special sparsity structure that can be exploited to solve them much more efficiently. Ceres provides three specialized solvers (collectively known as Schur based solvers) for this task. The example code uses the simplest of them \texttt{DENSE\_SCHUR}. 101 For a more sophisticated bundle adjustment example which demonstrates the use of Ceres' more advanced features including its various linear solvers, robust loss functions and local parameterizations see \texttt{examples/bundle\_adjuster.cc}.
|
further.tex | 4 For a short but informative introduction to the subject we recommend the booklet by Madsel et al.~\cite{madsen2004methods}. For a general introduction to non-linear optimization we recommend the text by Nocedal \& Wright~\cite{nocedal2000numerical}. Bj{\"o}rck's book remains the seminal reference on least squares problems~\cite{bjorck1996numerical}. Trefethen \& Bau's book is our favourite text on introductory numerical linear algebra~\cite{trefethen1997numerical}. Triggs et al., provide a thorough coverage of the bundle adjustment problem~\cite{triggs-etal-1999}.
|
/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/lib/StaticAnalyzer/Core/ |
SimpleConstraintManager.cpp | 217 static void computeAdjustment(SymbolRef &Sym, llvm::APSInt &Adjustment) { 223 Adjustment = APSIntType(Adjustment).convert(SE->getRHS()); 225 // Don't forget to negate the adjustment if it's being subtracted. 229 Adjustment = -Adjustment; 247 // The adjustment is "constant1" in the above expression. It's used to 251 // the subclasses of SimpleConstraintManager to handle the adjustment. 253 llvm::APSInt Adjustment = WraparoundType.getZeroValue(); 254 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/clang/test/CXX/special/class.dtor/ |
p3.cpp | 4 // the exception specification adjustment occurs.
|
/external/webkit/Source/WebKit/gtk/tests/ |
testwebview.c | 146 GtkAdjustment* adjustment; local 170 adjustment = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(scrolled_window)); 171 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), ==, 0.0); 177 action is performed and afterward it is checked if the adjustment 189 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), !=, 0.0); 202 GtkAdjustment* adjustment; local 235 adjustment = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(scrolled_window)); 236 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), ==, 0.0); 238 lower = gtk_adjustment_get_lower(adjustment); 239 upper = gtk_adjustment_get_upper(adjustment); [all...] |
/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);
|
/external/clang/test/CodeGenCXX/ |
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/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...] |
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlsetgamma.html | 128 > is identity (i.e., no adjustment 132 you can directly specify lookup tables for gamma adjustment with 148 >Returns -1 on error (or if gamma adjustment is not supported).</P
|
/external/skia/legacy/include/core/ |
SkDeviceProfile.h | 32 * gammaExp is typically between 1.0 and 2.2. For no gamma adjustment, 36 * adjustment, specify 0.0
|
/external/skia/src/core/ |
SkDeviceProfile.h | 34 * gammaExp is typically between 1.0 and 2.2. For no gamma adjustment, 38 * adjustment, specify 0.0
|