Home
last modified time | relevance | path

Searched refs:exp_end (Results 1 – 25 of 114) sorted by relevance

12345

/dports/lang/expect/expect5.45.4/example/
H A Dchesslib.c19 exp_end)) {
30 switch (exp_expectl(fd,exp_glob,"*...*\r\n",0,exp_end)) {
41 switch (exp_expectl(fd,exp_glob,"*...*\r\n*.*\r\n",0,exp_end)) {
66 if (-1 == exp_expectl(fd1,exp_glob,"Chess\r\n",0,exp_end)) exit; in main()
74 if (-1 == exp_expectl(fd2,exp_glob,"Chess\r\n",0,exp_end)) exit; in main()
H A Dchesslib++.c23 if (EXP_TIMEOUT == exp_expectl(fd,exp_glob,"first\r\n1.*\r\n",0,exp_end)) { in read_first_move()
34 switch (exp_expectl(fd,exp_glob,"*...*\r\n",0,exp_end)) { in read_counter_move()
45 switch (exp_expectl(fd,exp_glob,"*...*\r\n*.*\r\n",0,exp_end)) { in read_move()
70 if (-1 == exp_expectl(fd1,exp_glob,"Chess\r\n",0,exp_end)) exit; in main()
78 if (-1 == exp_expectl(fd2,exp_glob,"Chess\r\n",0,exp_end)) exit; in main()
H A Dchesslib2.c19 exp_end)) {
30 switch (exp_fexpectl(fp,exp_glob,"*...*\r\n",0, exp_end)) {
41 switch (exp_fexpectl(fp,exp_glob,"*...*\r\n*.*\r\n",0,exp_end)) {
68 if (0 > exp_fexpectl(fp1,exp_glob,"Chess\r\n",0,exp_end)) exit(-1); in main()
75 exp_fexpectl(fp2,exp_glob,"Chess\r\n",0,exp_end); in main()
/dports/shells/zsh-syntax-highlighting/zsh-syntax-highlighting-0.7.1/tests/
H A Dtest-highlighting.zsh154 integer exp_start=$expected_highlight_zone[1] exp_end=$expected_highlight_zone[2]
158 … print -r -- "not ok $i - unmatched expectation ($exp_start $exp_end $expected_highlight_zone[3])"
167 [[ $end != $exp_end ]] ||
170 …print -r -- "not ok $i - $desc - expected ($exp_start $exp_end ${(qqq)expected_highlight_zone[3]})…
175 unset exp_start exp_end
/dports/www/ilias/ILIAS-5.4.25/Services/WorkflowEngine/test/detectors/
H A DilTimerDetectorTest.php176 $exp_end = 4711;
179 $detector->setListeningTimeframe($exp_start, $exp_end);
183 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
236 $exp_end = 4712;
239 $detector->setListeningTimeframe($exp_start, $exp_end);
243 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
/dports/net/kamailio/kamailio-5.4.5/src/modules/sms/
H A Dlibsms_modem.c43 int max, int timeout,char* exp_end) in put_command() argument
82 exp_end_len = exp_end?strlen(exp_end):0; in put_command()
113 if ( (!exp_end && ((pos=strstr(optz(n,4),"OK\r\n")) in put_command()
115 || (exp_end && (pos=strstr(optz(n,exp_end_len),exp_end)) )) { in put_command()
121 answer_e = foo?foo+2:(pos+(exp_end?exp_end_len:4)); in put_command()
/dports/www/ilias6/ILIAS-6.14/Services/WorkflowEngine/test/detectors/
H A DilTimerDetectorTest.php178 $exp_end = 4711;
181 $detector->setListeningTimeframe($exp_start, $exp_end);
185 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
238 $exp_end = 4712;
241 $detector->setListeningTimeframe($exp_start, $exp_end);
245 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/core/perf_test/
H A DPerfTestGramSchmidt.cpp203 void run_test_gramschmidt(int exp_beg, int exp_end, int num_trials, in run_test_gramschmidt() argument
210 for (int i = exp_beg; i < exp_end; ++i) { in run_test_gramschmidt()
240 int exp_end = 20; in TEST() local
244 if (command_line_num_args() > 2) exp_end = std::stoi(command_line_arg(2)); in TEST()
248 exp_beg, exp_end, num_trials, Kokkos::DefaultExecutionSpace::name())); in TEST()
/dports/devel/kokkos/kokkos-3.4.01/core/perf_test/
H A DPerfTestGramSchmidt.cpp203 void run_test_gramschmidt(int exp_beg, int exp_end, int num_trials, in run_test_gramschmidt() argument
210 for (int i = exp_beg; i < exp_end; ++i) { in run_test_gramschmidt()
240 int exp_end = 20; in TEST() local
244 if (command_line_num_args() > 2) exp_end = std::stoi(command_line_arg(2)); in TEST()
248 exp_beg, exp_end, num_trials, Kokkos::DefaultExecutionSpace::name())); in TEST()
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/core/perf_test/
H A DPerfTestGramSchmidt.cpp203 void run_test_gramschmidt(int exp_beg, int exp_end, int num_trials, in run_test_gramschmidt() argument
210 for (int i = exp_beg; i < exp_end; ++i) { in run_test_gramschmidt()
240 int exp_end = 20; in TEST() local
244 if (command_line_num_args() > 2) exp_end = std::stoi(command_line_arg(2)); in TEST()
248 exp_beg, exp_end, num_trials, Kokkos::DefaultExecutionSpace::name())); in TEST()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8.cc48 auto exp_end = expected + expected_len; in test() local
52 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
54 VERIFY( exp_next == exp_end ); in test()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8.cc48 auto exp_end = expected + expected_len; in test() local
52 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
54 VERIFY( exp_next == exp_end ); in test()
/dports/lang/gcc11/gcc-11.2.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8.cc48 auto exp_end = expected + expected_len; in test() local
52 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
54 VERIFY( exp_next == exp_end ); in test()
/dports/lang/gcc9-devel/gcc-9-20211007/libstdc++-v3/testsuite/22_locale/codecvt/
H A Dutf8-char8_t.cc49 auto exp_end = expected + expected_len; in test() local
53 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
55 VERIFY( exp_next == exp_end ); in test()
H A Dutf8.cc47 auto exp_end = expected + expected_len; in test() local
51 res = cvt.in(state, expected, exp_end, exp_next, buf2, buf2_end, buf2_next); in test()
53 VERIFY( exp_next == exp_end ); in test()

12345