Searched defs:col (Results 76 - 100 of 460) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_texblend.c76 GLuint col; local
87 col = ((a << 24) | (r << 16) | (g << 8) | b);
90 state[count++] = col;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_tile.c43 unsigned col; /* current source column */ local
51 for (col = 0; col < width; col += tile_width, ++k)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
60 unsigned columns = MIN2(tile_width, width - col);
74 unsigned col; /* current source column */ local
82 for (col = 0; col < width; col
105 unsigned col; /* current source column */ local
136 unsigned col; /* current source column */ local
167 unsigned col; /* current source column */ local
257 unsigned col; /* current destination column */ local
290 unsigned col; /* current destination column */ local
323 unsigned col; /* current destination column */ local
356 unsigned col; /* current destination column */ local
389 unsigned col; /* current destination column */ local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c43 unsigned col; /* current source column */ local
51 for (col = 0; col < width; col += tile_width, ++k)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
60 unsigned columns = MIN2(tile_width, width - col);
74 unsigned col; /* current source column */ local
82 for (col = 0; col < width; col
105 unsigned col; /* current source column */ local
136 unsigned col; /* current source column */ local
167 unsigned col; /* current source column */ local
257 unsigned col; /* current destination column */ local
290 unsigned col; /* current destination column */ local
323 unsigned col; /* current destination column */ local
356 unsigned col; /* current destination column */ local
389 unsigned col; /* current destination column */ local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_fragprog.c158 * \param col which element (column) of the span we'll operate on
163 const SWspan *span, GLuint col)
165 GLfloat *wpos = span->array->attribs[FRAG_ATTRIB_WPOS][col];
192 machine->Attribs[FRAG_ATTRIB_FACE][col][0] = 1.0F - span->facing;
195 machine->CurElement = col;
161 init_machine(struct gl_context *ctx, struct gl_program_machine *machine, const struct gl_fragment_program *program, const SWspan *span, GLuint col) argument
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc56 ent->col = info.column;
68 int col; member in namespace:__tsan
80 int *line, int *col)
86 int *line, int *col) {
97 int line, col; local
99 file_buf, sizeof(file_buf), &line, &col))
107 ent->col = col;
83 __tsan_symbolize_external(uptr pc, char *func_buf, uptr func_siz, char *file_buf, uptr file_siz, int *line, int *col) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java161 public void addItem(String name, String description, double value, Color col) { argument
162 addItem(name, description, value, col,false);
165 public void addItem(String name, String description, double value, Color col, boolean display) { argument
166 this.fItems.add(new GraphItem(name, description, value, col,display));
H A DTimeLineGraph.java148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument
153 addItem(groupName, name,description, value, col, display,
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument
163 items.add(new TimeLineGraphItem(name, description, value, col, display,
/external/eigen/Eigen/src/Core/
H A DCwiseUnaryView.h116 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const
118 return derived().functor()(derived().nestedExpression().coeff(row, col));
126 EIGEN_STRONG_INLINE Scalar& coeffRef(Index row, Index col) argument
128 return derived().functor()(const_cast_derived().nestedExpression().coeffRef(row, col));
H A DDiagonalProduct.h61 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
63 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col);
75 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
80 const Index indexInDiagonalVector = ProductOrder == OnTheLeft ? row : col;
81 return packet_impl<LoadMode>(row,col,indexInDiagonalVector,typename internal::conditional<
97 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const argument
99 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),
104 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::false_type) const argument
110 return internal::pmul(m_matrix.template packet<LoadMode>(row, col),
[all...]
H A DMapBase.h201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col) argument
203 return this->m_data[col * colStride() + row * rowStride()];
213 inline void writePacket(Index row, Index col, const PacketScalar& val) argument
216 (this->m_data + (col * colStride() + row * rowStride()), val);
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 DVisitor.h21 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::visitor_impl::__anon20721
28 visitor(mat.coeff(row, col), row, col);
99 Index row, col; member in struct:Eigen::internal::coeff_visitor
105 col = j;
125 this->col = j;
153 this->col = j;
167 /** \returns the minimum of all coefficients of *this and puts in *row and *col its location.
180 if (colId) *colId = minVisitor.col;
197 *index = (RowsAtCompileTime==1) ? minVisitor.col
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseColEtree.h73 Index row,col; local
78 for (col = 0; col < nc; col++)
80 Index pcol = col;
81 if(perm) pcol = perm[col];
85 firstRowElt(row) = (std::min)(firstRowElt(row), col);
93 for (col = 0; col < nc; col
[all...]
H A DSparseTriangularView.h108 inline Index col() const { return (MatrixType::Flags&RowMajorBit ? this->index() : Base::outer()); } function in class:Eigen::SparseTriangularView::InnerIterator
156 inline Index col() const { return Base::col(); } function in class:Eigen::SparseTriangularView::ReverseInnerIterator
H A DSparseUtil.h162 const Index& col() const { return m_col; } function in class:Eigen::Triplet
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.cpp220 Collator *col = Collator::createInstance("en_US", status); local
221 const UnicodeString baseRules = ((RuleBasedCollator*)col)->getRules();
249 delete col;
/external/icu/icu4c/source/tools/toolutil/
H A Dwritesrc.c109 int32_t i, col; local
131 for(i=col=0; i<length; ++i, ++col) {
133 if(col<16) {
137 col=0;
230 int32_t i, col; local
237 for(i=col=0; i<length; ++i, ++col) {
243 col>=32 ||
245 (col>
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java173 * @param col column number, 0-based
177 public native int column_int(int col) throws SQLite.Exception; argument
181 * @param col column number, 0-based
184 public native long column_long(int col) throws SQLite.Exception; argument
188 * @param col column number, 0-based
191 public native double column_double(int col) throws SQLite.Exception; argument
195 * @param col column number, 0-based
198 public native byte[] column_bytes(int col) throws SQLite.Exception; argument
202 * @param col column number, 0-based
205 public native String column_string(int col) throw argument
212 column_type(int col) argument
227 column(int col) argument
247 column_table_name(int col) argument
255 column_database_name(int col) argument
263 column_decltype(int col) argument
271 column_origin_name(int col) argument
[all...]
/external/jpeg/
H A Djddctmgr.c45 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]);
H A Drdppm.c148 JDIMENSION col; local
151 for (col = cinfo->image_width; col > 0; col--) {
166 JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
186 JDIMENSION col; local
192 for (col
207 JDIMENSION col; local
245 JDIMENSION col; local
269 JDIMENSION col; local
[all...]
H A Drdrle.c209 JDIMENSION col; local
219 for (col = cinfo->image_width; col > 0; col--) {
244 JDIMENSION row, col; local
295 for (col = 0; col < cinfo->image_width; col++) {
298 (colormap[GETJSAMPLE(rle_row[channel][col]) + 256 * channel] >> 8);
321 for (col
[all...]
H A Dwrppm.c111 register JDIMENSION col; local
115 for (col = dest->samples_per_row; col > 0; col--) {
138 register JDIMENSION col; local
142 for (col = cinfo->output_width; col > 0; col--) {
160 register JDIMENSION col; local
164 for (col
[all...]
/external/libhevc/common/
H A Dihevc_inter_pred_filters.c116 WORD32 row, col; local
120 for(col = 0; col < wd; col++)
122 pu1_dst[col] = pu1_src[col];
178 WORD32 row, col, i; local
183 for(col = 0; col < wd; col
251 WORD32 row, col, i; local
324 WORD32 row, col; local
390 WORD32 row, col, i; local
461 WORD32 row, col, i; local
531 WORD32 row, col, i; local
606 WORD32 row, col, i; local
678 WORD32 row, col; local
743 WORD32 row, col, i; local
825 WORD32 row, col, i; local
900 WORD32 row, col; local
966 WORD32 row, col, i; local
1042 WORD32 row, col, i; local
1113 WORD32 row, col, i; local
1190 WORD32 row, col, i; local
[all...]
H A Dihevc_weighted_pred.c117 WORD32 row, col; local
122 for(col = 0; col < wd; col++)
124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0;
128 pu1_dst[col] = CLIP_U8(i4_tmp);
202 WORD32 row, col; local
207 for(col = 0; col < 2 * wd; col
308 WORD32 row, col; local
413 WORD32 row, col; local
500 WORD32 row, col; local
583 WORD32 row, col; local
[all...]
/external/libpng/contrib/pngminus/
H A Dpng2pnm.c205 int row, col; local
377 for (col = 0; col < width; col++)
414 if (col % 4 == 3)
416 } /* end for col */
419 if (col % 4 != 0)

Completed in 9387 milliseconds

1234567891011>>