HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 276 - 300 of 887) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 91 foreach col [lrange $E(*) 1 end] {
92 set c $E($col)
97 set es "Error at docid=$iDoc col=$iCol pos=$pos. Index is missing"
101 set es "Error at docid=$iDoc col=$iCol pos=$pos. Index "
148 # [$docid ?$col[$off1 $off2...]?...]
197 foreach col $ret($docid) {
198 foreach {iCol lPos} $col {}
  /external/chromium_org/ui/gfx/
interpolated_transform_unittest.cc 168 for (int col = 0; col < 3; ++col) {
169 float entry = m.get(row, col);
219 for (int col = 0; col < 3; ++col) {
220 float entry = m.get(row, col);
  /external/eigen/test/eigen2/
eigen2_determinant.cpp 38 m2.col(i).swap(m2.col(j));
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 102 v.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
111 v.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
122 H.col(k).tail(m - k - 1) = e;
125 v.tail(m - k).applyHouseholderOnTheLeft(H.col(k).tail(m - k - 1), tau.coeffRef(k), workspace.data());
148 H.col(k - 1).head(k) = v.head(k);
162 x_new.tail(m - k + 1).applyHouseholderOnTheLeft(H.col(k - 1).tail(m - k), tau.coeffRef(k - 1), workspace.data());
167 x_new.tail(m - i).applyHouseholderOnTheLeft(H.col(i).tail(m - i - 1), tau.coeffRef(i), workspace.data());
341 if(!internal::gmres(*mp_matrix, b.col(j), xj, Base::m_preconditioner, m_iterations, m_restart, m_error))
IncompleteCholesky.h 127 inline void updateList(const IdxType& colPtr, IdxType& rowIdx, SclType& vals, const Index& col, const Index& jk, IndexType& firstElt, VectorList& listCol);
161 m_scal(j) = m_L.col(j).norm();
241 inline void IncompleteCholesky<Scalar,_UpLo, OrderingType>::updateList(const IdxType& colPtr, IdxType& rowIdx, SclType& vals, const Index& col, const Index& jk, IndexType& firstElt, VectorList& listCol)
243 if (jk < colPtr(col+1) )
245 Index p = colPtr(col+1) - jk;
255 firstElt(col) = jk;
256 listCol[rowIdx(jk)].push_back(col);
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MarketIO.h 85 inline void PutMatrixElt(Scalar value, int row, int col, std::ofstream& out)
87 out << row << " "<< col << " " << value << "\n";
90 inline void PutMatrixElt(std::complex<Scalar> value, int row, int col, std::ofstream& out)
92 out << row << " " << col << " " << value.real() << " " << value.imag() << "\n";
200 int n(0), col(0);
206 newline >> n >> col; local
207 eigen_assert(n>0 && col>0);
242 internal::PutMatrixElt(it.value(), it.row()+1, it.col()+1, out);
243 // out << it.row()+1 << " " << it.col()+1 << " " << it.value() << "\n";
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.h 100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 191 int col = -1; local
210 col = i;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);
234 private void setFinished(State player, int col, int row, int diagonal) {
239 mGameView.setFinished(col, row, diagonal);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.h 174 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
175 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; }
176 RenderTableCell* primaryCellAt(unsigned row, unsigned col)
178 CellStruct& c = m_grid[row].row[col];
  /external/chromium_org/ui/webui/resources/css/
table.css 5 html.col-resize * {
6 cursor: col-resize !important;
110 cursor: col-resize;
  /external/eigen/demos/opengl/
camera.cpp 109 camAxes.col(2) = (-newDirection).normalized();
110 camAxes.col(0) = up.cross( camAxes.col(2) ).normalized();
111 camAxes.col(1) = camAxes.col(2).cross( camAxes.col(0) ).normalized();
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffVector.h 52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
  /external/jpeg/
jddctmgr.c 45 extern void armv6_idct(short *coefs, int *quans, unsigned char **rows, int col);
269 * coefficients scaled by scalefactor[row]*scalefactor[col], where
325 * coefficients scaled by scalefactor[row]*scalefactor[col], where
330 int row, col; local
338 for (col = 0; col < DCTSIZE; col++) {
341 aanscalefactor[row] * aanscalefactor[col]);
jdmerge.c 259 JDIMENSION col; local
273 for (col = cinfo->output_width >> 1; col > 0; col--) {
318 JDIMENSION col; local
334 for (col = cinfo->output_width >> 1; col > 0; col--) {
382 JDIMENSION col; local
400 for (col = cinfo->output_width >> 1; col > 0; col--)
456 JDIMENSION col; local
532 JDIMENSION col; local
617 JDIMENSION col; local
    [all...]
  /external/libedit/src/
filecomplete.c 360 size_t line, lines, col, cols, thisguy; local
385 for (col = 0; col < cols; col++) {
386 thisguy = line + col * lines;
390 col == 0 ? "" : " ", (int)width, matches[thisguy]);
  /external/aac/libSBRenc/src/
ps_main.cpp 551 INT group, bin, col, band; local
576 for (col=0; col<frameSize-HYBRID_READ_OFFSET; col++) {
578 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][0][i]));
579 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][1][i]));
580 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][0][i]));
581 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][1][i]));
587 for (col=frameSize-HYBRID_READ_OFFSET; col<frameSize; col++)
    [all...]
  /external/chromium_org/third_party/skia/gm/
beziereffects.cpp 86 int col = 0; variable
110 SkScalar x = SkScalarMul(col, w);
181 ++col;
182 if (numCols == col) {
183 col = 0;
244 int col = 0; variable
268 SkScalar x = SkScalarMul(col, w);
336 ++col;
337 if (numCols == col) {
338 col = 0
434 int col = 0; variable
    [all...]
  /external/chromium_org/chrome/browser/resources/hotword_audio_verification/
style.css 83 .col-3 {
89 .col-3 h4 {
94 .col-2 {
101 .col-2 h4 {
106 .col-spacing {
  /external/chromium_org/third_party/skia/src/images/
SkMovie_gif.cpp 120 const GifColorType& col = cmap->Colors[*src]; local
121 *dst = SkPackARGB32(0xFF, col.Red, col.Green, col.Blue);
200 uint32_t col)
216 sk_memset32(dst, col, copyWidth);
390 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor]; local
391 bgColor = SkColorSetARGB(0xFF, col.Red, col.Green, col.Blue)
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix.cc 397 ProductTerm(const int row, const int col, const int index)
398 : row(row), col(col), index(index) {
403 if (col == right.col) {
406 return col < right.col;
412 int col; member in struct:ceres::internal::__anon6385::ProductTerm
428 product[i].col != product[i - 1].col) {
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 361 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
364 // i.e., A = H A H' where H = I - h v v' and v = matA.col(i).tail(n-i-1)
365 matA.col(i).coeffRef(i+1) = 1;
368 * (conj(h) * matA.col(i).tail(remainingSize)));
370 hCoeffs.tail(n-i-1) += (conj(h)*Scalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(remainingSize)))) * matA.col(i).tail(n-i-1);
373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), -1);
375 matA.col(i).coeffRef(i+1) = beta;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_fxt1.c 1469 GLuint col[2][3]; local
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_fxt1.c 1469 GLuint col[2][3]; local
    [all...]
  /external/libhevc/common/x86/
ihevc_weighted_pred_sse42_intr.c 122 WORD32 row, col, temp; local
148 for(col = 0; col < wd; col += 8)
175 /* (pi2_src[col] + lvl_shift)*/ /* First 4 pixels */
181 /*i4_tmp = (pi2_src[col] + lvl_shift) * wgt0*/ /* First 4 pixels */
193 /* (pi2_src[col] + lvl_shift)*/ /* Last 4 pixels */
199 /*i4_tmp = (pi2_src[col] + lvl_shift) * wgt0*/ /* Last 4 pixels */
245 /* pu1_dst[col] = CLIP_U8(i4_tmp); */
273 for(col = 0; col < wd; col += 4
423 WORD32 row, col, temp, wdx2; local
1263 WORD32 row, col, temp; local
1536 WORD32 row, col, temp1, temp2; local
1792 WORD32 row, col, temp; local
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css 164 .layout-content-col {
167 .layout-content-col:first-child {
169 .layout-content-col h3,
170 .layout-content-col h4 {
173 .layout-content-col.span-1 {
176 .layout-content-col.span-2 {
179 .layout-content-col.span-3 {
182 .layout-content-col.span-4 {
185 .layout-content-col.span-5 {
188 .layout-content-col.span-6
    [all...]

Completed in 984 milliseconds

<<11121314151617181920>>