Home
last modified time | relevance | path

Searched refs:rownr (Results 1 – 25 of 227) sorted by relevance

12345678910

/dports/math/lp_solve/lp_solve_5.5/
H A Dlp_crash.c361 values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) *
421 *rownr = -(*rownr);
425 *rownr = -(*rownr);
465 values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) *
524 if(values[*rownr] <= get_rh_lower(lp, *rownr)+eps)
525 *rownr = -(*rownr);
529 *rownr = -(*rownr);
609 values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) *
668 values[*rownr] -= lp->orig_rhs[*rownr];
670 *rownr = -(*rownr);
[all …]
/dports/math/R-cran-lpSolve/lpSolve/src/
H A Dlp_crash.c60 int *rownr, *colnr; in crash_basis() local
78 rx = *rownr; in crash_basis()
100 rx = *rownr; in crash_basis()
208 ix = *rownr; in crash_basis()
269 rx = *rownr; in crash_basis()
299 ix = *rownr; in crash_basis()
361 values[*rownr] += unscaled_mat(lp, my_chsign(is_chsign(lp, *rownr), *value), *rownr, *colnr) * in guess_basis()
418 for(i = lp->rows+1, rownr = basisvector+i; i <= lp->sum; i++, rownr++) { in guess_basis()
420 if(values[*rownr] <= get_rh_lower(lp, *rownr)+error) in guess_basis()
421 *rownr = -(*rownr); in guess_basis()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/maria/
H A Dtest_ma_backup.c33 static void create_record(uchar *record,uint rownr);
339 static void create_key_part(uchar *key,uint rownr) in create_key_part() argument
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 static void create_record(uchar *record,uint rownr) in create_record() argument
385 if (rownr == 0 && keyinfo[0].seg[0].null_bit) in create_record()
393 create_key_part(blob_key,rownr); in create_record()
403 create_key_part(pos+pack_length,rownr); in create_record()
413 create_key_part(pos,rownr); in create_record()
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/maria/
H A Dtest_ma_backup.c33 static void create_record(uchar *record,uint rownr);
339 static void create_key_part(uchar *key,uint rownr) in create_key_part() argument
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 static void create_record(uchar *record,uint rownr) in create_record() argument
385 if (rownr == 0 && keyinfo[0].seg[0].null_bit) in create_record()
393 create_key_part(blob_key,rownr); in create_record()
403 create_key_part(pos+pack_length,rownr); in create_record()
413 create_key_part(pos,rownr); in create_record()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/maria/
H A Dtest_ma_backup.c33 static void create_record(uchar *record,uint rownr);
339 static void create_key_part(uchar *key,uint rownr) in create_key_part() argument
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 static void create_record(uchar *record,uint rownr) in create_record() argument
385 if (rownr == 0 && keyinfo[0].seg[0].null_bit) in create_record()
393 create_key_part(blob_key,rownr); in create_record()
403 create_key_part(pos+pack_length,rownr); in create_record()
413 create_key_part(pos,rownr); in create_record()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/maria/
H A Dtest_ma_backup.c33 static void create_record(uchar *record,uint rownr);
339 static void create_key_part(uchar *key,uint rownr) in create_key_part() argument
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 static void create_record(uchar *record,uint rownr) in create_record() argument
385 if (rownr == 0 && keyinfo[0].seg[0].null_bit) in create_record()
393 create_key_part(blob_key,rownr); in create_record()
403 create_key_part(pos+pack_length,rownr); in create_record()
413 create_key_part(pos,rownr); in create_record()
[all …]
/dports/math/R-cran-raster/raster/R/
H A DcellRowCol.R30 cellFromRow <- function(object, rownr) { argument
32 rownr <- round(rownr)
36 cols <- rep(1:ncol(object), times=length(rownr))
37 rows <- rep(rownr, each=ncol(object))
51 .OLD_cellFromRowColCombine <- function(object, rownr, colnr) { argument
53 rc <- expand.grid(rownr, colnr)
78 rownr <- trunc((cell-1)/object@ncols) + 1
79 as.integer(cell - ((rownr-1) * object@ncols))
93 rownr <- trunc((cell-1)/nc) + 1 functionVar
94 cell - ((rownr-1) * nc)
/dports/databases/percona56-client/percona-server-5.6.51-91.0/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/percona56-server/percona-server-5.6.51-91.0/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/myisam/
H A Dmi_test1.cc52 static void create_key(uchar *key, uint rownr);
327 if ((rownr & 7) == 0) { in create_key_part()
338 if ((rownr & 7) == 0) { in create_key_part()
340 key[1] = (rownr < 10 ? 'a' : 'b'); in create_key_part()
348 if (rownr == 0) { in create_key()
357 create_key_part(key + 2, rownr); in create_key()
361 create_key_part(key, rownr); in create_key()
371 if (rownr == 0 && keyinfo[0].seg[0].null_bit) in create_record()
378 create_key_part(blob_key, rownr); in create_record()
386 create_key_part(pos + pack_length, rownr); in create_record()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/myisam/
H A Dmi_test1.c45 static void create_key(uchar *key,uint rownr);
339 rownr&=7; /* Some identical keys */ in create_key_part()
350 if ((rownr & 7) == 0) in create_key_part()
365 if ((rownr & 7) == 0) in create_key_part()
368 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
379 if (rownr == 0) in create_key()
390 create_key_part(key+2,rownr); in create_key()
395 create_key_part(key,rownr); in create_key()
416 create_key_part(blob_key,rownr); in create_record()
426 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/myisam/
H A Dmi_test1.c45 static void create_key(uchar *key,uint rownr);
339 rownr&=7; /* Some identical keys */ in create_key_part()
350 if ((rownr & 7) == 0) in create_key_part()
365 if ((rownr & 7) == 0) in create_key_part()
368 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
379 if (rownr == 0) in create_key()
390 create_key_part(key+2,rownr); in create_key()
395 create_key_part(key,rownr); in create_key()
416 create_key_part(blob_key,rownr); in create_record()
426 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/myisam/
H A Dmi_test1.c45 static void create_key(uchar *key,uint rownr);
339 rownr&=7; /* Some identical keys */ in create_key_part()
350 if ((rownr & 7) == 0) in create_key_part()
365 if ((rownr & 7) == 0) in create_key_part()
368 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
379 if (rownr == 0) in create_key()
390 create_key_part(key+2,rownr); in create_key()
395 create_key_part(key,rownr); in create_key()
416 create_key_part(blob_key,rownr); in create_record()
426 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/myisam/
H A Dmi_test1.c46 static void create_key(uchar *key,uint rownr);
340 rownr&=7; /* Some identical keys */ in create_key_part()
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 if (rownr == 0) in create_key()
391 create_key_part(key+2,rownr); in create_key()
396 create_key_part(key,rownr); in create_key()
417 create_key_part(blob_key,rownr); in create_record()
427 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/myisam/
H A Dmi_test1.c45 static void create_key(uchar *key,uint rownr);
339 rownr&=7; /* Some identical keys */ in create_key_part()
350 if ((rownr & 7) == 0) in create_key_part()
365 if ((rownr & 7) == 0) in create_key_part()
368 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
379 if (rownr == 0) in create_key()
390 create_key_part(key+2,rownr); in create_key()
395 create_key_part(key,rownr); in create_key()
416 create_key_part(blob_key,rownr); in create_record()
426 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mysql56-client/mysql-5.6.51/storage/myisam/
H A Dmi_test1.c51 static void create_key(uchar *key,uint rownr);
341 rownr&=7; /* Some identical keys */ in create_key_part()
352 if ((rownr & 7) == 0) in create_key_part()
367 if ((rownr & 7) == 0) in create_key_part()
370 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
381 if (rownr == 0) in create_key()
392 create_key_part(key+2,rownr); in create_key()
397 create_key_part(key,rownr); in create_key()
418 create_key_part(blob_key,rownr); in create_record()
428 create_key_part(pos+pack_length,rownr); in create_record()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/myisam/
H A Dmi_test1.c46 static void create_key(uchar *key,uint rownr);
340 rownr&=7; /* Some identical keys */ in create_key_part()
351 if ((rownr & 7) == 0) in create_key_part()
366 if ((rownr & 7) == 0) in create_key_part()
369 key[1]= (rownr < 10 ? 'a' : 'b'); in create_key_part()
380 if (rownr == 0) in create_key()
391 create_key_part(key+2,rownr); in create_key()
396 create_key_part(key,rownr); in create_key()
417 create_key_part(blob_key,rownr); in create_record()
427 create_key_part(pos+pack_length,rownr); in create_record()
[all …]

12345678910