Home
last modified time | relevance | path

Searched refs:trig_table (Results 1 – 25 of 107) sorted by relevance

12345

/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/period/
H A Dcreate_triggers.inc6 if (!$trig_table)
8 die "No $trig_table specified";
23 eval create trigger tr1upd_$trig_table before update on $trig_table
25 eval create trigger tr2upd_$trig_table after update on $trig_table
27 eval create trigger tr1del_$trig_table before delete on $trig_table
29 eval create trigger tr2del_$trig_table after delete on $trig_table
31 eval create trigger tr1ins_$trig_table before insert on $trig_table
33 eval create trigger tr2ins_$trig_table after insert on $trig_table
38 let trig_table= 0;
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/period/
H A Dcreate_triggers.inc6 if (!$trig_table)
8 die "No $trig_table specified";
23 eval create trigger tr1upd_$trig_table before update on $trig_table
25 eval create trigger tr2upd_$trig_table after update on $trig_table
27 eval create trigger tr1del_$trig_table before delete on $trig_table
29 eval create trigger tr2del_$trig_table after delete on $trig_table
31 eval create trigger tr1ins_$trig_table before insert on $trig_table
33 eval create trigger tr2ins_$trig_table after insert on $trig_table
38 let trig_table= 0;
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/period/
H A Dcreate_triggers.inc6 if (!$trig_table)
8 die "No $trig_table specified";
23 eval create trigger tr1upd_$trig_table before update on $trig_table
25 eval create trigger tr2upd_$trig_table after update on $trig_table
27 eval create trigger tr1del_$trig_table before delete on $trig_table
29 eval create trigger tr2del_$trig_table after delete on $trig_table
31 eval create trigger tr1ins_$trig_table before insert on $trig_table
33 eval create trigger tr2ins_$trig_table after insert on $trig_table
38 let trig_table= 0;
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/period/
H A Dcreate_triggers.inc6 if (!$trig_table)
8 die "No $trig_table specified";
23 eval create trigger tr1upd_$trig_table before update on $trig_table
25 eval create trigger tr2upd_$trig_table after update on $trig_table
27 eval create trigger tr1del_$trig_table before delete on $trig_table
29 eval create trigger tr2del_$trig_table after delete on $trig_table
31 eval create trigger tr1ins_$trig_table before insert on $trig_table
33 eval create trigger tr2ins_$trig_table after insert on $trig_table
38 let trig_table= 0;
/dports/graphics/IPA/IPA-1.08/Global/
H A Dhough.c16 } trig_table = { 0, NULL, NULL }; variable
18 #define SIN(x) trig_table.sinx[x]
19 #define COS(x) trig_table.cosx[x]
26 if ( trig_table.size == resolution) in fill_trig_table()
29 if (trig_table.size > 0) { in fill_trig_table()
30 free( trig_table. sinx); in fill_trig_table()
31 trig_table. sinx = NULL; in fill_trig_table()
34 if ( !trig_table. sinx) in fill_trig_table()
37 trig_table. cosx = trig_table. sinx + resolution; in fill_trig_table()
38 trig_table. size = resolution; in fill_trig_table()
[all …]
/dports/games/kartofel/kartofel-1.2/
H A DMakefile20 trig_table.o: trig_table.cc trig_table.h util.h
21 c++ -pipe -O2 -fno-strict-aliasing -std=c++98 trig_table.cc -c $(CXXOPTIONS) -o trig_table.o
23 game.o: game.cc game.h lines.h util.h trig_table.h
35 kartofel: saved_game.o game.o util.o play.o lines.o submit_game.o trig_table.o trig_table_defs.o
36 …g -std=c++98 saved_game.o game.o util.o lines.o submit_game.o play.o trig_table.o trig_table_def…
41 verify: verify.o saved_game.o game.o util.o lines.o trig_table.o trig_table_defs.o
42 …rict-aliasing -std=c++98 verify.o saved_game.o game.o util.o lines.o trig_table.o trig_table_def…
47 verifydb: verifydb.o saved_game.o game.o util.o lines.o trig_table.o trig_table_defs.o
48 …ct-aliasing -std=c++98 verifydb.o saved_game.o game.o util.o lines.o trig_table.o trig_table_def…
50 gen_trig_tables.o: gen_trig_tables.cc util.h trig_table.h
/dports/japanese/timidity++-slang/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/audio/ocp/ocp-0.2.90/playgmi/timidity-git/utils/
H A Dfft.c97 static double *trig_table = NULL;
103 if(trig_table == NULL)
105 free(trig_table);
107 trig_table = NULL;
111 if(trig_table == NULL)
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double));
116 if(!(trig_table && bitrev_table))
122 make_table(trig_table, bitrev_table, n);
174 c = trig_table[wi];
175 s = trig_table[wi+1];
/dports/audio/timidity++-gtk/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/audio/timidity++-slang/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL;
103 if(trig_table == NULL)
105 free(trig_table);
107 trig_table = NULL;
111 if(trig_table == NULL)
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double));
116 if(!(trig_table && bitrev_table))
122 make_table(trig_table, bitrev_table, n);
174 c = trig_table[wi];
175 s = trig_table[wi+1];
/dports/audio/timidity++-xaw/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL;
103 if(trig_table == NULL)
105 free(trig_table);
107 trig_table = NULL;
111 if(trig_table == NULL)
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double));
116 if(!(trig_table && bitrev_table))
122 make_table(trig_table, bitrev_table, n);
174 c = trig_table[wi];
175 s = trig_table[wi+1];
/dports/audio/timidity++-motif/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/audio/timidity++-emacs/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/audio/timidity++/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/audio/timidity++-xskin/TiMidity++-2.15.0/utils/
H A Dfft.c97 static double *trig_table = NULL; in realfft() local
103 if(trig_table == NULL) in realfft()
105 free(trig_table); in realfft()
107 trig_table = NULL; in realfft()
111 if(trig_table == NULL) in realfft()
113 trig_table = (double *)safe_malloc((n * 2) * sizeof(double)); in realfft()
116 if(!(trig_table && bitrev_table)) in realfft()
122 make_table(trig_table, bitrev_table, n); in realfft()
174 c = trig_table[wi]; in realfft()
175 s = trig_table[wi+1]; in realfft()
/dports/databases/postgresql-plv8js/plv8-3.0.0/sql/
H A Dplv8.sql296 CREATE TABLE trig_table (subject text, val int); table
297 INSERT INTO trig_table VALUES('skip', 1);
300 ON trig_table FOR EACH ROW
303 INSERT INTO trig_table VALUES
305 SELECT * FROM trig_table;
306 UPDATE trig_table SET val = 10;
307 SELECT * FROM trig_table;
308 DELETE FROM trig_table;
309 SELECT * FROM trig_table;
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/period/t/
H A Ddelete.test22 --let $trig_table=t1
35 --let $trig_table=t2
45 --let $trig_table=t3
101 --let $trig_table=t
122 --let $trig_table=t
151 --let $trig_table=t
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/period/t/
H A Ddelete.test22 --let $trig_table=t1
35 --let $trig_table=t2
45 --let $trig_table=t3
101 --let $trig_table=t
122 --let $trig_table=t
151 --let $trig_table=t
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/period/t/
H A Ddelete.test22 --let $trig_table=t1
35 --let $trig_table=t2
45 --let $trig_table=t3
101 --let $trig_table=t
122 --let $trig_table=t
151 --let $trig_table=t
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/period/t/
H A Ddelete.test22 --let $trig_table=t1
35 --let $trig_table=t2
45 --let $trig_table=t3
101 --let $trig_table=t
122 --let $trig_table=t
151 --let $trig_table=t
/dports/databases/postgresql-plv8js/plv8-3.0.0/expected/
H A Dplv8.out507 CREATE TABLE trig_table (subject text, val int);
508 INSERT INTO trig_table VALUES('skip', 1);
511 ON trig_table FOR EACH ROW
513 INSERT INTO trig_table VALUES
515 SELECT * FROM trig_table;
523 UPDATE trig_table SET val = 10;
524 SELECT * FROM trig_table;
532 DELETE FROM trig_table;
533 SELECT * FROM trig_table;
H A Dplv8_3.out507 CREATE TABLE trig_table (subject text, val int);
508 INSERT INTO trig_table VALUES('skip', 1);
511 ON trig_table FOR EACH ROW
513 INSERT INTO trig_table VALUES
515 SELECT * FROM trig_table;
523 UPDATE trig_table SET val = 10;
524 SELECT * FROM trig_table;
532 DELETE FROM trig_table;
533 SELECT * FROM trig_table;
H A Dplv8_4.out507 CREATE TABLE trig_table (subject text, val int);
508 INSERT INTO trig_table VALUES('skip', 1);
511 ON trig_table FOR EACH ROW
513 INSERT INTO trig_table VALUES
515 SELECT * FROM trig_table;
523 UPDATE trig_table SET val = 10;
524 SELECT * FROM trig_table;
532 DELETE FROM trig_table;
533 SELECT * FROM trig_table;
H A Dplv8_1.out507 CREATE TABLE trig_table (subject text, val int);
508 INSERT INTO trig_table VALUES('skip', 1);
511 ON trig_table FOR EACH ROW
513 INSERT INTO trig_table VALUES
515 SELECT * FROM trig_table;
523 UPDATE trig_table SET val = 10;
524 SELECT * FROM trig_table;
532 DELETE FROM trig_table;
533 SELECT * FROM trig_table;
H A Dplv8_2.out507 CREATE TABLE trig_table (subject text, val int);
508 INSERT INTO trig_table VALUES('skip', 1);
511 ON trig_table FOR EACH ROW
513 INSERT INTO trig_table VALUES
515 SELECT * FROM trig_table;
523 UPDATE trig_table SET val = 10;
524 SELECT * FROM trig_table;
532 DELETE FROM trig_table;
533 SELECT * FROM trig_table;

12345