Searched refs:col (Results 101 - 125 of 926) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.c112 int row, col, active_end; local
130 col = 0;
135 for (; col < mb_cols; ++col)
137 if (active_map[col])
142 if (col == mb_cols)
146 active_end = col;
157 col << 4, 16,
158 (active_end - col) << 4);
161 col
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_lookahead.c97 int row, col, active_end; local
117 col = 0;
121 for (; col < mb_cols; ++col) {
122 if (active_map[col])
127 if (col == mb_cols)
131 active_end = col;
141 col << 4, 16,
142 (active_end - col) << 4);
145 col
[all...]
/external/libvterm/src/
H A Dstate.c32 fprintf(stderr, "libvterm: Unhandled putglyph U+%04x at (%d,%d)\n", chars[0], pos.col, pos.row);
37 if(state->pos.col == oldpos->col && state->pos.row == oldpos->row)
121 static void set_col_tabstop(VTermState *state, int col) argument
123 unsigned char mask = 1 << (col & 7);
124 state->tabstops[col >> 3] |= mask;
127 static void clear_col_tabstop(VTermState *state, int col) argument
129 unsigned char mask = 1 << (col & 7);
130 state->tabstops[col >> 3] &= ~mask;
133 static int is_col_tabstop(VTermState *state, int col) argument
383 output_mouse(VTermState *state, int code, int pressed, int modifiers, int col, int row) argument
431 mousefunc(int col, int row, int button, int pressed, int modifiers, void *data) argument
855 int row, col; local
1416 int col; local
[all...]
H A Dscreen.c69 static inline ScreenCell *getcell(const VTermScreen *screen, int row, int col) argument
73 if(col < 0 || col >= screen->cols)
75 return screen->buffer + (screen->cols * row) + col;
83 for(int col = 0; col < new_cols; col++) {
84 ScreenCell *new_cell = new_buffer + row*new_cols + col;
86 if(buffer && row < screen->rows && col < screen->cols)
87 *new_cell = buffer[row * screen->cols + col];
858 int col; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dsmall_blas.h165 for (int col = 0; col < NUM_COL_C; ++col) {
168 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col];
171 const int index = (row + start_row_c) * col_stride_c + start_col_c + col;
225 for (int col = 0; col < NUM_COL_C; ++col) {
228 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col];
231 const int index = (row + start_row_c) * col_stride_c + start_col_c + col;
[all...]
H A Dblock_random_access_dense_matrix_test.cc54 int col; local
58 m.GetCell(i, j, &row, &col, &row_stride, &col_stride);
62 EXPECT_EQ(col, col_idx);
84 int col; local
88 i, j, &row, &col, &row_stride, &col_stride);
90 row, col, blocks[i], blocks[j]) =
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dphystokens.py79 col = 0
88 col = 0
95 if mark_start and scol > col:
96 line.append(("ws", " " * (scol - col)))
105 col = ecol
/external/chromium_org/third_party/freetype/src/base/
H A Dftlcdfil.c109 FT_Byte* col = column; local
114 val1 = col[0];
120 col += pitch;
122 val1 = col[0];
127 col += pitch;
134 val = col[0];
143 col[-2 * pitch] = (FT_Byte)pix;
144 col += pitch;
153 col[-2 * pitch] = (FT_Byte)pix;
157 col[
233 FT_Byte* col = column; local
[all...]
/external/freetype/src/base/
H A Dftlcdfil.c111 FT_Byte* col = column; local
116 val1 = col[0];
121 col += pitch;
123 val1 = col[0];
128 col += pitch;
135 val = col[0];
144 col[-2 * pitch] = (FT_Byte)pix;
145 col += pitch;
154 col[-2 * pitch] = (FT_Byte)pix;
158 col[
234 FT_Byte* col = column; local
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdcolor.c129 register JDIMENSION col; local
145 for (col = 0; col < num_cols; col++) {
146 y = GETJSAMPLE(inptr0[col]);
147 cb = GETJSAMPLE(inptr1[col]);
148 cr = GETJSAMPLE(inptr2[col]);
223 register JDIMENSION col; local
229 for (col = 0; col < num_col
254 register JDIMENSION col; local
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dfxft_ftlcdfil.c110 FT_Byte* col = column; local
115 val1 = col[0];
121 col += pitch;
123 val1 = col[0];
128 col += pitch;
135 val = col[0];
144 col[-2 * pitch] = (FT_Byte)pix;
145 col += pitch;
154 col[-2 * pitch] = (FT_Byte)pix;
158 col[
234 FT_Byte* col = column; local
[all...]
/external/eigen/Eigen/src/Core/
H A DSelfCwiseBinaryOp.h65 inline Scalar& coeffRef(Index row, Index col) argument
68 return m_matrix.const_cast_derived().coeffRef(row, col);
70 inline const Scalar& coeffRef(Index row, Index col) const
72 return m_matrix.coeffRef(row, col);
88 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) argument
92 && col >= 0 && col < cols());
93 Scalar& tmp = m_matrix.coeffRef(row,col);
94 tmp = m_functor(tmp, _other.coeff(row,col));
107 void copyPacket(Index row, Index col, cons argument
[all...]
H A DDenseCoeffsBase.h87 * parameters \a row and \a col are in range.
94 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const
97 && col >= 0 && col < cols());
98 return derived().coeff(row, col);
111 EIGEN_STRONG_INLINE CoeffReturnType operator()(Index row, Index col) const
114 && col >= 0 && col < cols());
115 return derived().coeff(row, col);
208 EIGEN_STRONG_INLINE PacketReturnType packet(Index row, Index col) cons
314 coeffRef(Index row, Index col) argument
334 operator ()(Index row, Index col) argument
429 writePacket(Index row, Index col, const typename internal::packet_traits<Scalar>::type& val) argument
476 copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) argument
503 const Index col = colIndexByOuterInner(outer,inner); local
517 copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) argument
546 const Index col = colIndexByOuterInner(outer,inner); local
[all...]
/external/jpeg/
H A Djdcolor.c149 register JDIMENSION col; local
165 for (col = 0; col < num_cols; col++) {
166 y = GETJSAMPLE(inptr0[col]);
167 cb = GETJSAMPLE(inptr1[col]);
168 cr = GETJSAMPLE(inptr2[col]);
190 register JDIMENSION col; local
206 for (col = 0; col < num_col
231 register JDIMENSION col; local
303 register JDIMENSION col; local
379 register JDIMENSION col; local
405 register JDIMENSION col; local
456 register JDIMENSION col; local
564 register JDIMENSION col; local
585 register JDIMENSION col; local
606 register JDIMENSION col; local
643 register JDIMENSION col; local
699 register JDIMENSION col; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djdcolor.c147 register JDIMENSION col; local
163 for (col = 0; col < num_cols; col++) {
164 y = GETJSAMPLE(inptr0[col]);
165 cb = GETJSAMPLE(inptr1[col]);
166 cr = GETJSAMPLE(inptr2[col]);
188 register JDIMENSION col; local
204 for (col = 0; col < num_col
229 register JDIMENSION col; local
301 register JDIMENSION col; local
377 register JDIMENSION col; local
403 register JDIMENSION col; local
454 register JDIMENSION col; local
562 register JDIMENSION col; local
583 register JDIMENSION col; local
604 register JDIMENSION col; local
641 register JDIMENSION col; local
697 register JDIMENSION col; local
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h89 /** \returns the coefficient value at given position \a row, \a col
92 inline Scalar coeff(Index row, Index col) const
94 const Index outer = IsRowMajor ? row : col;
95 const Index inner = IsRowMajor ? col : row;
99 /** \returns a reference to the coefficient value at given position \a row, \a col
103 inline Scalar& coeffRef(Index row, Index col) argument
105 const Index outer = IsRowMajor ? row : col;
106 const Index inner = IsRowMajor ? col : row;
145 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that:
150 inline Scalar& insertBack(Index row, Index col) argument
[all...]
/external/eigen/test/
H A DsparseLM.cpp96 for (int col = 0; col < half; col++)
100 coeff = (m_x(row)-col)/v(col);
104 fjac.coeffRef(row,col) = -(1-coeff)*(1-coeff);
109 for (int col = 0; col < half; col++)
113 coeff = (m_x(row)-col)/
[all...]
H A Djacobi.cpp56 VERIFY_IS_APPROX(b.col(p), c * a.col(p) - s * a.col(q));
57 VERIFY_IS_APPROX(b.col(q), numext::conj(s) * a.col(p) + numext::conj(c) * a.col(q));
/external/libpng/
H A Dtest-driver114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
123 echo "${col}${res}${std}: $test_name"
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_driver.cpp407 for (int col = col_start; col < col_end; col ++) {
410 src_alpha = m_Alpha * clip_scan[col] / 255;
428 *dest_scan = FXDIB_ALPHA_MERGE( *dest_scan, r, cover_scan[col]);
430 *dest_scan = FXDIB_ALPHA_MERGE(*dest_scan, g, cover_scan[col]);
432 *dest_scan = FXDIB_ALPHA_MERGE(*dest_scan, b, cover_scan[col]);
438 for (int col = col_start; col < col_end; col
[all...]
/external/chromium_org/chrome/browser/resources/memory_internals/
H A Dmemory_internals.js85 var col = row.insertCell(-1);
86 col.innerHTML = value;
87 col.className = template[i].className;
124 var col = row.insertCell(-1);
125 col.innerHTML = value;
126 col.className = template[i].className;
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdppm.c149 JDIMENSION col; local
152 for (col = cinfo->image_width; col > 0; col--) {
167 JDIMENSION col; local
170 for (col = cinfo->image_width; col > 0; col--) {
187 JDIMENSION col; local
193 for (col
208 JDIMENSION col; local
246 JDIMENSION col; local
270 JDIMENSION col; local
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dtable.css7 html.col-resize * {
8 cursor: col-resize !important;
59 cursor: col-resize;
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dfocus_grid.js10 * focusable [focused] focusable (row: 0, col: 1)
18 * focusable [focused] focusable (row: 1, col: 1)
24 * focusable focusable [focused] (row: 1, col: 2)
46 * @return {?{row: number, col: number}} A position or null if not found.
52 return {row: i, col: j};
78 var col = Math.min(colIndex, this.rows[row].items.length - 1);
80 this.rows[row].focusIndex(col);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h138 for (Index col = 0; col < rhs.cols(); col++) {
140 dst(row, col) = lhs.coeffDiag(row) * rhs(row, col);
146 const Index stop = lIt.col() + lIt.size();
147 for (Index col = 0; col < rhs.cols(); col++) {
149 Index k = lIt.col();
[all...]

Completed in 528 milliseconds

1234567891011>>