HomeSort by relevance Sort by last modified time
    Searched refs:scoped_array (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/ceres-solver/internal/ceres/
linear_least_squares_problems.h 52 scoped_array<double> b;
53 scoped_array<double> D;
59 scoped_array<double> x;
61 scoped_array<double> x_D;
block_random_access_dense_matrix.h 89 scoped_array<double> values_;
90 scoped_array<CellInfo> cell_infos_;
scratch_evaluate_preparer.h 63 scoped_array<double> jacobian_scratch_;
triplet_sparse_matrix.h 121 scoped_array<int> rows_;
122 scoped_array<int> cols_;
123 scoped_array<double> values_;
block_sparse_matrix.h 92 scoped_array<double> values_;
cgnr_linear_operator.h 114 scoped_array<double> z_;
residual_block.h 137 scoped_array<ParameterBlock*> parameter_blocks_;
cost_function_to_functor_test.cc 58 scoped_array<double> parameters(new double[num_parameters]);
63 scoped_array<double> residuals(new double[num_residuals]);
64 scoped_array<double> jacobians(new double[num_parameters * num_residuals]);
66 scoped_array<double> actual_residuals(new double[num_residuals]);
67 scoped_array<double> actual_jacobians
70 scoped_array<double*> parameter_blocks(
72 scoped_array<double*> jacobian_blocks(
74 scoped_array<double*> actual_jacobian_blocks(
iterative_schur_complement_solver_test.cc 115 scoped_array<double> b_;
116 scoped_array<double> D_;
schur_eliminator.h 333 scoped_array<double> buffer_;
341 scoped_array<double> chunk_outer_product_buffer_;
program_evaluator.h 326 scoped_array<double> residual_block_evaluate_scratch;
328 scoped_array<double> gradient;
330 scoped_array<double> residual_block_residuals;
331 scoped_array<double*> jacobian_block_ptrs;
370 scoped_array<EvaluatePreparer> evaluate_preparers_;
371 scoped_array<EvaluateScratch> evaluate_scratch_;
schur_complement_solver_test.cc 131 scoped_array<double> b;
132 scoped_array<double> x;
133 scoped_array<double> D;
134 scoped_array<double> sol;
135 scoped_array<double> sol_d;
residual_block_utils_test.cc 57 scoped_array<double> scratch(
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.h 24 template <typename T> class scoped_array { class
27 scoped_array(scoped_array const&);
28 scoped_array& operator=(const scoped_array&);
31 explicit scoped_array(T* p = 0) : ptr_(p) {} function in class:scoped_array
32 ~scoped_array() {
100 scoped_array<uint8> colTab_;
  /external/oprofile/libutil++/
utility.h 57 template<typename T> class scoped_array { class
59 explicit scoped_array(T * p = 0) : p_(p) {} function in class:scoped_array
60 ~scoped_array() { delete [] p_; }
72 void swap(scoped_array & sp) {
79 scoped_array & operator=(scoped_array const &);
80 scoped_array(scoped_array const &);
  /external/ceres-solver/include/ceres/internal/
scoped_ptr.h 33 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
48 template <class C> class scoped_array;
184 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
187 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
188 // or is NULL. A scoped_array<C> owns the object that it points to.
189 // scoped_array<T> is thread-compatible, and once you index into it,
192 // Size: sizeof(scoped_array<C>) == sizeof(C*)
194 class scoped_array { class in namespace:ceres::internal
200 // There is no way to create an uninitialized scoped_array.
202 explicit scoped_array(C* p = NULL) : array_(p) { function in class:ceres::internal::scoped_array
    [all...]
  /external/chromium_org/third_party/cld/base/
scoped_ptr.h 10 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
30 template <class C> class scoped_array;
168 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
171 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
172 // or is NULL. A scoped_array<C> owns the object that it points to.
173 // scoped_array<T> is thread-compatible, and once you index into it,
176 // Size: sizeof(scoped_array<C>) == sizeof(C*)
178 class scoped_array { class
185 // There is no way to create an uninitialized scoped_array.
187 explicit scoped_array(C* p = NULL) : array_(p) { function in class:scoped_array
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.h 81 scoped_array<scoped_ptr<MessageGenerator> > message_generators_;
82 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_;
83 scoped_array<scoped_ptr<ServiceGenerator> > service_generators_;
84 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
cpp_message.h 159 scoped_array<scoped_ptr<MessageGenerator> > nested_generators_;
160 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_;
161 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
normalizedunicodetext.h 61 scoped_array<WCHAR> text_;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_field.h 95 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
96 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
  /external/oprofile/libutil++/tests/
utility_tests.cpp 83 scoped_array<A> b(new A[10]);
85 scoped_array<A> a(new A[10]);
  /external/clang/test/SemaCXX/
new-delete.cpp 471 template <class C> struct scoped_array { struct in namespace:PR12061
472 scoped_array(C* p = __null);
475 Foo() : a_(new scoped_array<int>[5]) { }
476 scoped_array< scoped_array<int> > a_;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.h 234 scoped_array<uint8> buffer_;
323 scoped_array<uint8> buffer_;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h 448 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
451 template <class C> class scoped_array;
540 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
543 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
544 // or is NULL. A scoped_array<C> owns the object that it points to.
546 // Size: sizeof(scoped_array<C>) == sizeof(C*)
548 class scoped_array { class in namespace:google::protobuf::internal
555 // There is no way to create an uninitialized scoped_array.
557 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array
561 ~scoped_array() {
    [all...]

Completed in 3609 milliseconds

1 2 3