Searched defs:cols (Results 1 - 25 of 57) sorted by relevance

123

/external/libvpx/vp8/common/
H A Dalloccommon.c23 static void update_mode_info_border(MODE_INFO *mi, int rows, int cols) argument
26 vpx_memset(mi - cols - 2, 0, sizeof(MODE_INFO) * (cols + 1));
30 vpx_memset(&mi[i*cols-1], 0, sizeof(MODE_INFO));
H A Ddebugmodes.c16 void vp8_print_modes_and_motion_vectors(MODE_INFO *mi, int rows, int cols, int frame) argument
30 for (mb_col = 0; mb_col < cols; mb_col++)
49 for (mb_col = 0; mb_col < cols; mb_col++)
69 for (mb_col = 0; mb_col < cols; mb_col++)
94 for (b_col = 0; b_col < 4 * cols; b_col++)
96 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2);
117 for (mb_col = 0; mb_col < cols; mb_col++)
142 for (b_col = 0; b_col < 4 * cols; b_col++)
144 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2);
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledWorld.java35 public TiledWorld(int cols, int rows) { argument
37 mTilesArray = new int[cols][rows];
39 mColCount = cols;
41 for (int x = 0; x < cols; x++) {
/external/skia/gpu/include/
H A DGrMesh.h17 void init(const SkRect& bounds, int rows, int cols,
23 int cols() const { return fCols; } function in class:GrMesh
/external/skia/include/utils/
H A DSkMeshUtils.h16 bool init(int texW, int texH, int rows, int cols) { argument
17 return this->init(NULL, NULL, texW, texH, rows, cols);
21 int texW, int texH, int rows, int cols);
38 static void Draw(SkCanvas*, const SkBitmap&, int rows, int cols,
/external/skia/src/utils/
H A DSkMeshUtils.cpp14 int texW, int texH, int rows, int cols) {
15 if (rows < 2 || cols < 2) {
27 fTexCount = rows * cols;
29 cols -= 1;
30 fIndexCount = rows * cols * 6;
46 for (int y = 0; y < cols; y++) {
66 const SkScalar dy = SkIntToScalar(texH) / cols;
67 for (int y = 0; y <= cols; y++) {
82 int rows, int cols, const SkPoint verts[],
86 if (idx.init(bitmap.width(), bitmap.height(), rows, cols)) {
13 init(SkPoint tex[], uint16_t indices[], int texW, int texH, int rows, int cols) argument
81 Draw(SkCanvas* canvas, const SkBitmap& bitmap, int rows, int cols, const SkPoint verts[], const SkColor colors[], const SkPaint& paint) argument
[all...]
H A DSkBoundaryPatch.cpp37 bool SkBoundaryPatch::evalPatch(SkPoint verts[], int rows, int cols) { argument
38 if (rows < 2 || cols < 2) {
43 const SkScalar invC = SkScalarInvert(SkIntToScalar(cols - 1));
45 for (int y = 0; y < cols; y++) {
/external/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h60 QStringList cols = QStringList::split(QChar('\t'), *it, true); local
62 bssid = cols.count() > 0 ? cols[0] : "";
63 freq = cols.count() > 1 ? cols[1] : "";
64 signal = cols.count() > 2 ? cols[2] : "";
65 flags = cols.count() > 3 ? cols[3] : "";
66 ssid = cols
[all...]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h60 QStringList cols = QStringList::split(QChar('\t'), *it, true); local
62 bssid = cols.count() > 0 ? cols[0] : "";
63 freq = cols.count() > 1 ? cols[1] : "";
64 signal = cols.count() > 2 ? cols[2] : "";
65 flags = cols.count() > 3 ? cols[3] : "";
66 ssid = cols
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
H A Dscanresults.ui.h60 QStringList cols = QStringList::split(QChar('\t'), *it, true); local
62 bssid = cols.count() > 0 ? cols[0] : "";
63 freq = cols.count() > 1 ? cols[1] : "";
64 signal = cols.count() > 2 ? cols[2] : "";
65 flags = cols.count() > 3 ? cols[3] : "";
66 ssid = cols
[all...]
/external/opencv/cv/src/
H A Dcvadapthresh.cpp53 int i, j, rows, cols; local
67 cols = src->cols;
72 CV_CALL( mean = cvCreateMat( rows, cols, CV_8UC1 ));
92 for( j = 0; j < cols; j++ )
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_yuv_mmx.c83 int rows, int cols, int mod )
88 unsigned char* y = lum +cols*rows; // Pointer to the end
91 row2 = (Uint32 *)out+cols+mod; // start of second row
92 mod = (mod+cols+mod)*4; // increment for row1 in byte
125 // L2=lum+cols
223 "addl %4,%2\n" // lum += cols
234 "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod),
244 int rows, int cols, int mod )
249 unsigned char* y = lum +cols*rows; /* Pointer to the end */
252 row2 = (Uint16 *)out+cols
80 ColorRGBDitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
241 Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
[all...]
H A DSDL_yuv_sw.c110 int rows, int cols, int mod );
114 int rows, int cols, int mod );
128 int rows, int cols, int mod );
132 int rows, int cols, int mod );
138 int rows, int cols, int mod )
147 int cols_2 = cols / 2;
150 row2 = row1 + cols + mod;
151 lum2 = lum + cols;
153 mod += cols + mod;
198 lum += cols;
135 Color16DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
205 Color24DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
289 Color32DitherYV12Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
364 Color16DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
437 Color24DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
535 Color32DitherYV12Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
612 Color16DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
656 Color24DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
706 Color32DitherYUY2Mod1X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
754 Color16DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
798 Color24DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
854 Color32DitherYUY2Mod2X( int *colortab, Uint32 *rgb_2_pix, unsigned char *lum, unsigned char *cr, unsigned char *cb, unsigned char *out, int rows, int cols, int mod ) argument
[all...]
/external/wpa_supplicant/wpa_gui-qt4/
H A Dscanresults.cpp86 QStringList cols = QStringList::split(QChar('\t'), *it, true); local
88 bssid = cols.count() > 0 ? cols[0] : "";
89 freq = cols.count() > 1 ? cols[1] : "";
90 signal = cols.count() > 2 ? cols[2] : "";
91 flags = cols.count() > 3 ? cols[3] : "";
92 ssid = cols
[all...]
/external/opencv/cxcore/src/
H A Dcximage.cpp88 CV_CALL( img = cvCreateImageHeader( cvSize(m->cols,m->rows),
215 CvMatrix::CvMatrix( int rows, int cols, int type, CvMemStorage* storage, bool alloc_data ) argument
220 cvInitMatHeader( matrix, rows, cols, type, alloc_data ?
221 cvMemStorageAlloc( storage, rows*cols*CV_ELEM_SIZE(type) ) : 0 );
242 CV_CALL( m = cvCreateMat( src->rows, src->cols, src->type ));
275 CV_CALL( temp_mat = cvCreateMat( m->rows, m->cols,
/external/webkit/Source/WebCore/html/
H A DHTMLTextAreaElement.h38 int cols() const { return m_cols; } function in class:WebCore::HTMLTextAreaElement
/external/e2fsprogs/ext2ed/
H A Dfile_com.c320 long offset=0,last_offset,l=0,cols=0; local
336 if (cols==SHOW_PAD_COLS-1) {
338 l++;cols=0;
352 l++;cols=0;
368 offset++;cols++;ch_ptr++;
/external/javasqlite/src/main/java/SQLite/
H A DShell.java26 String cols[]; field in class:Shell
167 cols = args;
186 pw.println(cols[i] + " = " +
196 w = cols[i].length();
202 pw.print(csep + cols[i]);
224 pw.print(cols[i] +
245 pw.print("<TH>" + html_quote(cols[i]) + "</TH>");
/external/libvpx/vpx/
H A Dvp8cx.h192 unsigned int cols; /**< number of cols */ member in struct:vpx_roi_map
209 unsigned int cols; /**< number of cols */ member in struct:vpx_active_map
/external/skia/gpu/src/
H A DGrDrawMesh.cpp32 void GrMesh::init(const SkRect& bounds, int rows, int cols, argument
34 SkASSERT(rows > 0 && cols > 0);
38 fCols = cols;
41 fCount = (rows + 1) * (cols + 1);
46 fIndexCount = rows * cols * 6;
51 const SkScalar dy = bounds.height() / cols;
54 const SkScalar dty = texture.height() / cols;
57 for (int y = 0; y <= cols; y++) {
64 if (y < cols && x < rows) {
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp48 int cols = 0; local
63 cols = GetInt();
85 if (cols < 0 || cols > 256) {
89 if (cols == 0 && bpp_ <= 8) {
90 cols = 1 << bpp_;
92 if (bpp_ <= 8 || cols > 0) {
97 if (cols > 0) {
98 if (pos_ + (cols * colLen) > len_) {
101 for (int i = 0; i < cols;
[all...]
/external/valgrind/main/drd/tests/
H A Domp_matinv.c44 static elem_t* new_matrix(const int rows, const int cols) argument
47 assert(cols > 0);
48 return malloc(rows * cols * sizeof(elem_t));
58 static void init_matrix(elem_t* const a, const int rows, const int cols) argument
65 a[i * cols + j] = 1.0 / (1 + abs(i-j));
72 const elem_t* const a, const int rows, const int cols)
78 for (j = 0; j < cols; j++)
80 printf("%g ", a[i * cols + j]);
158 static void gj(elem_t* const a, const int rows, const int cols) argument
169 if (a[k * cols
71 print_matrix(const char* const label, const elem_t* const a, const int rows, const int cols) argument
[all...]
H A Dmatinv.c36 int cols; member in struct:gj_threadinfo
56 static elem_t* new_matrix(const int rows, const int cols) argument
59 assert(cols > 0);
60 return malloc(rows * cols * sizeof(elem_t));
70 static void init_matrix(elem_t* const a, const int rows, const int cols) argument
77 a[i * cols + j] = 1.0 / (1 + abs(i-j));
84 const elem_t* const a, const int rows, const int cols)
90 for (j = 0; j < cols; j++)
92 printf("%g ", a[i * cols + j]);
175 const int cols local
83 print_matrix(const char* const label, const elem_t* const a, const int rows, const int cols) argument
225 gj(elem_t* const a, const int rows, const int cols) argument
[all...]
/external/libvpx/vp8/common/x86/
H A Dpostproc_mmx.c58 int cols,
230 cmp edx, cols
232 // done with the all cols, start the across filtering in place
376 cmp edx, cols
410 int cols,
556 cmp edx, cols
560 // done with the all cols, start the across filtering in place
685 cmp edx, cols
709 void vp8_mbpost_proc_down_mmx(unsigned char *dst, int pitch, int rows, int cols, int flimit) argument
724 for (c = 0; c < cols;
51 vp8_post_proc_down_and_across_mmx( unsigned char *src_ptr, unsigned char *dst_ptr, int src_pixels_per_line, int dst_pixels_per_line, int rows, int cols, int flimit ) argument
403 vp8_post_proc_down_and_across_xmm( unsigned char *src_ptr, unsigned char *dst_ptr, int src_pixels_per_line, int dst_pixels_per_line, int rows, int cols, int flimit ) argument
873 vp8_mbpost_proc_down_xmm(unsigned char *dst, int pitch, int rows, int cols, int flimit) argument
1151 vp8_mbpost_proc_across_ip_xmm(unsigned char *src, int pitch, int rows, int cols, int flimit) argument
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.hpp214 CvMatrix( int rows, int cols, int type ) argument
215 { matrix = cvCreateMat( rows, cols, type ); }
217 CvMatrix( int rows, int cols, int type, CvMat* hdr, argument
219 { matrix = cvInitMatHeader( hdr, rows, cols, type, data, step ); }
221 CvMatrix( int rows, int cols, int type, CvMemStorage* storage, bool alloc_data=true );
223 CvMatrix( int rows, int cols, int type, void* data, int step=CV_AUTOSTEP ) argument
224 { matrix = cvCreateMatHeader( rows, cols, type );
260 void create( int rows, int cols, int type ) argument
263 matrix->rows != rows || matrix->cols != cols ||
313 int cols() const { return matrix ? matrix->cols : 0; } function in class:CvMatrix
[all...]

Completed in 1401 milliseconds

123