Home
last modified time | relevance | path

Searched refs:test_sort (Results 1 – 25 of 463) sorted by relevance

12345678910>>...19

/dports/databases/postgresql-orafce/orafce-VERSION_3_13_4/sql/
H A Dnlssort.sql10 CREATE TABLE test_sort (name TEXT); table
11 INSERT INTO test_sort VALUES ('red'), ('brown'), ('yellow'), ('Purple');
12 SELECT * FROM test_sort ORDER BY NLSSORT(name, 'en_US.utf8');
13 SELECT * FROM test_sort ORDER BY NLSSORT(name, '');
15 SELECT * FROM test_sort ORDER BY NLSSORT(name);
17 SELECT * FROM test_sort ORDER BY NLSSORT(name);
19 SELECT * FROM test_sort ORDER BY NLSSORT(name);
20 INSERT INTO test_sort VALUES(NULL);
21 SELECT * FROM test_sort ORDER BY NLSSORT(name);
/dports/math/yices/yices-2.6.2/tests/unit/
H A Dtest_stable_sort.c324 test_sort(sorter, a, n); in test_sorting()
326 test_sort(sorter, a, n); in test_sorting()
329 test_sort(sorter, a, n); in test_sorting()
331 test_sort(sorter, a, n); in test_sorting()
333 test_sort(sorter, a, n); in test_sorting()
335 test_sort(sorter, a, n); in test_sorting()
338 test_sort(sorter, a, n); in test_sorting()
340 test_sort(sorter, a, n); in test_sorting()
342 test_sort(sorter, a, n); in test_sorting()
344 test_sort(sorter, a, n); in test_sorting()
[all …]
H A Dtest_ptr_sort.c137 static void test_sort(void **a, uint32_t n) { in test_sort() function
161 test_sort(a, n); in main()
163 test_sort(a, n); in main()
165 test_sort(a, n); in main()
167 test_sort(a, n); in main()
169 test_sort(a, n); in main()
H A Dtest_ptr_sort2.c145 static void test_sort(void **a, uint32_t n) { in test_sort() function
169 test_sort(a, n); in main()
171 test_sort(a, n); in main()
173 test_sort(a, n); in main()
175 test_sort(a, n); in main()
177 test_sort(a, n); in main()
/dports/math/pspp/pspp-1.4.1/tests/language/dictionary/
H A Dsort-variables.at28 test_sort () {
48 test_sort 'x100 c b x99 a y400 y5' '' NAME 'a b c x99 x100 y5 y400'
49 test_sort 'c(a10) a(a5) b' '' TYPE 'b a c'
51 test_sort 'a b c' \
54 test_sort 'a b c' \
57 test_sort 'a b c' \
60 test_sort 'a b c' \
63 test_sort 'b n i s t p' \
66 test_sort 'c10 c5 c15 c9' \
69 test_sort 'c l r' \
[all …]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/dependencies/lib-SDL2-2.0.8-mingw/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
85 test_sort("already sorted", nums, arraylen); in main()
91 test_sort("already sorted except last element", nums, arraylen); in main()
96 test_sort("reverse sorted", nums, arraylen); in main()
101 test_sort("random sorted", nums, arraylen); in main()
/dports/emulators/mess/mame-mame0226/3rdparty/SDL2/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
85 test_sort("already sorted", nums, arraylen); in main()
91 test_sort("already sorted except last element", nums, arraylen); in main()
96 test_sort("reverse sorted", nums, arraylen); in main()
101 test_sort("random sorted", nums, arraylen); in main()
/dports/emulators/mame/mame-mame0226/3rdparty/SDL2/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
85 test_sort("already sorted", nums, arraylen); in main()
91 test_sort("already sorted except last element", nums, arraylen); in main()
96 test_sort("reverse sorted", nums, arraylen); in main()
101 test_sort("random sorted", nums, arraylen); in main()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/libs/SDL2/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
85 test_sort("already sorted", nums, arraylen); in main()
91 test_sort("already sorted except last element", nums, arraylen); in main()
96 test_sort("reverse sorted", nums, arraylen); in main()
101 test_sort("random sorted", nums, arraylen); in main()
/dports/x11/controllermap/SDL2-2.0.18/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
83 test_sort("already sorted", nums, arraylen); in main()
89 test_sort("already sorted except last element", nums, arraylen); in main()
94 test_sort("reverse sorted", nums, arraylen); in main()
99 test_sort("random sorted", nums, arraylen); in main()
/dports/devel/sdl20/SDL2-2.0.18/test/
H A Dtestqsort.c24 test_sort(const char *desc, int *nums, const int arraylen) in test_sort() function
83 test_sort("already sorted", nums, arraylen); in main()
89 test_sort("already sorted except last element", nums, arraylen); in main()
94 test_sort("reverse sorted", nums, arraylen); in main()
99 test_sort("random sorted", nums, arraylen); in main()
/dports/graphics/xfpovray/xfpovray-1.3.1/flx/examples/
H A DImakefile10 SRCS4 = test_sort.c
17 OBJS4 = test_sort.o
33 AllTarget(test_sort)
34 NormalProgramTarget(test_sort,$(OBJS4),$(DEPLIBS),$(XLIB),$(EXTRA_LIBRARIES))
/dports/devel/libslang2/slang-2.3.2/src/test/
H A Dsort.sl85 private define test_sort (x, n, ans) function
132 test_sort (A, length(A), [0:length(A)-1]);
133 test_sort ([2], 1, [2]);
134 test_sort (A[[0:-1]], 0, A[[0:-1]]);
136 test_sort (A, length(A), [length(A)-1:0:-1] ;dir=-1);
137 test_sort ([2], 1, [2]; dir=-1);
138 test_sort (A[[0:-1]], 0, A[[0:-1]]; dir=-1);
/dports/math/spooles-mpich/spooles.2.2_SHARED/Utilities/drivers/
H A Dmakefile7 DRIVERS = test_sort test_sortUpAndCompress
14 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles/spooles.2.2/Utilities/drivers/
H A Dmakefile7 DRIVERS = test_sort test_sortUpAndCompress
14 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles-mpich/spooles.2.2/Utilities/drivers/
H A Dmakefile7 DRIVERS = test_sort test_sortUpAndCompress
14 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles/spooles.2.2_SHARED/Utilities/drivers/
H A Dmakefile7 DRIVERS = test_sort test_sortUpAndCompress
14 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles-mpich/spooles.2.2/SubMtx/drivers/
H A Dmakefile15 test_sort
46 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles-mpich/spooles.2.2_SHARED/SubMtx/drivers/
H A Dmakefile15 test_sort
46 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles/spooles.2.2_SHARED/SubMtx/drivers/
H A Dmakefile15 test_sort
46 test_sort : test_sort.o ../../spooles.a target
/dports/math/spooles/spooles.2.2/SubMtx/drivers/
H A Dmakefile15 test_sort
46 test_sort : test_sort.o ../../spooles.a target
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/mango/test/
H A D13-users-db-find-test.py38 def test_sort(self): member in UsersDbFindTests
72 def test_sort(self): member in UsersDbIndexFindTests
74 super(UsersDbIndexFindTests, self).test_sort()
/dports/databases/qof/qof-0.8.8/qof/test/
H A Dtest-querynew.c72 test_sort (gpointer a __attribute__ ((unused)), gpointer b __attribute__ ((unused))) in test_sort() function
96 qof_class_register (TEST_MODULE_NAME, (QofSortFunc) test_sort, params); in test_class()
118 (QofSortFunc) test_sort, "qof_class_get_default_sort"); in test_class()
/dports/science/nest/nest-simulator-3.1/testsuite/unittests/
H A Dtest_sort.sli2 * test_sort.sli
25 Name: testsuite::test_sort - sli script to test if sorting works
27 Synopsis: (test_sort) run
/dports/math/py-theano/Theano-1.0.5/theano/gpuarray/tests/
H A Dtest_sort.py4 import theano.tensor.tests.test_sort
9 class Test_GpuTopK(theano.tensor.tests.test_sort.Test_TopK):

12345678910>>...19