HomeSort by relevance Sort by last modified time
    Searched refs:Options (Results 326 - 350 of 956) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/misc/
SparseSolve.h 24 typedef SparseMatrix<typename Rhs::Scalar, Rhs::Options, typename Rhs::Index> ReturnType;
78 Rhs::PlainObject::Options,
  /external/llvm/include/llvm-c/
ExecutionEngine.h 90 struct LLVMMCJITCompilerOptions *Options, size_t SizeOfOptions);
93 * Create an MCJIT execution engine for a module, with the given options. It is
94 * the responsibility of the caller to ensure that all fields in Options up to
99 * LLVMMCJITCompilerOptions options;
100 * LLVMInitializeMCJITCompilerOptions(&options, sizeof(options));
101 * ... fill in those options you care about
102 * LLVMCreateMCJITCompilerForModule(&jit, mod, &options, sizeof(options),
111 struct LLVMMCJITCompilerOptions *Options, size_t SizeOfOptions
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSubtarget.h 193 /// Options passed via command line that could influence the target
194 const TargetOptions &Options;
206 const std::string &FS, const TargetOptions &Options);
216 /// subtarget options. Definition of function is auto generated by tblgen.
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.cpp 69 const TargetOptions &Options,
73 : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
100 /// Hexagon Code Generator Pass Configuration Options.
  /external/llvm/lib/Target/R600/
AMDGPUTargetMachine.cpp 53 TargetOptions Options,
58 LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OptLevel),
  /external/smack/src/org/xbill/DNS/
SIGBase.java 95 if (Options.check("multiline"))
104 if (Options.check("multiline")) {
TKEYRecord.java 122 if (Options.check("multiline"))
131 if (Options.check("multiline")) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsActivity.java 69 BitmapFactory.Options opts = new BitmapFactory.Options();
  /frameworks/volley/src/com/android/volley/toolbox/
ImageRequest.java 139 BitmapFactory.Options decodeOptions = new BitmapFactory.Options();
  /packages/apps/Browser/src/com/android/browser/
WallpaperHandler.java 101 BitmapFactory.Options options = new BitmapFactory.Options(); local
102 options.inJustDecodeBounds = true;
106 new BufferedInputStream(inputstream), null, options);
112 int bmWidth = options.outWidth;
113 int bmHeight = options.outHeight;
121 options.inJustDecodeBounds = false;
122 options.inSampleSize = scale;
132 null, options);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
PlaceholderManager.java 139 BitmapFactory.Options options = new BitmapFactory.Options();
140 options.inJustDecodeBounds = true;
141 BitmapFactory.decodeByteArray(placeholder, 0, placeholder.length, options);
142 int width = options.outWidth;
143 int height = options.outHeight;
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 144 BitmapFactory.Options options = new BitmapFactory.Options(); local
145 options.inJustDecodeBounds = true;
147 input.getFileDescriptor(), options); local
148 mWidth = options.outWidth;
149 mHeight = options.outHeight;
Image.java 153 BitmapFactory.Options options = new BitmapFactory.Options(); local
154 options.inDither = false;
155 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
157 Images.Thumbnails.MINI_KIND, options, false);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleEditor.java 96 final BitmapFactory.Options dbo = new BitmapFactory.Options();
  /art/runtime/
runtime.h 64 typedef std::vector<std::pair<std::string, const void*> > Options;
89 static ParsedOptions* Create(const Options& options, bool ignore_unrecognized);
139 static bool Create(const Options& options, bool ignore_unrecognized)
407 bool Init(const Options& options, bool ignore_unrecognized)
  /external/ceres-solver/examples/
circle_fit.cc 150 Solver::Options options; local
151 options.max_num_iterations = 500;
152 options.linear_solver_type = ceres::DENSE_QR;
154 Solve(options, &problem, &summary);
powell.cc 127 Solver::Options options; local
129 &options.minimizer_type))
131 << ", valid options are: trust_region and line_search.";
133 options.max_num_iterations = 100;
134 options.linear_solver_type = ceres::DENSE_QR;
135 options.minimizer_progress_to_stdout = true;
145 Solve(options, &problem, &summary);
  /external/ceres-solver/internal/ceres/
iterative_schur_complement_solver_test.cc 83 LinearSolver::Options options; local
84 options.type = DENSE_QR;
85 scoped_ptr<LinearSolver> qr(LinearSolver::Create(options));
92 options.elimination_groups.push_back(num_eliminate_blocks_);
93 options.elimination_groups.push_back(0);
94 options.max_num_iterations = num_cols_;
95 options.preconditioner_type = SCHUR_JACOBI;
96 IterativeSchurComplementSolver isc(options);
  /external/chromium/chrome/browser/sync/tools/
sync_listen_notifications.cc 65 base::Thread::Options options; local
66 options.message_loop_type = MessageLoop::TYPE_IO;
67 io_thread.StartWithOptions(options);
  /external/chromium/net/base/
network_config_watcher_mac.cc 116 base::Thread::Options thread_options(MessageLoop::TYPE_UI, 0);
  /external/chromium_org/chromeos/dbus/
fake_bluetooth_profile_manager_client.cc 35 const Options& options,
40 // check options for channel & psm
  /external/chromium_org/dbus/
mock_bus.h 19 MockBus(const Bus::Options& options);
26 int options));
36 ServiceOwnershipOptions options,
39 ServiceOwnershipOptions options));
signal_sender_verification_unittest.cc 38 base::Thread::Options thread_options;
43 Bus::Options bus_options;
71 TestService::Options options; local
72 options.dbus_task_runner = dbus_thread_->message_loop_proxy();
73 test_service_.reset(new TestService(options));
81 test_service2_.reset(new TestService(options));
271 TestService::Options options; local
272 options.dbus_task_runner = dbus_thread_->message_loop_proxy()
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_query_unittests.cc 20 gl_.Initialize(GLManager::Options());
  /external/chromium_org/net/base/
network_change_notifier_linux.cc 77 base::Thread::Options thread_options(base::MessageLoop::TYPE_IO, 0);

Completed in 842 milliseconds

<<11121314151617181920>>