/freebsd/usr.bin/diff3/tests/ |
H A D | long-m.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-y.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-o.txt | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 12 These lines are the same in all three files 13 These lines are the same in all three files 14 These lines are the same in all three files [all …]
|
H A D | long-merge.out | 2 These lines are the same in all three files 3 These lines are the same in all three files 5 These lines are the same in all three files 6 These lines are the same in all three files 7 These lines are the same in all three files 9 These lines are the same in all three files 10 These lines are the same in all three files 16 These lines are the same in all three files 17 These lines are the same in all three files 18 These lines are the same in all three files [all …]
|
/freebsd/tools/tools/whereintheworld/ |
H A D | whereintheworld.pl | 16 my @lines = (); 28 @lines = (); 41 @lines = (); 43 push(@lines, $line); 47 push(@lines, $line); 53 if (@lines && !$error) { 54 print shift(@lines); 55 while (@lines > $thresh) { 56 shift(@lines); 63 foreach $line (@lines) {
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | get_window_size.c | 61 get_window_size(int fd, int *lines, int *columns) in get_window_size() argument 71 if (lines) in get_window_size() 72 *lines = ws.ws_row; in get_window_size() 84 if (lines) in get_window_size() 85 *lines = ts.ws_lines; in get_window_size() 96 if (lines) in get_window_size() 97 *lines = dst[1]; in get_window_size() 110 if (lines) in get_window_size() 111 *lines = 1 + sb_info.srWindow.Bottom - sb_info.srWindow.Top; in get_window_size() 125 if (lines) { in get_window_size() [all …]
|
/freebsd/crypto/heimdal/lib/sl/ |
H A D | test_sl.c | 40 } lines[] = { variable 70 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++) { in main() 73 char *buf = strdup(lines[i].line); in main() 77 if (!lines[i].ok) in main() 80 } else if (!lines[i].ok) in main() 82 if (rargc != lines[i].argc) in main() 84 rargc, lines[i].argc, i); in main() 86 if (strcmp(rargv[j], lines[i].argv[j]) != 0) in main() 88 rargv[j], lines[i].argv[j], i); in main()
|
/freebsd/contrib/mandoc/ |
H A D | chars.c | 46 static struct ln lines[] = { variable 446 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++) { in mchars_alloc() 447 slot = ohash_qlookup(&mchars, lines[i].roffcode); in mchars_alloc() 449 ohash_insert(&mchars, slot, lines + i); in mchars_alloc() 503 for (i = 0; i < sizeof(lines)/sizeof(lines[0]); i++) in mchars_uc2str() 504 if (uc == lines[i].unicode) in mchars_uc2str() 505 return lines[i].ascii; in mchars_uc2str()
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 15-test_gendhparam.t | 143 my @lines; 145 @lines = run(app(['openssl', 'genpkey', '-genparam', 150 @lines = run(app(['openssl', 'genpkey', '-genparam', 154 ok(compareline(\@lines, \@expected), $msg); 160 my @lines = @$ref_lines; 163 if (@lines == 0 and $expected[0] eq 'ERROR') { 167 foreach (@lines) { 172 if ( !grep { index($_, $ex) >= 0 } @lines) {
|
H A D | 25-test_crl.t | 56 my @lines = run(app($cmdarray), capture => 1); 58 return 1 if $lines[0] =~ m|^\Q${str}\E\R$|; 59 note "Got ", $lines[0]; 66 my @lines = run(app($cmdarray, stdin => $infile), capture => 1); 68 return 1 if $lines[0] =~ m|^\Q${str}\E\R$|; 69 note "Got ", $lines[0];
|
/freebsd/usr.bin/sed/tests/ |
H A D | regress.sh | 38 jot -w "l${n}_%d" 9 | tee lines.in.$n lines._in.$n | \ 39 sed "$expr" > lines.out.$n 44 sed "$expr" $_ins > lines.out 50 diff -u lines.out.$n lines.in.$n || rc=1 52 cat $_ins | diff -u lines.out - || rc=1 53 rm -f $ins $outs $_ins lines.out
|
/freebsd/contrib/kyua/utils/text/ |
H A D | operations_test.cpp | 57 const std::vector< std::string > lines = text::split(expected, '\n'); in refill_test() local 60 ATF_REQUIRE(lines == text::refill(input, width)); in refill_test() 218 std::vector< std::string > lines; in ATF_TEST_CASE_BODY() local 219 ATF_REQUIRE_EQ("", text::join(lines, " ")); in ATF_TEST_CASE_BODY() 226 std::vector< std::string > lines; in ATF_TEST_CASE_BODY() local 227 lines.push_back("first line"); in ATF_TEST_CASE_BODY() 228 ATF_REQUIRE_EQ("first line", text::join(lines, "*")); in ATF_TEST_CASE_BODY() 235 std::vector< std::string > lines; in ATF_TEST_CASE_BODY() local 236 lines.push_back("first abc"); in ATF_TEST_CASE_BODY() 237 lines.push_back("second"); in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/contrib/atf/atf-c/detail/ |
H A D | sanity_test.c | 95 char *lines[3]; in do_test() local 109 while (nlines < 3 && (lines[nlines] = in do_test() 127 ATF_REQUIRE(atf_utils_grep_string("Invariant", lines[0])); in do_test() 131 ATF_REQUIRE(atf_utils_grep_string("Precondition", lines[0])); in do_test() 135 ATF_REQUIRE(atf_utils_grep_string("Postcondition", lines[0])); in do_test() 139 ATF_REQUIRE(atf_utils_grep_string("Invariant", lines[0])); in do_test() 143 ATF_REQUIRE(atf_utils_grep_string(__FILE__, lines[0])); in do_test() 144 ATF_REQUIRE(atf_utils_grep_string(PACKAGE_BUGREPORT, lines[2])); in do_test() 149 free(lines[nlines]); in do_test()
|
/freebsd/usr.sbin/lpr/filters.ru/koi2855/ |
H A D | koi2855.c | 42 int lines; variable 82 lines = 0; in main() 94 lines++; in main() 96 lines = length; in main() 98 if (lines >= length) { in main() 99 lines = 0; in main()
|
/freebsd/usr.sbin/lpr/filters.ru/koi2alt/ |
H A D | koi2alt.c | 41 int lines; variable 83 lines = 0; in main() 95 lines++; in main() 97 lines = length; in main() 99 if (lines >= length) { in main() 100 lines = 0; in main()
|
/freebsd/sys/dev/syscons/ |
H A D | schistory.c | 86 sc_alloc_history_buffer(scr_stat *scp, int lines, int prev_ysize, int wait) in sc_alloc_history_buffer() argument 100 if (lines <= 0) in sc_alloc_history_buffer() 101 lines = SC_HISTORY_SIZE; /* use the default value */ in sc_alloc_history_buffer() 104 lines = imax(lines, scp->ysize); in sc_alloc_history_buffer() 121 if (lines > min_lines) { in sc_alloc_history_buffer() 122 if (lines - min_lines > extra_history_size + delta) { in sc_alloc_history_buffer() 134 if (lines > min_lines) in sc_alloc_history_buffer() 135 extra_history_size -= lines - min_lines; in sc_alloc_history_buffer() 137 sc_vtb_init(history, VTB_RINGBUFFER, scp->xsize, lines, in sc_alloc_history_buffer() 164 int lines; in copy_history() local [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/ |
H A D | tst.temporal.ksh | 49 @lines = count(); 55 /* Bump @lines every time we print a line. */ 56 @lines = count(); 58 @lines = count(); 59 printa("99999999999999999 lines %@u\n", @lines); 64 @lines = count(); 102 echo $tst: incorrect number of lines output
|
/freebsd/tools/tools/iso/ |
H A D | check-iso3166.pl | 19 my @lines = <FIN>; 21 chomp(@lines); 23 foreach my $l (@lines) { 44 my @lines = <FIN>; 46 chomp(@lines); 49 foreach my $l (@lines) { 74 my @lines = <FIN>; 76 chomp(@lines); 79 foreach my $l (@lines) {
|
H A D | check-iso639.pl | 19 my @lines = <FIN>; 21 chomp(@lines); 23 foreach my $l (@lines) { 44 my @lines = <FIN>; 46 chomp(@lines); 48 foreach my $l (@lines) {
|
/freebsd/contrib/kyua/utils/cmdline/ |
H A D | ui.cpp | 174 const std::vector< std::string > lines = text::refill( in out_wrap() local 176 for (std::vector< std::string >::const_iterator iter = lines.begin(); in out_wrap() 177 iter != lines.end(); iter++) in out_wrap() 200 const std::vector< std::string > lines = text::refill( in out_tag_wrap() local 202 for (std::vector< std::string >::const_iterator iter = lines.begin(); in out_tag_wrap() 203 iter != lines.end(); iter++) { in out_tag_wrap() 204 if (repeat || iter == lines.begin()) in out_tag_wrap() 233 const std::vector< std::string > lines = formatter.format(table); in out_table() local 234 for (std::vector< std::string >::const_iterator iter = lines.begin(); in out_table() 235 iter != lines.end(); ++iter) in out_table()
|
/freebsd/tools/tools/locale/tools/ |
H A D | mkwidths.pl | 66 my @lines = <FIN>; 68 chomp(@lines); 71 foreach my $l (@lines) { 114 my @lines = <STDIN>; 115 chomp(@lines); 117 foreach my $l (@lines) {
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | qcom,lpass-cpu.txt | 42 By default, the driver uses up to 4 MI2S SD lines, for a total of 8 channels. 43 The SD lines to use can be configured by adding subnodes for each of the DAIs. 48 - qcom,playback-sd-lines: List of serial data lines to use for playback 50 - qcom,capture-sd-lines : List of serial data lines to use for capture 53 Note that adding a subnode changes the default to "no lines configured", 54 so both playback and capture lines should be configured when a subnode is added. 74 /* Optional to set different MI2S SD lines */ 77 qcom,playback-sd-lines = <0 1>;
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandler.cpp | 269 [this](Editline *editline, StringList &lines) { in IOHandlerEditline() argument 270 return this->IsInputCompleteCallback(editline, lines); in IOHandlerEditline() 294 const StringList &lines, in IOHandlerEditline() 296 return this->FixIndentationCallback(editline, lines, cursor_position); in IOHandlerEditline() 441 StringList &lines) { in IsInputCompleteCallback() 442 return m_delegate.IOHandlerIsInputComplete(*this, lines); 446 const StringList &lines, in FixIndentationCallback() 448 return m_delegate.IOHandlerFixIndentation(*this, lines, cursor_position); 525 // When libedit is not used, the current lines can be gotten from in GetLines() 535 bool IOHandlerEditline::GetLines(StringList &lines, boo in GetLines() 293 __anoncf8a7a3b0402(Editline *editline, const StringList &lines, int cursor_position) IOHandlerEditline() argument 439 IsInputCompleteCallback(Editline * editline,StringList & lines) IsInputCompleteCallback() argument 444 FixIndentationCallback(Editline * editline,const StringList & lines,int cursor_position) FixIndentationCallback() argument 511 GetLines(StringList & lines,bool & interrupted) GetLines() argument 558 StringList lines; Run() local [all...] |
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | LinuxProcMaps.cpp | 125 llvm::StringRef lines(linux_map); in ParseLinuxMapRegions() local 127 while (!lines.empty()) { in ParseLinuxMapRegions() 128 std::tie(line, lines) = lines.split('\n'); in ParseLinuxMapRegions() 148 llvm::StringRef lines(linux_smap); in ParseLinuxSMapRegions() local 152 while (lines.size()) { in ParseLinuxSMapRegions() 153 std::tie(line, lines) = lines.split('\n'); in ParseLinuxSMapRegions()
|
/freebsd/crypto/openssh/regress/ |
H A D | yes-head.sh | 6 lines=`${SSH} -F $OBJ/ssh_proxy thishost 'sh -c "while true;do echo yes;done | _POSIX2_VERSION=1992… 9 + lines=0 11 if [ $lines -ne 2000 ]; then 12 fail "yes|head returns $lines lines instead of 2000"
|