/external/ceres-solver/examples/ |
curve_fitting.cc | 152 Solver::Options options; local 153 options.max_num_iterations = 25; 154 options.linear_solver_type = ceres::DENSE_QR; 155 options.minimizer_progress_to_stdout = true; 158 Solve(options, &problem, &summary);
|
/external/ceres-solver/internal/ceres/ |
c_api.cc | 177 // TODO(keir): Obviously, this way of setting options won't scale or last. 178 // Instead, figure out a way to specify some of the options without 180 ceres::Solver::Options options; local 181 options.max_num_iterations = 100; 182 options.linear_solver_type = ceres::DENSE_QR; 183 options.minimizer_progress_to_stdout = true; 186 ceres::Solve(options, problem, &summary);
|
dense_normal_cholesky_solver.cc | 49 const LinearSolver::Options& options) 50 : options_(options) {}
|
dense_qr_solver.cc | 47 DenseQRSolver::DenseQRSolver(const LinearSolver::Options& options) 48 : options_(options) {
|
levenberg_marquardt_strategy.cc | 48 const TrustRegionStrategy::Options& options) 49 : linear_solver_(options.linear_solver), 50 radius_(options.initial_radius), 51 max_radius_(options.max_radius), 52 min_diagonal_(options.min_lm_diagonal), 53 max_diagonal_(options.max_lm_diagonal),
|
schur_eliminator.cc | 51 SchurEliminatorBase::Create(const LinearSolver::Options& options) { 53 if ((options.row_block_size == 2) && 54 (options.e_block_size == 2) && 55 (options.f_block_size == 2)) { 56 return new SchurEliminator<2, 2, 2>(options); 58 if ((options.row_block_size == 2) && 59 (options.e_block_size == 2) && 60 (options.f_block_size == 3)) { 61 return new SchurEliminator<2, 2, 3>(options); [all...] |
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 133 template<typename _Scalar, int Rows=Dynamic, int Cols=Dynamic, int Supers=Dynamic, int Subs=Dynamic, int Options=0> class BandMatrix; 260 template<typename Scalar, int Options = AutoAlign> class Quaternion; 262 template <typename _Scalar, int _AmbientDim, int Options=AutoAlign> class ParametrizedLine; 263 template <typename _Scalar, int _AmbientDim, int Options=AutoAlign> class Hyperplane;
|
/external/eigen/Eigen/src/UmfPackSupport/ |
UmfPackSupport.h | 112 template<typename Scalar, int Options, typename StorageIndex> 113 struct umfpack_helper_is_sparse_plain<SparseMatrix<Scalar,Options,StorageIndex> > 115 template<typename Scalar, int Options, typename StorageIndex> 116 struct umfpack_helper_is_sparse_plain<MappedSparseMatrix<Scalar,Options,StorageIndex> >
|
/external/eigen/test/ |
geo_transformations.cpp | 15 template<typename Scalar, int Mode, int Options> void non_projective_only() 23 typedef Transform<Scalar,3,Mode,Options> Transform3; 75 template<typename Scalar, int Mode, int Options> void transformations() 89 typedef Transform<Scalar,2,Mode,Options> Transform2; 90 typedef Transform<Scalar,3,Mode,Options> Transform3; 471 template<typename Scalar, int Dim, int Options> void transform_products() 474 typedef Transform<Scalar,Dim,Projective,Options> Proj; 475 typedef Transform<Scalar,Dim,Affine,Options> Aff; 476 typedef Transform<Scalar,Dim,AffineCompact,Options> AffC;
|
ref.cpp | 42 typedef Matrix<Scalar,Dynamic,Dynamic,MatrixType::Options> DynMatrixType; 43 typedef Matrix<RealScalar,Dynamic,Dynamic,MatrixType::Options> RealDynMatrixType; 91 typedef Matrix<Scalar,Dynamic,1,VectorType::Options> DynMatrixType; 93 typedef Matrix<RealScalar,Dynamic,1,VectorType::Options> RealDynMatrixType;
|
/external/fonttools/MetaTools/ |
roundTrip.py | 3 """usage: ttroundtrip [options] font1 ... fontN 11 This tool supports some of ttx's command line options (-i, -t 32 def roundTrip(ttFile1, options, report): 39 ttx.ttDump(ttFile1, xmlFile1, options) 40 if options.onlyTables or options.skipTables: 41 options.mergeFile = ttFile1 42 ttx.ttCompile(xmlFile1, ttFile2, options) 43 options.mergeFile = None 44 ttx.ttDump(ttFile2, xmlFile2, options) [all...] |
/external/llvm/lib/Target/Mips/ |
MipsFrameLowering.cpp | 100 return MF.getTarget().Options.DisableFramePointerElim(MF) ||
|
MipsTargetObjectFile.cpp | 41 InitializeELF(TM.Options.UseInitArray);
|
/external/llvm/ |
llvm-tblgen-rules.mk | 206 ifneq ($(findstring Options.inc,$(tblgen_gen_tables)),) 207 $(generated_sources)/Options.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE) 208 $(generated_sources)/Options.inc: $(tblgen_source_dir)/Options.td \
|
/external/mesa3d/src/egl/main/ |
egldisplay.h | 133 /* options that affect how the driver initializes the display */ 137 } Options;
|
/external/regex-re2/re2/ |
filtered_re2.cc | 25 const RE2::Options& options, int* id) { 26 RE2* re = new RE2(pattern, options); 30 if (options.log_errors()) {
|
set.cc | 15 RE2::Set::Set(const RE2::Options& options, RE2::Anchor anchor) { 16 options_.Copy(options);
|
/external/skia/src/codec/ |
SkGifCodec.cpp | 452 int* inputColorCount, const Options& opts) { 466 void SkGifCodec::initializeSwizzler(const SkImageInfo& dstInfo, const Options& opts) { 483 const Options& opts, 523 const SkCodec::Options& opts, SkPMColor inputColorPtr[], int* inputColorCount) { 524 return this->prepareToDecode(dstInfo, inputColorPtr, inputColorCount, this->options()); 561 fSwizzler->fill(fillInfo, dst, rowBytes, fillValue, this->options().fZeroInitialized);
|
SkSwizzler.h | 94 * @param options Indicates if dst is zero-initialized. The 103 * options->fSubset is non-NULL, frame must be NULL. 108 const SkImageInfo& dstInfo, const SkCodec::Options&, 190 // using options->fSubset. We will store subset information in
|
/external/v8/test/unittests/base/platform/ |
platform-unittest.cc | 41 ThreadLocalStorageTest() : Thread(Options("ThreadLocalStorageTest")) {
|
/external/vboot_reference/scripts/keygeneration/ |
create_new_keys.sh | 16 Options: 18 --4k Use 4k keys instead of 8k (enables options below)
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
SerializeOptions.java | 10 package com.adobe.xmp.options; 18 * Options for {@link XMPMetaFactory#serializeToBuffer(XMPMeta, SerializeOptions)}. 22 public final class SerializeOptions extends Options 93 * Constructor using inital options 94 * @param options the inital options 95 * @throws XMPException Thrown if options are not consistant. 97 public SerializeOptions(int options) throws XMPException 99 super(options); 352 * <em>Note:</em> This options can only be set by unit tests [all...] |
/frameworks/base/libs/hwui/tests/macrobench/ |
TestSceneRunner.cpp | 65 void run(const TestScene::Info& info, const TestScene::Options& opts) {
|
/packages/apps/Camera2/src/com/android/camera/session/ |
CaptureSessionImpl.java | 370 BitmapFactory.Options options = new BitmapFactory.Options(); 371 options.inJustDecodeBounds = true; 372 BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length, options); 373 int width = options.outWidth; 374 int height = options.outHeight; 420 BitmapFactory.Options options = new BitmapFactory.Options(); [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSource.java | 129 public Bitmap next(BitmapFactory.Options options, int longSide, int shortSide) { 143 image = load(imageData, options, longSide, shortSide); 153 options, longSide, shortSide); 159 public Bitmap load(ImageData data, BitmapFactory.Options options, int longSide, int shortSide) { 168 options.inJustDecodeBounds = true; 169 options.inSampleSize = 1; 170 image = BitmapFactory.decodeStream(new BufferedInputStream(bis), null, options); 171 int rawLongSide = Math.max(options.outWidth, options.outHeight) [all...] |