Home
last modified time | relevance | path

Searched refs:temp_table (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/dports/www/py-google-cloud-bigtable/google-cloud-bigtable-2.4.0/tests/system/
H A Dtest_table_admin.py70 assert not temp_table.exists()
72 temp_table.create()
75 temp_table.delete()
82 temp_table.create()
140 temp_table.create()
164 temp_table.create()
188 temp_table.create()
210 temp_table.create()
226 temp_table.create()
243 temp_table.create()
[all …]
/dports/graphics/rawstudio/rawstudio-2.0/librawstudio/
H A Drs-color.c38 } temp_table[] = { variable
90 gdouble dv = temp_table[index] . t; in rs_color_whitepoint_to_temp()
98 gdouble uu = u - temp_table[index] . u; in rs_color_whitepoint_to_temp()
99 gdouble vv = v - temp_table[index] . v; in rs_color_whitepoint_to_temp()
124 *temp = 1.0E6 / (temp_table[index - 1] . r * f + temp_table[index ] . r * (1.0 - f)); in rs_color_whitepoint_to_temp()
127 uu = u - (temp_table[index - 1] . u * f + temp_table[index] . u * (1.0 - f)); in rs_color_whitepoint_to_temp()
128 vv = v - (temp_table[index - 1] . v * f + temp_table[index] . v * (1.0 - f)); in rs_color_whitepoint_to_temp()
176 gdouble f = (temp_table[index + 1].r - r) / (temp_table[index + 1].r - temp_table[index].r); in rs_color_temp_to_whitepoint()
180 gdouble u = temp_table[index].u * f + temp_table[index + 1].u * (1.0 - f); in rs_color_temp_to_whitepoint()
182 gdouble v = temp_table[index].v * f + temp_table[index + 1].v * (1.0 - f); in rs_color_temp_to_whitepoint()
[all …]
/dports/databases/pg_citus/citus-10.2.3/src/test/regress/sql/
H A Dmulti_sql_function.sql59 CREATE TABLE temp_table ( table
67 INSERT INTO temp_table (key) VALUES (0);
79 INSERT INTO temp_table (key, value) VALUES (0, $1);
91 SELECT * FROM temp_table ORDER BY key, value;
95 UPDATE temp_table SET value = $2 WHERE key = 0 AND value = $1;
107 SELECT * FROM temp_table ORDER BY key, value;
111 DELETE FROM temp_table WHERE key = 0 AND value = $1;
123 SELECT * FROM temp_table ORDER BY key, value;
171 DROP TABLE temp_table, test_parameterized_sql, table_with_unique_constraint;
/dports/games/scummvm-tools/scummvm-tools-2.5.0/engines/tucker/
H A Dcompress_tucker.cpp45 static CompressedData temp_table[10000]; variable
116 assert(dir->count <= ARRAYSIZE(temp_table)); in compress_sounds_directory()
132 temp_table[i].offset = current_offset; in compress_sounds_directory()
138 temp_table[i].size = 0; in compress_sounds_directory()
140 current_offset += temp_table[i].size; in compress_sounds_directory()
146 output.writeUint32LE(temp_table[i].offset); in compress_sounds_directory()
147 output.writeUint32LE(temp_table[i].size); in compress_sounds_directory()
315 temp_table[i].offset = current_offset; in compress_audio_directory()
335 temp_table[i].size = 0; in compress_audio_directory()
338 current_offset += temp_table[i].size; in compress_audio_directory()
[all …]
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/See-file/
H A DPhotoQuery.cs28 string temp_table; field in FSpot.PhotoQuery.PhotoCache
31 public PhotoCache (PhotoStore store, string temp_table) in PhotoCache() argument
33 this.temp_table = temp_table; in PhotoCache()
54 val = store.QueryFromTemp (temp_table, offset, SIZE); in Get()
81 cache = new PhotoCache (store, temp_table); in PhotoQuery()
94 count = store.Count (temp_table);
113 get { return store.QueryFromTemp (temp_table); }
274 store.QueryToTemp (temp_table, condition_array); in RequestReload()
277 cache = new PhotoCache (store, temp_table); in RequestReload()
290 return store.IndexOf (temp_table, photo as Photo); in IndexOf()
[all …]
/dports/databases/mysql55-client/mysql-5.5.62/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result13 create temporary table temp_table (a char(80) not null);
14 insert into temp_table values ("testing temporary tables");
31 create table t3 select * from temp_table;
32 include/assert.inc [Data in t3 should be equal to temp_table]
33 drop table temp_table, t3;
64 create temporary table temp_table (a char(80) not null);
65 insert into temp_table values ("testing temporary tables part 2");
68 create table t4 select * from temp_table;
80 include/assert.inc [Data in t4 should be equal to temp_table]
88 drop temporary table temp_table;
/dports/converters/osm2pgrouting/osm2pgrouting-2.3.8/src/database/
H A DExport2DB.cpp262 std::string temp_table(table.temp_name()); in export_osm() local
295 Xaction.exec("DROP TABLE " + temp_table); in export_osm()
313 Xaction.exec("DROP TABLE " + temp_table); in export_osm()
398 auto temp_table(table.temp_name()); in exportWays() local
475 Xaction.exec("DROP TABLE " + temp_table); in exportWays()
491 auto temp_table(ways().temp_name()); in process_section() local
493 Xaction.exec("CREATE INDEX "+ temp_table + "_gdx ON "+ temp_table + " using gist(the_geom);"); in process_section()
502 " DELETE FROM "+ temp_table + " a " in process_section()
508 fill_source_target(temp_table, vertices().addSchema(), Xaction); in process_section()
511 fill_vertices_table(temp_table, vertices().addSchema(), Xaction); in process_section()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/breakpad/breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/deskutils/owncloudclient/ownCloud-2.8.2.4246/src/3rdparty/libcrashreporter-qt/3rdparty/breakpad/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table;
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) &&
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) {
85 temp_table.Release();
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/breakpad/breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/www/firefox/firefox-99.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/www/firefox-esr/firefox-91.8.0/toolkit/crashreporter/google-breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/www/otter-browser/otter-browser-1.0.03/3rdparty/breakpad/src/common/windows/
H A Ddia_util.cc76 CComPtr<IDiaTable> temp_table; in FindTable() local
78 while (SUCCEEDED(enum_tables->Next(1, &temp_table, &fetched)) && in FindTable()
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) { in FindTable()
85 temp_table.Release(); in FindTable()
/dports/irc/epic4/epic4-2.10.9/source/
H A Dtranslat.c46 unsigned char temp_table[512]; in set_translation() local
101 temp_table[c++] = (unsigned char) inputs[j]; in set_translation()
109 transToClient[c] = temp_table[c]; in set_translation()
110 transFromClient[c] = temp_table[c | 256]; in set_translation()
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/mariadb103-server/mariadb-10.3.34/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/mariadb105-server/mariadb-10.5.15/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result19 create temporary table temp_table (a char(80) not null);
20 insert into temp_table values ("testing temporary tables");
41 create table t3 select * from temp_table;
47 drop table temp_table, t3;
88 create temporary table temp_table (a char(80) not null);
89 insert into temp_table values ("testing temporary tables part 2");
94 create table t4 select * from temp_table;
121 drop temporary table temp_table;
/dports/databases/percona56-server/percona-server-5.6.51-91.0/mysql-test/suite/rpl/r/
H A Drpl_rotate_logs.result20 create temporary table temp_table (a char(80) not null);
21 insert into temp_table values ("testing temporary tables");
39 create table t3 select * from temp_table;
41 include/assert.inc [Data in t3 should be equal to temp_table]
42 drop table temp_table, t3;
77 create temporary table temp_table (a char(80) not null);
78 insert into temp_table values ("testing temporary tables part 2");
81 create table t4 select * from temp_table;
83 include/assert.inc [Data in t4 should be equal to temp_table]
89 drop temporary table temp_table;

12345678910>>...19