Searched refs:rows (Results 1 - 25 of 214) sorted by relevance

123456789

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-samsung/include/plat/
H A Dkeypad.h24 * @rows: number of keypad row supported.
35 unsigned int rows; member in struct:samsung_keypad_platdata
40 void (*cfg_gpio)(unsigned int rows, unsigned int cols);
54 extern void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/magic/
H A Dmagic.cpp137 matrix::matrix(int rows, int cols) argument
139 __ptr = soap_new_vector(soap, rows);
142 __size = rows;
145 void matrix::resize(int rows, int cols) argument
148 if (__size != rows)
150 { p = soap_new_vector(soap, rows);
151 for (i = 0; i < (rows <= __size ? rows : __size); i++)
157 for (; i < rows; i++)
162 __ptr = soap_new_vector(soap, rows);
[all...]
H A Dmagicserver.cpp220 matrix::matrix(int rows, int cols) argument
221 { __ptr = soap_new_vector(soap, rows);
224 __size = rows;
231 void matrix::resize(int rows, int cols) argument
234 if (__size != rows)
236 { p = soap_new_vector(soap, rows);
237 for (i = 0; i < (rows <= __size ? rows : __size); i++)
243 for (; i < rows; i++)
247 { __ptr = soap_new_vector(soap, rows);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/magic/
H A Dmagic.cpp137 matrix::matrix(int rows, int cols) argument
139 __ptr = soap_new_vector(soap, rows);
142 __size = rows;
145 void matrix::resize(int rows, int cols) argument
148 if (__size != rows)
150 { p = soap_new_vector(soap, rows);
151 for (i = 0; i < (rows <= __size ? rows : __size); i++)
157 for (; i < rows; i++)
162 __ptr = soap_new_vector(soap, rows);
[all...]
H A Dmagicserver.cpp220 matrix::matrix(int rows, int cols) argument
221 { __ptr = soap_new_vector(soap, rows);
224 __size = rows;
231 void matrix::resize(int rows, int cols) argument
234 if (__size != rows)
236 { p = soap_new_vector(soap, rows);
237 for (i = 0; i < (rows <= __size ? rows : __size); i++)
243 for (; i < rows; i++)
247 { __ptr = soap_new_vector(soap, rows);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Datafb_mfb.c29 u_int rows; local
38 for (rows = height; rows--;) {
46 for (rows = height; rows--;) {
58 u_int rows; local
68 for (rows = height; rows--; dest += next_line) {
82 u_int rows; local
86 for (rows
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s3c64xx/
H A Dsetup-keypad.c16 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) argument
22 end = S3C64XX_GPK(8 + rows);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5pc100/
H A Dsetup-keypad.c16 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) argument
22 end = S5PC100_GPH3(rows);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s5pv210/
H A Dsetup-keypad.c17 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) argument
22 end = S5PV210_GPH3(rows);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/blackfin/mach-bf548/include/mach/
H A Dbf54x_keys.h11 int rows; member in struct:bfin_kpad_platform_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/boot/
H A Dvideo-mode.c27 int force_x, force_y; /* Don't query the BIOS for cols/rows */
120 unsigned int font_size, rows; local
126 rows = force_y ? force_y : rdfs8(0x484)+1; /* Text rows */
128 rows *= font_size; /* Visible scan lines */
129 rows--; /* ... minus one */
137 out_idx((u8)rows, crtc, 0x12); /* Lower height register */
141 ov |= (rows >> (8-1)) & 0x02;
142 ov |= (rows >> (9-6)) & 0x40;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_libopencv.c137 static int read_shape_from_file(int *cols, int *rows, int **values, const char *filename, argument
151 if (*rows == INT_MAX) {
152 av_log(log_ctx, AV_LOG_ERROR, "Overflow on the number of rows in the file\n");
155 ++(*rows);
164 if (*rows > (SIZE_MAX / sizeof(int) / *cols)) {
166 *rows, *cols);
169 if (!(*values = av_mallocz_array(sizeof(int) * *rows, *cols)))
175 for (i = 0; i < *rows; i++) {
191 for (i = 0; i < *rows; i++) {
207 int cols = 0, rows local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_libopencv.c134 static int read_shape_from_file(int *cols, int *rows, int **values, const char *filename, argument
148 if (*rows == INT_MAX) {
149 av_log(log_ctx, AV_LOG_ERROR, "Overflow on the number of rows in the file\n");
152 ++(*rows);
161 if (*rows > (SIZE_MAX / sizeof(int) / *cols)) {
163 *rows, *cols);
166 if (!(*values = av_mallocz(sizeof(int) * *rows * *cols)))
172 for (i = 0; i < *rows; i++) {
188 for (i = 0; i < *rows; i++) {
204 int cols = 0, rows local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dgridsizr.tex23 \func{}{wxGridSizer}{\param{int }{rows}, \param{int }{cols}, \param{int }{vgap}, \param{int }{hgap}}
27 Constructor for a wxGridSizer. {\it rows} and {\it cols} determine the number of
28 columns and rows in the sizer - if either of the parameters is zero, it will be
51 Returns the number of rows in the sizer.
77 \func{void}{SetRows}{\param{int }{rows}}
79 Sets the number of rows in the sizer.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dbootgraph.pl145 my %rows;
156 if (!defined($rows{$pid})) {
157 $rows{$pid} = $rowscount;
166 $y = $rows{$pid} * 150;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dvirtio_console.h22 /* rows of the screens */
23 __u16 rows; member in struct:virtio_console_config
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-omap/include/plat/
H A Dkeypad.h16 int rows; member in struct:omap_kp_platform_data
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/cgi-bin/
H A Dsorttable.js47 the.appendChild(table.rows[0]);
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
55 // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as
56 // "total" rows, for example). This is B&R, since what you're supposed
57 // to do is put them in a tfoot. So, if there are sortbottom rows,
60 for (var i=0; i<table.rows.length; i++) {
61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
62 sortbottomrows[sortbottomrows.length] = table.rows[i];
78 headrow = table.tHead.rows[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/script/
H A Dsorttable.js47 the.appendChild(table.rows[0]);
53 if (table.tHead.rows.length != 1) return; // can't cope with two header rows
55 // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as
56 // "total" rows, for example). This is B&R, since what you're supposed
57 // to do is put them in a tfoot. So, if there are sortbottom rows,
60 for (var i=0; i<table.rows.length; i++) {
61 if (table.rows[i].className.search(/\bsortbottom\b/) != -1) {
62 sortbottomrows[sortbottomrows.length] = table.rows[i];
78 headrow = table.tHead.rows[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dinotify.c148 int i, rows = 0; local
198 sql_get_table(db, "SELECT PATH from DETAILS where SIZE is NULL and PATH is not NULL", &result, &rows, NULL);
199 for( i=1; i <= rows; i++ )
206 return rows;
282 int rows; local
342 if( sql_get_table(db, sql, &result, &rows, NULL) == SQLITE_OK )
344 if( rows )
383 if( (sql_get_table(db, sql, &result, &rows, NULL) == SQLITE_OK) && rows )
441 int rows; local
531 int i, rows, children, playlist, ret = 1; local
609 int rows, i, ret = 1; local
[all...]
H A Dplaylist.c85 int rows, i, found, len; local
95 if( sql_get_table(db, sql_buf, &result, &rows, NULL) != SQLITE_OK )
97 if( !rows )
103 rows++;
104 for( i=3; i<rows*3; i++ )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dm_list.cpp85 void ReallocRows(int rows);
165 void wxHtmlListCell::ReallocRows(int rows) argument
167 m_RowInfo = (wxHtmlListItemStruct*) realloc(m_RowInfo, sizeof(wxHtmlListItemStruct) * rows);
168 m_RowInfo[rows - 1].mark = NULL;
169 m_RowInfo[rows - 1].cont = NULL;
170 m_RowInfo[rows - 1].minWidth = 0;
171 m_RowInfo[rows - 1].maxWidth = 0;
173 m_NumRows = rows;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-sa1100/
H A Dcpu-sa1110.c41 u_char rows; /* bits */ member in struct:sdram_params
59 .rows = 12,
68 .rows = 12,
77 .rows = 14,
86 .rows = 12,
94 .rows = 13,
103 .rows = 16,
203 u_int ns_row = (sdram->refresh * 1000) >> sdram->rows;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bio/
H A Db_dump.c82 int i,j,rows,trc; local
103 rows=(len/dump_width);
104 if ((rows*dump_width)<len)
105 rows++;
106 for(i=0;i<rows;i++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bio/
H A Db_dump.c82 int i, j, rows, trc; local
103 rows = (len / dump_width);
104 if ((rows * dump_width) < len)
105 rows++;
106 for (i = 0; i < rows; i++) {

Completed in 311 milliseconds

123456789