Home
last modified time | relevance | path

Searched +full:multi +full:- +full:line (Results 1 – 25 of 789) sorted by relevance

12345678910>>...32

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h1 //===-- Editline.h ----------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // a) Sometimes text just disappears while editing. In an 80-column editor
40 #include "lldb/lldb-private.h"
107 /// Status used to decide when and how to start editing another line in
108 /// multi-line sessions.
111 /// The default state proceeds to edit the current line.
126 /// The start of the first line in a multi-line edit session.
129 /// The start of the current line in a multi-line edit session.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkup.cpp1 //===- lib/DebugInfo/Symbolize/Markup.cpp ------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
25 // "\033[30m" -- "\033[37m"
26 static const char SGRSyntaxStr[] = "\033\\[([0-1]|3[0-7])m";
32 return Str.take_front(Pos - Str.begin()); in takeTo()
35 Str = Str.drop_front(Pos - Str.begin()); in advanceTo()
38 void MarkupParser::parseLine(StringRef Line) { in parseLine() argument
42 this->Line = Line; in parseLine()
[all …]
/freebsd/crypto/openssl/util/
H A Dcheck-format.pl3 # Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.
4 # Copyright Siemens AG 2019-2022
11 # check-format.pl
12 # - check formatting of C source according to OpenSSL coding style
15 # check-format.pl [-l|--sloppy-len] [-l|--sloppy-bodylen]
16 # [-s|--sloppy-space] [-c|--sloppy-comment]
17 # [-m|--sloppy-macro] [-h|--sloppy-hang]
18 # [-e|--eol-comment] [-1|--1-stmt]
21 # run self-tests:
22 # util/check-format.pl util/check-format-test-positives.c
[all …]
H A Dcheck-format-test-positives.c2 * Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright Siemens AG 2015-2022
12 * This demonstrates/tests cases where check-format.pl should report issues.
14 * delimiters and parenthesis-like symbols, e.g., on unexpected/unclosed braces.
18 * The '@'s after '*' are used for self-tests: they mark lines containing
20 * while handling the given line, but in case of delayed checks there is a
21 * following digit indicating the number of reports expected for this line.
26 /*@ intra-line carriage return character:
28 /*@ non-printable ASCII character:  */
29 /*@ non-ASCII character: ä */
[all …]
H A Dcheck-format-test-negatives.c2 * Copyright 2007-2024 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright Siemens AG 2015-2022
12 * A collection of test cases where check-format.pl should not report issues.
26 /* allow extra SPC in single-line comment */
28 * allow extra SPC in regular multi-line comment
30 /*-
31 * allow extra SPC in format-tagged multi-line comment
36 ** allow "**" as first non-space chars of a line within multi-line comment
40 * trailing multi-line comment in f()
67 * multi-line comment should not disturb detection of local decls in f()
[all …]
/freebsd/sbin/init/
H A Dinit.851 and if this succeeds, begins multi-user operation.
54 commences single-user operation by giving
55 the super-user a shell on the console.
60 prevent the system from going multi-user and to instead execute
61 a single-user shell without starting the normal daemons.
63 later be made to go to multi-user by exiting the
64 single-user shell (with ^D).
80 will require that the super-user password be
81 entered before the system will start a single-user shell.
91 command line; see the
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Ddirective-info.mk1 # $NetBSD: directive-info.mk,v 1.11 2023/06/01 20:56:35 rillig Exp $
5 # Until parse.c 1.502 from 2020-12-19, a missing argument to the directive
7 # from 2020-12-19, the correct "Missing argument" is produced.
24 .information message # Accepted before 2020-12-13 01:07:54.
35 # expect+1: Unknown directive "info-message"
36 .info-message # This is an unknown directive.
37 # expect+1: no-target: no-source
38 .info no-target: no-source # This is a .info directive, not a dependency.
41 # Since at least 2002-01-01 and before parse.c 1.639 from 2022-01-08, the line
43 # number of completely read lines. For the following multi-line directive,
[all …]
H A Dopt-debug-parse.mk1 # $NetBSD: opt-debug-parse.mk,v 1.8 2023/06/01 20:56:35 rillig Exp $
3 # Tests for the -dp command line option, which adds debug logging about
6 .MAKEFLAGS: -dp
10 # Before parse.c 1.639 from 2022-01-08, PrintStackTrace and other diagnostics
11 # printed a wrong line number, using the last line before the loop body, while
12 # it should rather be the line number where the .for loop starts.
14 # Before parse.c 1.643 from 2022-01-08, PrintStackTrace tried to be too clever
15 # by merging stack trace entries, printing confusing line numbers as a result.
20 # expect+1: trace with multi-line .for loop head
21 .info trace with multi-line .for loop head
[all …]
H A Dsh-multi-line.mk1 # $NetBSD: sh-multi-line.mk,v 1.2 2020/08/16 14:25:16 rillig Exp $
3 # Tests for multi-line shell commands, to ensure that the line breaks
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DMarkup.h1 //===- Markup.h -------------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
55 /// Parses an individual \p Line of input.
62 /// Note that some elements may span multiple lines. If a line ends with the
66 /// corresponding to the lines of the multi-line element.
67 void parseLine(StringRef Line);
72 /// in-progress multi-line element) and may cause nextNode() to return
89 std::optional<MarkupNode> parseElement(StringRef Line);
[all …]
/freebsd/contrib/xz/src/xz/
H A Dxz.12 .\" SPDX-License-Identifier: 0BSD
7 .TH XZ 1 "2025-03-08" "Tukaani" "XZ Utils"
10 xz, unxz, xzcat, lzma, unlzma, lzcat \- Compress or decompress .xz and .lzma files
42 .RB ( "xz \-d"
52 is a general-purpose data compression tool with
53 command line syntax similar to
93 .B \-\-stdout
97 .B \-
188 .B \-\-keep
204 .B \-\-verbose
[all …]
/freebsd/crypto/krb5/doc/pdf/
H A Dsphinxlatexobjects.sty6 % Provides support for this output mark-up from Sphinx latex writer:
8 % - environments
10 % - fulllineitems
11 % - productionlist
12 % - optionlist
13 % - DUlineblock (also "lineblock")
15 % - macros
17 % - \DUrole
18 % - various legacy support macros related to author and release
63 % the available width on line, so the \makebox becomes a bit superfluous
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DX509_NAME_print_ex.pod6 X509_NAME_oneline - X509_NAME printing routines
22 Each line (for multiline formats) is indented by I<indent> spaces. The
29 This supports multi-valued RDNs and escapes B</> and B<+> characters in values.
35 X509_NAME_print() prints out I<name> to I<bp> indenting each line by I<obase>
42 produce a non standard output form, they don't handle multi-character fields and
61 components and separate values in the same RDN for a multi-valued RDN.
62 Multi-valued RDNs are currently very rare
98 B<XN_FLAG_ONELINE> is a more readable one line format which is the same as:
117 Otherwise, it returns -1 on error or other values on success.
125 Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
/freebsd/sys/contrib/device-tree/Bindings/mtd/
H A Dfsl-upm-nand.txt4 - compatible : "fsl,upm-nand".
5 - reg : should specify localbus chip select and size used for the chip.
6 - fsl,upm-addr-offset : UPM pattern offset for the address latch.
7 - fsl,upm-cmd-offset : UPM pattern offset for the command latch.
10 - fsl,upm-addr-line-cs-offsets : address offsets for multi-chip support.
12 - gpios : may specify optional GPIOs connected to the Ready-Not-Busy pins
13 (R/B#). For multi-chip devices, "n" GPIO definitions are required
17 - fsl,upm-wait-flags : add chip-dependent short delays after running the
20 - chip-delay : chip dependent delay for transferring data from array to
24 Each flash chip described may optionally contain additional sub-nodes
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_debug_common.c1 // SPDX-License-Identifier: CDDL-1.0
10 * or https://opensource.org/licenses/CDDL-1.0.
38 * Given a multi-line string, print out one of the lines and return a pointer
39 * to the next line. Lines are demarcated by '\n'. Note: this modifies the
46 * This function is useful for printing large, multi-line text buffers.
48 * Returns the pointer to the beginning of the next line in buf[], or NULL
49 * if it's the last line, or nothing more to print.
/freebsd/share/man/man5/
H A Dsysctl.conf.534 file is read in when the system goes into multi-user mode to set default
41 .Bd -literal -offset indent
47 at the beginning of a line.
48 Comments can also exist at the end of a line,
56 additional module-specific settings can be applied
60 .Bl -tag -width /etc/rc.d/sysctl_lastload -compact
65 early on in the process of transitioning to multi-user mode.
70 shortly before the system reaches the multi-user mode.
75 Machine-specific settings for sites with a common
84 .Bd -literal -offset indent
/freebsd/sys/dev/sound/pci/
H A Denvy24ht.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
30 /* -------------------------------------------------------------------- */
37 #define ENVY24HT_PCIR_MT 0x14 /* Multi-Track I/O Base Address */
45 #define ENVY24HT_CCS_IMASK_PMT 0x10 /* Professional Multi-track */
65 #define ENVY24HT_CCSM_SCFG_MPU 0x20 /* 0(not implemented)/1(1) MPU-401 UART */
66 #define ENVY24HT_CCSM_SCFG_ADC 0x0c /* 1-2 stereo ADC connected, S/PDIF receiver connected */
67 #define ENVY24HT_CCSM_SCFG_DAC 0x03 /* 1-4 stereo DAC connected */
69 #define ENVY24HT_CCS_ACL 0x05 /* AC-Link Configuration Register */
70 #define ENVY24HT_CCSM_ACL_MTC 0x80 /* Multi-track converter type: 0:AC'97 1:I2S */
[all …]
/freebsd/crypto/openssl/apps/lib/
H A Dhttp_server.c2 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
15 * value 2 is to make sure no function defined in POSIX-2 is left undefined.
43 int multi = 0; /* run multiple responder processes */ variable
66 if (multi) { in log_message()
95 for (i = 0; i < multi; ++i) in killall()
111 * Loop spawning up to `multi` child processes, only child processes return
129 kidpids = app_malloc(multi * sizeof(*kidpids), "child PID array"); in spawn_loop()
130 for (i = 0; i < multi; ++i) in spawn_loop()
143 while (termsig == 0 && procs >= multi) { in spawn_loop()
144 if ((fpid = waitpid(-1, &status, 0)) > 0) { in spawn_loop()
[all …]
/freebsd/lib/libpmc/pmu-events/arch/x86/cascadelakex/
H A Duncore-other.json10 …"BriefDescription": "LLC misses - Uncacheable reads (from cpu) . Derived from unc_cha_tor_inserts.…
20 "BriefDescription": "LLC misses - Uncacheable reads (from cpu) ",
70 …"BriefDescription": "Streaming stores (full cache line). Derived from unc_cha_tor_inserts.ia_miss",
81 "BriefDescription": "Streaming stores (full cache line)",
92 …"BriefDescription": "Streaming stores (partial cache line). Derived from unc_cha_tor_inserts.ia_mi…
103 "BriefDescription": "Streaming stores (partial cache line)",
164 "ScaleUnit": "7.11E-06Bytes",
174 "ScaleUnit": "7.11E-06Bytes",
355 "BriefDescription": "Multi-socket cacheline Directory state lookups; Snoop Not Needed",
360 …"PublicDescription": "Counts transactions that looked into the multi-socket cacheline Directory st…
[all …]
/freebsd/crypto/krb5/src/util/
H A Dcstyle-file.py26 # Line is too long
35 # Line broken before binary operator
39 # Lack of braces around 2+ line flow control body
40 # Incorrect indentation as determined by emacs c-mode (if possible)
44 # Anything outside of a function body except line length/whitespace
45 # Anything non-syntactic (proper cleanup flow control, naming, etc.)
46 # UTF-8 violations
48 # Inner-scope variable declarations
49 # Over- or under-parenthesization
67 if 'c-basic-offset: 4; indent-tabs-mode: nil' not in lines[0]:
[all …]
/freebsd/share/man/man4/
H A Dhmt.41 .\" Copyright (c) 2014-2020 Vladimir Kondratyev <wulf@FreeBSD.org>
30 .Nd MS Windows 7/8/10 - compatible HID multi-touch device driver
34 .Bd -ragged -offset indent
43 module at boot time, place the following line in
45 .Bd -literal -offset indent
51 driver provides support for the MS Windows 7/8/10 - compatible HID
52 multi-touch devices found in many laptops.
54 To get multi-touch device working in
55 .Xr X 7 Pq Pa ports/x11/xorg-docs ,
57 .Pa ports/x11-drivers/xf86-input-evdev .
[all …]
H A Dwmt.41 .\" Copyright (c) 2014-2017 Vladimir Kondratyev <wulf@FreeBSD.org>
30 .Nd MS Windows 7/8/10 - compatible USB HID multi-touch device driver
34 .Bd -ragged -offset indent
42 module at boot time, place the following line in
44 .Bd -literal -offset indent
50 driver provides support for the MS Windows 7/8/10 - compatible USB HID
51 multi-touch devices found in many laptops.
53 To get multi-touch device working in
54 .Xr X 7 Pq Pa ports/x11/xorg-docs ,
56 .Pa ports/x11-drivers/xf86-input-evdev .
[all …]
/freebsd/sys/dev/qlnx/qlnxe/
H A Dreg_addr.h2 * Copyright (c) 2017-2018 Cavium, Inc.
32 … 0x001d00UL //Access:R DataWidth:0x2 // Multi Field Register.
37 … 0x001d04UL //Access:RW DataWidth:0x2 // Multi Field Register.
42 … 0x001d08UL //Access:WR DataWidth:0x2 // Multi Field Register.
47 … 0x001d0cUL //Access:RC DataWidth:0x2 // Multi Field Register.
53 … 0x001d14UL //Access:RW DataWidth:0x8 // DBMUX register for selecting a line to output
54 …abling dword (128bit line) / qword (256bit line) in the selected line (b…
55 …egister. Circular dword (128bit line) / qword (256bit line) right shifti…
56 …ster. Bit mask for forcing the valid signal per dword (128bit line) / qword (256bit line) …
57 …ister. bit mask for forcing the frame signal per dword (128bit line) / qword (256bit line) …
[all …]
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-facebook-greatlakes.dts1 // SPDX-License-Identifier: GPL-2.0-or-later
4 /dts-v1/;
5 #include "aspeed-g6.dtsi"
6 #include <dt-bindings/gpio/aspeed-gpio.h>
7 #include <dt-bindings/leds/leds-pca955x.h>
8 #include <dt-bindings/i2c/i2c.h>
12 compatible = "facebook,greatlakes-bmc", "aspeed,ast2600";
23 iio-hwmon {
24 compatible = "iio-hwmon";
25 io-channels = <&adc0 0>, <&adc0 1>, <&adc0 2>, <&adc0 3>,
[all …]
/freebsd/contrib/kyua/utils/cmdline/
H A Dparser_test.cpp48 #include <atf-c++.hpp>
87 /// Checks that the user-provided option is valid.
96 throw cmdline::option_argument_value_error(F("--%s") % long_name(), in validate()
100 /// Converts the user-provided argument to our native integer type.
142 ATF_REQUIRE(oldout != -1); in mock_stdfds()
144 ATF_REQUIRE(olderr != -1); in mock_stdfds()
147 ATF_REQUIRE(fd != -1); in mock_stdfds()
148 ATF_REQUIRE(::dup2(fd, STDOUT_FILENO) != -1); in mock_stdfds()
149 ATF_REQUIRE(::dup2(fd, STDERR_FILENO) != -1); in mock_stdfds()
163 ATF_REQUIRE(::dup2(oldfds.first, STDOUT_FILENO) != -1); in restore_stdfds()
[all …]

12345678910>>...32