Searched defs:col (Results 276 - 300 of 460) sorted by relevance

<<111213141516171819

/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.c143 int col; local
155 for (col = 0; col < cols; col++) {
157 int v = p_src[col];
160 if (abs(v - p_src[col + i * pitch]) > flimit)
163 kernel += kernel5[2 + i] * p_src[col + i * pitch];
168 p_dst[col] = v;
178 for (col = 0; col < col
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhist.c31 u16 hists__col_len(struct hists *hists, enum hist_column col) argument
33 return hists->col_len[col];
36 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len) argument
38 hists->col_len[col] = len;
41 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len) argument
43 if (len > hists__col_len(hists, col)) {
44 hists__set_col_len(hists, col, len);
52 enum hist_column col; local
54 for (col = 0; col < HISTC_NR_COL
[all...]
/external/ltrace/
H A Doutput.c282 tabto(int col) { argument
283 if (current_column < col) {
284 fprintf(options.output, "%*s", col - current_column, "");
612 int line, col; local
613 line = col = -1;
614 const char *src = dwfl_lineinfo(l, NULL, &line, &col,
620 if (col > 0)
622 ":%d", col);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_s3tc.c43 int col, int row,
53 int col, int row,
63 int col, int row,
73 int col, int row,
41 util_format_dxt1_rgb_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst) argument
51 util_format_dxt1_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
61 util_format_dxt3_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
71 util_format_dxt5_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
/external/mesa3d/src/mesa/drivers/windows/gdi/
H A Dwmesa.c274 GLubyte col[3]; local
275 UNCLAMPED_FLOAT_TO_UBYTE(col[0], color.f[0]);
276 UNCLAMPED_FLOAT_TO_UBYTE(col[1], color.f[1]);
277 UNCLAMPED_FLOAT_TO_UBYTE(col[2], color.f[2]);
278 pwc->clearColorRef = RGB(col[0], col[1], col[2]);
/external/mesa3d/src/mesa/main/
H A Dimage.c393 GLint row, col; local
404 for (col = 0; col < width; col++) {
407 SET_PIXEL(col, row);
426 for (col = 0; col < width; col++) {
429 SET_PIXEL(col, row);
/external/mesa3d/src/mesa/program/
H A Dprog_execute.c310 const GLint col = machine->CurElement; local
311 const GLfloat w = machine->Attribs[FRAG_ATTRIB_WPOS][col][3];
H A Dprogram.c224 * \param col returns the column number corresponding to 'pos'.
229 GLint *line, GLint *col)
246 *col = (pos - lineStart) + 1;
228 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos, GLint *line, GLint *col) argument
/external/qemu/distrib/jpeg-6b/
H A Djquant1.c468 JDIMENSION col; local
475 for (col = width; col > 0; col--) {
498 JDIMENSION col; local
504 for (col = width; col > 0; col--) {
528 JDIMENSION col; local
543 for (col
581 JDIMENSION col; local
631 JDIMENSION col; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_surface.c285 int row, col; local
317 col = surface->w;
319 while(col--) {
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp181 TiXmlParsingData( const char* start, int _tabsize, int row, int col )
187 cursor.col = col;
208 int col = cursor.col; local
227 col = 0;
240 col = 0;
258 col = (col / tabsize + 1) * tabsize;
275 { p +=3; ++col; } //
[all...]
/external/skia/experimental/PdfViewer/
H A DSkPdfFont.h195 SkPaint col; local
196 col.setColor(SK_ColorMAGENTA);
203 canvas->drawRect(rect, col);
/external/skia/include/utils/
H A DSkMatrix44.h205 * get a value from the matrix. The row,col parameters work as follows:
210 inline SkMScalar get(int row, int col) const {
212 SkASSERT((unsigned)col <= 3);
213 return fMat[col][row];
217 * set a value in the matrix. The row,col parameters work as follows:
222 inline void set(int row, int col, SkMScalar value) { argument
224 SkASSERT((unsigned)col <= 3);
225 fMat[col][row] = value;
229 inline double getDouble(int row, int col) const {
230 return SkMScalarToDouble(this->get(row, col));
232 setDouble(int row, int col, double value) argument
238 setFloat(int row, int col, float value) argument
[all...]
/external/skia/samplecode/
H A DSampleWarp.cpp223 SkPoint& pt(int row, int col) { argument
224 return fPts[row * (fRows + 1) + col];
/external/stlport/src/
H A Dlocale_impl.cpp362 locale::facet *col = 0; local
378 col = new collate_byname<char>(__coll);
386 delete col;
394 _STLP_UNWIND(_STLP_PRIV __release_collate(__wcoll); delete col);
398 this->insert(col, collate<char>::id);
/external/tinyxml/
H A Dtinyxmlparser.cpp172 TiXmlParsingData( const char* start, int _tabsize, int row, int col )
178 cursor.col = col;
199 int col = cursor.col; local
218 col = 0;
231 col = 0;
249 col = (col / tabsize + 1) * tabsize;
266 { p +=3; ++col; } //
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dhlr_auc_gw.c162 static int get_milenage_cb(void *ctx, int argc, char *argv[], char *col[]) argument
170 if (os_strcmp(col[i], "ki") == 0 && argv[i] &&
176 if (os_strcmp(col[i], "opc") == 0 && argv[i] &&
182 if (os_strcmp(col[i], "amf") == 0 && argv[i] &&
188 if (os_strcmp(col[i], "sqn") == 0 && argv[i] &&
/external/yaffs2/yaffs2/mtdemul/
H A Dnandemul2k.c379 int col, page; local
388 col = from & 0x0f;
401 nandemul2k_Read(buf,page,PAGE_DATA_SIZE + col,len);
483 int col, page; local
494 col = to & 0x0f;
507 nandemul2k_Program(buf,page,512 + col,len);
/external/aac/libSBRenc/src/
H A Dps_encode.cpp855 int group, bin, col, subband, band; local
897 for (col=envBorder[env]; col<envBorder[env+1]; col++) {
899 FIXP_QMF l_real = (hybridData[col][0][0][subband]) << scale;
900 FIXP_QMF l_imag = (hybridData[col][0][1][subband]) << scale;
901 FIXP_QMF r_real = (hybridData[col][1][0][subband]) << scale;
902 FIXP_QMF r_imag = (hybridData[col][1][1][subband]) << scale;
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dt1_enc.c1172 int col = 0, sol = 0; local
1182 co, col, local
/external/chromium_org/third_party/icu/source/i18n/
H A Dcoll.cpp237 Collator *col = (Collator*)gService->get(desiredLocale, *status); local
239 if (col && (rbc = dynamic_cast<RuleBasedCollator *>(col))) {
253 result->delegate = col;
255 col = NULL; // to prevent free on delete.
258 delete col;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drestsnew.cpp326 int32_t count, row=0, col=0; local
360 col=0;
366 expected+=itoa(col, buf);
367 col++;
371 CONFIRM_EQ(col, rowbundle.getSize());
537 int32_t count, row=0, col=0; local
572 col=0;
576 temp = ures_getByIndex(rowbundle, col, temp, &err);
578 UnicodeString bla2 = ures_getUnicodeStringByIndex(rowbundle, col, &err);
581 expected+=itoa(col, bu
636 int32_t i,j,row,col, actual_bundle; local
[all...]
/external/chromium_org/third_party/icu/source/test/perf/collperf/
H A Dcollperf.cpp65 static UCollator * col; // for qsort callback function member in struct:DataIndex
77 UCollator * DataIndex::col; member in class:DataIndex
84 UCollator * col; member in class:CmdKeyGen
96 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t) argument
97 :col(col),win_langid(win_langid), count(count), data(data), fn(fn){}
108 ucol_getSortKey(col, data[i].icu_data, -1, icu_key, MAX_KEY_LENGTH);
112 ucol_getSortKey(col, data[i].icu_data, data[i].icu_data_len, icu_key, MAX_KEY_LENGTH);
141 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t) argument
145 iter = ucol_openElements(col, NUL
196 CmdIterAll(UErrorCode & status, UCollator * col, int32_t count, UChar * data, CALL call,int32_t,int32_t) argument
396 UCollator * col; member in class:CmdBinSearch
404 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn) argument
489 UCollator * col; member in class:CollPerfTest
790 DataIndex::col = col; member in class:CollPerfTest::DataIndex
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dpostproc.c139 int col; local
149 for (col = 0; col < cols; col++)
151 unsigned char p_above2 = p_src[col - 2 * src_pixels_per_line];
152 unsigned char p_above1 = p_src[col - src_pixels_per_line];
153 unsigned char p_below1 = p_src[col + src_pixels_per_line];
154 unsigned char p_below2 = p_src[col + 2 * src_pixels_per_line];
156 v = p_src[col];
158 if ((abs(v - p_above2) < f[col])
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_function.cpp542 ir_dereference *const col = new(ctx) ir_dereference_array(src, col_index); local
544 col->type = src->type->column_type();
546 return dereference_component(col, r);
1018 unsigned col = local
1023 for (/* empty */; col < var->type->matrix_columns; col++) {
1031 ident.f[col] = 1.0;
1036 new(ctx) ir_dereference_array(var, new(ctx) ir_constant(col));

Completed in 7515 milliseconds

<<111213141516171819