HomeSort by relevance Sort by last modified time
    Searched refs:matrix_ (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/ui/gfx/
transform.cc 40 : matrix_(SkMatrix44::kUninitialized_Constructor)
42 matrix_.setDouble(0, 0, col1row1);
43 matrix_.setDouble(1, 0, col1row2);
44 matrix_.setDouble(2, 0, col1row3);
45 matrix_.setDouble(3, 0, col1row4);
47 matrix_.setDouble(0, 1, col2row1);
48 matrix_.setDouble(1, 1, col2row2);
49 matrix_.setDouble(2, 1, col2row3);
50 matrix_.setDouble(3, 1, col2row4);
52 matrix_.setDouble(0, 2, col3row1)
    [all...]
transform.h 30 Transform() : matrix_(SkMatrix44::kIdentity_Constructor) {}
35 : matrix_(SkMatrix44::kUninitialized_Constructor) {}
36 Transform(const Transform& rhs) : matrix_(rhs.matrix_) {}
39 : matrix_(lhs.matrix_, rhs.matrix_) {}
54 bool operator==(const Transform& rhs) const { return matrix_ == rhs.matrix_; }
55 bool operator!=(const Transform& rhs) const { return matrix_ != rhs.matrix_;
226 SkMatrix44 matrix_; member in class:gfx::Transform
    [all...]
  /external/ceres-solver/internal/ceres/
preconditioner.cc 42 : matrix_(CHECK_NOTNULL(matrix)) {
55 matrix_->RightMultiply(x, y);
59 return matrix_->num_rows();
partitioned_matrix_view.h 103 int num_rows() const { return matrix_.num_rows(); }
104 int num_cols() const { return matrix_.num_cols(); }
110 const BlockSparseMatrix& matrix_; member in class:ceres::internal::PartitionedMatrixView
partitioned_matrix_view.cc 50 : matrix_(matrix),
52 const CompressedRowBlockStructure* bs = matrix_.block_structure();
83 CHECK_EQ(num_cols_e_ + num_cols_f_, matrix_.num_cols());
95 const CompressedRowBlockStructure* bs = matrix_.block_structure();
99 const double* values = matrix_.values();
115 const CompressedRowBlockStructure* bs = matrix_.block_structure();
122 const double* values = matrix_.values();
140 const CompressedRowBlockStructure* bs = matrix_.block_structure();
144 const double* values = matrix_.values();
160 const CompressedRowBlockStructure* bs = matrix_.block_structure()
    [all...]
compressed_row_sparse_matrix_test.cc 223 matrix_.reset(new CompressedRowSparseMatrix(4, 4, 7));
224 int* rows = matrix_->mutable_rows();
225 int* cols = matrix_->mutable_cols();
226 double* values = matrix_->mutable_values();
253 scoped_ptr<CompressedRowSparseMatrix> matrix_; member in class:ceres::internal::SolveLowerTriangularTest
259 matrix_->SolveLowerTriangularInPlace(rhs_and_solution);
269 matrix_->SolveLowerTriangularTransposeInPlace(rhs_and_solution);
preconditioner.h 161 const SparseMatrix* matrix_; member in class:ceres::internal::SparseMatrixPreconditionerWrapper
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_tree_browser_cell.h 21 NSMatrix* matrix_; // weak variable
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_tree_browser_cell.h 20 NSMatrix* matrix_; // weak variable
  /external/chromium_org/media/base/
channel_mixer.cc 84 std::vector< std::vector<float> >* matrix_; member in class:media::MatrixBuilder
105 // Helper methods for updating |matrix_| with the proper value for
146 remapping_ = matrix_builder.CreateTransformationMatrix(&matrix_);
151 matrix_ = matrix;
154 matrix_->reserve(output_channels_);
156 matrix_->push_back(std::vector<float>(input_channels_, 0));
167 (*matrix_)[i][i] = 1;
185 DCHECK_LT(static_cast<size_t>(output_ch_index), matrix_->size());
187 (*matrix_)[output_ch_index].size());
188 (*matrix_)[output_ch_index][input_ch_index] = 1
    [all...]
channel_mixer.h 39 std::vector< std::vector<float> > matrix_; member in class:media::ChannelMixer
42 // channels and don't need to do a multiply-accumulate loop over |matrix_|.
  /packages/inputmethods/PinyinIME/jni/share/
matrixsearch.cpp 63 matrix_ = NULL;
96 matrix_ = reinterpret_cast<MatrixRow*>(share_buf_ + mtrx_nd_size + dmi_size);
213 matrix_[0].mtrx_nd_pos = mtrx_nd_pool_used_;
214 matrix_[0].mtrx_nd_num = 1;
218 MatrixNode *node = mtrx_nd_pool_ + matrix_[0].mtrx_nd_pos;
225 matrix_[0].dmi_pos = 0;
226 matrix_[0].dmi_num = 0;
227 matrix_[0].dmi_has_full_id = 1;
228 matrix_[0].mtrx_nd_fixed = node;
253 if (clear_dmi_this_step && matrix_[ch_pos].dmi_num > 0)
    [all...]
  /external/chromium_org/cc/output/
filter_operation.cc 18 return !memcmp(matrix_, other.matrix_, sizeof(matrix_));
35 memset(matrix_, 0, sizeof(matrix_));
48 memset(matrix_, 0, sizeof(matrix_));
58 memcpy(matrix_, matrix, sizeof(matrix_));
68 memset(matrix_, 0, sizeof(matrix_))
    [all...]
filter_operation.h 58 return matrix_;
151 matrix_[i] = matrix[i];
187 SkScalar matrix_[20]; member in class:cc::FilterOperation
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_view_mac.h 51 OmniboxPopupMatrix* matrix() { return matrix_; }
93 base::scoped_nsobject<OmniboxPopupMatrix> matrix_; member in class:OmniboxPopupViewMac
  /packages/inputmethods/PinyinIME/jni/include/
matrixsearch.h 199 MatrixRow *matrix_; // The first row is for starting member in class:ime_pinyin::MatrixSearch

Completed in 2598 milliseconds