Home
last modified time | relevance | path

Searched refs:maxrows (Results 1 – 25 of 1064) sorted by relevance

12345678910>>...43

/dports/math/sc-im/sc-im-0.8.2/src/
H A Dvmtbl.c75 else if (*rowp >= maxrows) { in checkbounds()
78 *rowp = maxrows - 1; in checkbounds()
144 newrows = maxrows; in growtbl()
149 maxrows = toprow = 0; in growtbl()
171 if (toprow > maxrows) in growtbl()
202 memset(row_hidden + maxrows, 0, (newrows - maxrows) * sizeof(unsigned char)); in growtbl()
205 memset(row_format + maxrows, 1, (newrows - maxrows) * sizeof(unsigned char)); in growtbl()
208 memset(row_frozen + maxrows, 0, (newrows - maxrows) * sizeof(unsigned char)); in growtbl()
215 for (lnullit = tbl + maxrows, lcnt = 0; lcnt < newrows - maxrows; lcnt++, lnullit++) in growtbl()
254 i = maxrows;
[all …]
/dports/math/sc/sc-7.16/
H A Dvmtbl.c31 else if (*rowp >= maxrows) { in checkbounds()
34 *rowp = maxrows - 1; in checkbounds()
40 *rowp = maxrows - 1; in checkbounds()
90 newrows = maxrows; in growtbl()
95 maxrows = toprow = 0; in growtbl()
111 if (toprow > maxrows) in growtbl()
139 memset(row_hidden+maxrows, 0, (newrows-maxrows)*sizeof(char)); in growtbl()
146 for (lnullit = tbl+maxrows, lcnt = 0; lcnt < newrows-maxrows; in growtbl()
172 for (i = 0; i < maxrows; i++) { in growtbl()
187 i = maxrows;
[all …]
/dports/math/xspread/xspread-3.1.1c.orig/
H A Dvmtbl.c36 else if (*rowp >= maxrows)
39 { *rowp = maxrows -1;
46 *rowp = maxrows-1;
99 newrows = maxrows;
106 maxrows = toprow = 0;
122 { if (toprow > maxrows)
151 MEMZERO(row_hidden+maxrows, (newrows-maxrows)*sizeof(char));
158 for(lnullit = tbl+maxrows, lcnt = 0; lcnt < newrows-maxrows;
185 for (i = 0; i < maxrows; i++)
201 i = maxrows;
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/
H A DTableResult.java66 public int maxrows = 0; field in TableResult
86 public TableResult(int maxrows) { in TableResult() argument
87 this.maxrows = maxrows; in TableResult()
126 if (maxrows > 0 && nrows >= maxrows) { in newrow()
H A DDatabase.java295 TableResult ret = new TableResult(maxrows); in get_table()
300 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()
309 if (ret.maxrows > 0) { in get_table()
310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
348 TableResult ret = new TableResult(maxrows); in get_table()
353 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()
362 if (ret.maxrows > 0) { in get_table()
363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
407 if (tbl.maxrows <= 0 || !tbl.atmaxrows) { in get_table()
415 if (tbl.maxrows > 0) { in get_table()
[all …]
/dports/devel/bugzilla50/bugzilla-5.0.4/
H A Dduplicates.cgi37 maxrows => 20,
114 my $maxrows = formvalue("maxrows");
145 my $origmaxrows = $maxrows;
146 detaint_natural($maxrows)
147 || ThrowUserError("invalid_maxrows", { maxrows => $origmaxrows});
229 @bugs = @bugs[0..$maxrows-1] if scalar(@bugs) > $maxrows;
236 maxrows => $maxrows,
/dports/devel/bugzilla44/bugzilla-4.4.13/
H A Dduplicates.cgi34 maxrows => 20,
111 my $maxrows = formvalue("maxrows");
142 my $origmaxrows = $maxrows;
143 detaint_natural($maxrows)
144 || ThrowUserError("invalid_maxrows", { maxrows => $origmaxrows});
227 @bugs = @bugs[0..$maxrows-1] if scalar(@bugs) > $maxrows;
234 maxrows => $maxrows,
/dports/math/lrcalc/lrcalc-1.3/src/
H A Dsymfcn.h17 hashtab *skew(vector *outer, vector *inner, int maxrows);
18 hashtab *mult(vector *sh1, vector *sh2, int maxrows);
21 hashtab *schur_lc_mult(hashtab *lc1, hashtab *lc2, int maxrows);
31 int maxrows; member
38 skewtab *st_new(vector *outer, vector *inner, vector *conts, int maxrows);
/dports/finance/R-cran-PerformanceAnalytics/PerformanceAnalytics/R/
H A Dchart.SnailTrail.R97 maxrows = 0 functionVar
133 maxrows = max(maxrows, length(returns.column))
156 colortrail = rgb(colors((0:maxrows)/maxrows),maxColorValue=255)
161 … points(risk[i,column],returns[i,column], pch=symbolset[column], col = colortrail[maxrows-i+1])
165 …eturns[i,column], risk[i-1,column], returns[i-1,column],col = colortrail[maxrows-i+1], lty = lty, …
184 …urns[,column,drop=FALSE], labels = labels, adj = -0.2, cex = cex.text, col = colortrail[maxrows:1])
/dports/databases/p5-DBI/DBI-1.643/
H A DDriver_xst.h102 IV maxrows = SvOK(batch_row_count) ? SvIV(batch_row_count) : -1; in dbdxst_fetchall_arrayref() local
105 if ( !DBIc_ACTIVE(imp_sth) && maxrows>0 ) { in dbdxst_fetchall_arrayref()
110 av_extend(rows_av, (maxrows>0) ? maxrows : 31); in dbdxst_fetchall_arrayref()
111 while ( (maxrows < 0 || maxrows-- > 0) in dbdxst_fetchall_arrayref()
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dreader_pbm.c229 assert(readerdata->maxrows != 0 && readerdata->maxcols != 0); in getSubmatrixSize()
231 if( readerdata->maxrows > nconss ) in getSubmatrixSize()
232 readerdata->maxrows = nconss; in getSubmatrixSize()
237 sizev = (nconss + readerdata->maxrows - 1) / readerdata->maxrows; in getSubmatrixSize()
241 if( readerdata->maxrows == -1 && readerdata->maxcols == -1 ) in getSubmatrixSize()
245 else if( readerdata->maxrows == -1 && readerdata->maxcols > 0 ) in getSubmatrixSize()
249 else if( readerdata->maxrows > 0 && readerdata->maxcols == -1 ) in getSubmatrixSize()
258 readerdata->maxrows = (nconss + res - 1) / res; in getSubmatrixSize()
372 for( y = 0; y < readerdata->maxrows; y++ ) in drawScaledImage()
510 BMSclearMemoryArray(scaledimage, readerdata->maxrows * readerdata->maxcols); in SCIPwritePbm()
[all …]
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2x/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2y/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2z1/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC1/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC2z/
H A DTableResultX.java16 public TableResultX(int maxrows) { in TableResultX() argument
17 super(maxrows); in TableResultX()
30 this.maxrows = tr.maxrows; in TableResultX()
/dports/databases/db5/db-5.3.28/lang/sql/jdbc/SQLite/JDBC0/
H A DTableResultX.java17 public TableResultX(int maxrows) { in TableResultX() argument
18 super(maxrows); in TableResultX()
31 this.maxrows = tr.maxrows; in TableResultX()
/dports/science/healpix/Healpix_3.50/src/idl/zzz_external/astron/
H A Dftcreate.pro9 ; ftcreate, maxcols, maxrows, h, tab
13 ; maxrows - maximum number of rows allocated, integer scalar
29 print,'Syntax - FTCREATE, maxcols, maxrows, h, [tab]'
36 tab = replicate(32B, maxcols, maxrows)
37 if maxrows EQ 1 then tab = reform(tab,maxcols,1)
/dports/sysutils/cfengine317/cfengine-3.17.0/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()
/dports/sysutils/cfengine316/cfengine-3.16.0/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()
/dports/sysutils/cfengine318/cfengine-3.18.1/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row < 0 || (unsigned int) cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()
/dports/sysutils/cfengine-devel/core-d08ae9eff/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row < 0 || (unsigned int) cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()
/dports/sysutils/cfengine/cfengine-3.19.0/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row < 0 || (unsigned int) cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()
/dports/sysutils/cfengine319/cfengine-3.19.0/cf-agent/
H A Dcf_sql.c102 cfdb->maxrows = mysql_num_rows(mc->res); in CfNewQueryMysqlDb()
115 if (cfdb->maxrows > 0) in CfFetchMysqlRow()
255 cfdb->maxrows = PQntuples(pc->res); in CfNewQueryPostgresqlDb()
266 if (cfdb->row < 0 || (unsigned int) cfdb->row >= cfdb->maxrows) in CfFetchPostgresqlRow()
272 if (cfdb->maxrows > 0) in CfFetchPostgresqlRow()
408 cfdb->maxrows = 0; in CfNewQueryDB()
410 …, "Before query '%s' succeeded, maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb->maxcolumns… in CfNewQueryDB()
427 …Log(LOG_LEVEL_DEBUG, "Query '%s' succeeded. maxrows %d, maxcolumns %d", query, cfdb->maxrows, cfdb… in CfNewQueryDB()

12345678910>>...43