/external/eigen/doc/snippets/ |
ComplexEigenSolver_eigenvectors.cpp | 4 << endl << ces.eigenvectors().col(1) << endl;
|
EigenSolver_eigenvectors.cpp | 4 << endl << es.eigenvectors().col(0) << endl;
|
SelfAdjointEigenSolver_eigenvectors.cpp | 4 << endl << es.eigenvectors().col(1) << endl;
|
Tutorial_commainit_01b.cpp | 4 m.col(2).tail(2) << 6, 9;
|
LLT_solve.cpp | 4 VectorXf elevations = 2*samples.col(0) + 3*samples.col(1) + VectorXf::Random(12)*0.1;
|
Tutorial_solve_multiple_rhs.cpp | 8 cout << X.col(0) << endl; 10 cout << X.col(1) << endl;
|
/external/libvpx/libvpx/vp8/common/ |
mv.h | 21 short col; member in struct:__anon24463
|
/external/skia/bench/ |
TableBench.cpp | 45 for (int col = 0; col < kNumCols; ++col) { 46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth, 48 (col+1) * kCellWidth, 52 SkRect bottom = SkRect::MakeLTRB(col * kCellWidth, 54 (col+1) * kCellWidth, 58 SkRect right = SkRect::MakeLTRB(col * kCellWidth + (kCellWidth-SK_Scalar1), 60 (col+1) * kCellWidth,
|
/external/skia/src/gpu/text/ |
GrDistanceFieldAdjustTable.cpp | 72 for (int col = 0; col < width - 1; ++col) { 73 if (rowPtr[col] <= 127 && rowPtr[col + 1] >= 128) { 75 float interp = (127.5f - rowPtr[col]) / (rowPtr[col + 1] - rowPtr[col]); 76 float borderAlpha = (col + interp) / 255.f;
|
/external/eigen/Eigen/src/SparseCore/ |
SparseColEtree.h | 77 for (StorageIndex col = 0; col < nc; col++) 79 StorageIndex pcol = col; 80 if(perm) pcol = perm[col]; 84 firstRowElt(row) = (std::min)(firstRowElt(row), col); 92 for (StorageIndex col = 0; col < nc; col++) 94 found_diag = col>=m [all...] |
/external/libhevc/common/x86/ |
ihevc_padding_ssse3_intr.c | 168 WORD32 col; local 184 for(col = 0; col < pad_size; col += 8) 186 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b); 240 WORD32 col; local 254 for(col = 0; col < pad_size; col += 8) 256 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b) 310 WORD32 col; local [all...] |
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_colrow.cpp | 14 m.col(2) += 3 * m.col(0);
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineInplaceLU.h | 131 const Index& col = row; local 132 for (typename MatrixType::InnerLowerIterator lIt(m_lu, col); lIt; ++lIt) { 137 typename MatrixType::InnerLowerIterator lIt(m_lu, col); 156 typename MatrixType::InnerLowerIterator lIt3(m_lu, col); 169 typename MatrixType::InnerLowerIterator lIt2(m_lu, col); 195 for (Index col = llIt.col(); col < row; col++) { 196 if (m_lu.coeffExistLower(row, col)) { 235 const Index col = row; local 317 Index col = lIt.col(); local [all...] |
/cts/tools/dasm/src/java_cup/ |
parse_reduce_table.java | 67 for (int col = 0; col < under_state[row].size(); col++) 70 goto_st = under_state[row].under_non_term[col]; 75 result += col + ":";
|
/external/libhevc/common/ |
ihevc_chroma_intra_pred_filters.c | 475 WORD32 row, col; local 499 for(col = 0; col < (2 * nt); col += 2) 501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2) 503 + (col / 2 + 1) * pu1_ref[2 * (three_nt + 1)] 504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col] 507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2 566 WORD32 row, col; local 667 WORD32 row, col; local 728 WORD32 row, col; local 788 WORD32 row, col; local 855 WORD32 row, col; local 928 WORD32 row, col; local 1021 WORD32 row, col, k; local 1138 WORD32 row, col, k; local 1245 WORD32 row, col; local [all...] |
/external/pdfium/xfa/fxbarcode/datamatrix/ |
BC_DefaultPlacement.h | 22 bool getBit(int32_t col, int32_t row); 23 void setBit(int32_t col, int32_t row, bool bit); 24 bool hasBit(int32_t col, int32_t row); 32 void module(int32_t row, int32_t col, int32_t pos, int32_t bit); 33 void utah(int32_t row, int32_t col, int32_t pos);
|
/external/libavc/common/ |
ih264_padding.c | 218 WORD32 row, col; local 231 for (col = -pad_size; col < 0; col++) 233 pu2_src[col] = u2_uv_val; 312 WORD32 row, col; local 323 for (col = 0; col < pad_size; col++) 325 pu2_src[col] = u2_uv_val [all...] |
/frameworks/support/design/tests/src/android/support/design/widget/ |
CoordinatorLayoutTest.java | 87 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 88 final View view = new View(col.getContext()); 94 .onApplyWindowInsets(same(col), same(view), any(WindowInsetsCompat.class)); 96 // Assert that the CoL is currently not set to fitSystemWindows 97 assertFalse(col.getFitsSystemWindows()); 104 final CoordinatorLayout.LayoutParams lp = col.generateDefaultLayoutParams(); 106 col.addView(view, lp); 115 col.requestApplyInsets(); 122 .onApplyWindowInsets(same(col), same(view), any(WindowInsetsCompat.class)); 128 col.setFitsSystemWindows(true) 141 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 192 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 247 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 300 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 346 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 380 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 419 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 468 final CoordinatorLayout col = activity.mCoordinatorLayout; local 506 final CoordinatorLayout col = activity.mCoordinatorLayout; local 571 final CoordinatorLayout col = activity.mCoordinatorLayout; local 637 final CoordinatorLayout col = activity.mCoordinatorLayout; local 685 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 746 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local [all...] |
/external/libjpeg-turbo/ |
jccolext.c | 41 register JDIMENSION col; local 50 for (col = 0; col < num_cols; col++) { 61 outptr0[col] = (JSAMPLE) 65 outptr1[col] = (JSAMPLE) 69 outptr2[col] = (JSAMPLE) 98 register JDIMENSION col; local 105 for (col = 0; col < num_cols; col++) 132 register JDIMENSION col; local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
BigMatrixImpl.java | 286 for (int col = 0; col < columnCount; col++) { 287 outDataRow[col] = dataRow[col].add(m.getEntry(row, col)); 313 for (int col = 0; col < columnCount; col++) { 314 outDataRow[col] = dataRow[col].add(mRow[col]) [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_bitmap.c | 54 GLint row, col; local 84 for (col = 0; col < width; col++) { 86 span.array->x[count] = px + col; 106 for (col = 0; col < width; col++) { 108 span.array->x[count] = px + col; 154 GLint row, col; [all...] |
/external/libjpeg-turbo/java/ |
TJUnitTest.java | 160 int index, row, col, halfway = 16; local 165 for (col = 0; col < w; col++) { 167 index = pitch * (h - row - 1) + col; 169 index = pitch * row + col; 170 if (((row / 8) + (col / 8)) % 2 == 0) 181 for (col = 0; col < w; col++) 228 int index, row, col, halfway = 16; local 312 int index, row, col, retval = 1; local 435 int index, row, col, retval = 1; local 538 int row, col; local [all...] |
/external/dng_sdk/source/ |
dng_pixel_buffer.h | 126 int32 col, 132 col < fArea.l || col >= fArea.r || 142 static_cast<int64> (col) - static_cast<int64> (fArea.l)); 229 /// \param col Start column for buffer pointer. 234 int32 col, 238 return InternalPixel (row, col, plane); 244 /// \param col Start column for buffer pointer. 249 int32 col, 255 return InternalPixel (row, col, plane) [all...] |
/external/deqp/framework/common/ |
tcuMatrix.hpp | 68 inline const T& operator() (int row, int col) const { return m_data[col][row]; } 69 inline T& operator() (int row, int col) { return m_data[col][row]; } 315 for (int col = 0; col < Cols; col++) 316 (*this)(row, col) = (row == col) ? T(1) : T(0); 324 for (int col = 0; col < Cols; col++ [all...] |
/external/eigen/failtest/ |
ref_2.cpp | 13 call_ref(A.col(3));
|