Home
last modified time | relevance | path

Searched +full:start +full:- +full:up (Results 1 – 25 of 1145) sorted by relevance

12345678910>>...46

/freebsd-src/crypto/openssl/util/
H A Dlang-compress.pl5 # - merges continuation lines
6 # - removes comments (not in strings)
7 # - removes empty lines (not in strings)
27 " # String start
35 ' # Character start (multi-chars supported)
43 (?| # All things preserved end up in $1
45 /\* # C comment start
46 .*? # Contents up until
66 (?| # All things preserved end up in $1
81 (?| # All things preserved end up in $1
[all …]
/freebsd-src/contrib/tcsh/nls/C/
H A Dset1110 8 -b file batch mode, read and execute commands from `file' \n\
11 -c command run `command' from next argument \n\
12 -d load directory stack from `~/.cshdirs' \n\
13 -Dname[=value] define environment variable `name' to `value' (DomainOS only) \n\
14 -e exit on any error \n\
15 -f start faster by ignoring the start-up file \n\
16 -F use fork() instead of vfork() when spawning (ConvexOS only) \n\
17 -i interactive, even when input is not from a terminal \n\
18 -l act as a login shell, must be the only option specified \n\
19 -m load the start-up file, whether or not owned by effective user \n\
[all …]
/freebsd-src/usr.bin/lex/
H A Dlex.14 flex, lex \- fast lexical analyzer generator
7 .B [\-bcdfhilnpstvwBFILTV78+? \-C[aefFmr] \-ooutput \-Pprefix \-Sskeleton]
8 .B [\-\-help \-\-version]
13 a tool for generating programs that perform pattern-matching on text.
37 Start Conditions
39 managing "mini-scanners"
45 End-of-file Rules
58 flex command-line options, and the "%option"
107 .B \-ll
178 /* scanner for a toy Pascal-like language */
[all …]
/freebsd-src/contrib/ntp/scripts/
H A Dsummary.html1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
3 <!-- Created by GNU Texinfo 6.6, http://www.gnu.org/software/texinfo/ -->
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10 <meta name="resource-type" content="document">
13 <link href="#Top" rel="start" title="Top">
14 <link href="dir.html#Top" rel="up" title="(dir)">
16 <!--
17 a.summary-letter {text-decoration: none}
18 blockquote.indentedblock {margin-right: 0em}
19 div.display {margin-left: 3.2em}
[all …]
/freebsd-src/contrib/ntp/html/hints/
H A Dsvr4_package2 Message-ID: <513.797686923@concurrent.co.uk>
8 changed is Makefile - I've included the full file rather than diffs.
11 xntp shell script that starts up ntp during boot up
13 up at run level 2). As with all svr4 start/stop
15 start or stop. It assumes that ntp.conf is in
24 ensures that ntp is down if it is up before
26 postinstall starts up ntp after package installation.
31 "pkgadd -d `pwd`/xntp.pkg xntp". This will start up ntp if
/freebsd-src/tests/sys/netpfil/pf/
H A Dsctp.sh2 # SPDX-License-Identifier: BSD-2-Clause-FreeBSD
32 if ! kldstat -q -m sctp; then
54 jexec ${j}a ifconfig ${epair}a 192.0.2.1/24 up
55 jexec ${j}b ifconfig ${epair}b 192.0.2.2/24 up
57 atf_check -
[all...]
/freebsd-src/stand/i386/boot2/
H A Dboot1.S21 .set MEM_BTX,0x9000 # BTX start
23 .set MEM_USR,0xa000 # Client start
39 .globl start symbol
43 start: jmp main # Start recognizably label
46 * This is the start of a standard BIOS Parameter Block (BPB). Most bootable
47 * FAT disks have this at the start of their MBR. While normal BIOS's will
48 * work fine without this section, IBM's El Torito emulation "fixes" up the
84 * %cx:%ax - long - LBA to read in
85 * %es:(%bx) - caddr_t - buffer to read data into
86 * %dl - byte - drive to read from
[all …]
/freebsd-src/crypto/openssh/contrib/hpux/
H A Dsshd.rc4 # sshd.rc: SSH daemon start-up and shutdown script
8 # 0 = success; causes "OK" to show up in checklist.
9 # 1 = failure; causes "FAIL" to show up in checklist.
10 # 2 = skip; causes "N/A" to show up in the checklist.
38 # Check the exit value of a command run by this script. If non-zero, the
44 if [ $x -ne 0 ]; then
59 'start')
60 if [ -f $WHAT_CONFIG ] ; then
66 if [ "$SSHD_START" -eq 1 -a -x "$WHAT_PATH" ]; then
85 echo "usage: $0 {start|stop|start_msg|stop_msg}"
H A Degd.rc4 # egd.rc: EGD start-up and shutdown script
8 # 0 = success; causes "OK" to show up in checklist.
9 # 1 = failure; causes "FAIL" to show up in checklist.
10 # 2 = skip; causes "N/A" to show up in the checklist.
40 # Check the exit value of a command run by this script. If non-zero, the
46 if [ $x -ne 0 ]; then
61 'start')
62 if [ -f $WHAT_CONFIG ] ; then
69 if [ "$EGD_START" -eq 1 -a -x $WHAT_PATH ]; then
70 EGD_LOG=${EGD_LOG:-$WHAT_LOG}
[all …]
/freebsd-src/contrib/libdiff/lib/
H A Ddiff_output_plain.c41 left_len = cc->left.end - cc->left.start; in output_plain_chunk()
44 else if (result->left->atoms.len == 0) in output_plain_chunk()
46 else if (left_len == 0 && cc->left.start > 0) in output_plain_chunk()
47 left_start = cc->left.start; in output_plain_chunk()
48 else if (cc->left.end > 0) in output_plain_chunk()
49 left_start = cc->left.start + 1; in output_plain_chunk()
51 left_start = cc->left.start; in output_plain_chunk()
53 right_len = cc->right.end - cc->right.start; in output_plain_chunk()
56 else if (result->right->atoms.len == 0) in output_plain_chunk()
58 else if (right_len == 0 && cc->right.start > 0) in output_plain_chunk()
[all …]
/freebsd-src/sys/geom/vinum/
H A Dgeom_vinum_init.c
/freebsd-src/stand/i386/zfsboot/
H A Dzfsldr.S20 .set MEM_BTX,0x9000 # BTX start
22 .set MEM_USR,0xa000 # Client start
38 .globl start symbol
42 * Load the rest of zfsboot2 and BTX up, copy the parts to the right locations,
43 * and start it all up.
48 * stack to end just below the start of our code.
50 start: cld # String ops inc label
54 mov %cx,%ss # Set up
55 mov $start,%sp # stack
60 * second pass looks for the first non-active FreeBSD slice if the
[all …]
/freebsd-src/usr.bin/indent/
H A Dindent_globs.h1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
54 int nsize = l_code-s_code + 400 + desired_size; \
55 int code_len = e_code-s_code; \
60 l_code = codebuf + nsize - 5; \
65 int nsize = l_com-s_com + 400 + desired_size; \
66 int com_len = e_com - s_com; \
69 blank_pos = last_bl - combuf; \
71 blank_pos = -1; \
78 l_com = combuf + nsize - 5; \
[all …]
H A Dindent.138 .Op Ar input-file Op Ar output-file
49 .Bk -words
59 .Bk -words
63 .Bk -words
81 .Bk -words
91 .Op Fl -version
101 .Ar input-file
110 .Ar input-file ,
112 done `in-place', that is, the formatted file is written back into
113 .Ar input-file
[all …]
/freebsd-src/contrib/opencsd/decoder/include/mem_acc/
H A Dtrc_mem_acc_file.h46 // an add-on region to a file - allows setting of a region at a none-zero offset for a file.
56 …bool operator<(const FileRegionMemAccessor& rhs) { return this->m_startAddress < rhs.m_startAddres…
58 // not going to use these objects to read bytes - defer to the file class for that.
79 /** read bytes override - reads from file */
90 void DecRefCount() { m_ref_count--; }; in DecRefCount()
96 * Initialise accessor with file name and path, and start address.
100 * @param startAddr : system memory address associated with start of binary datain file.
102 * @return bool : true if set up successfully, false if file could not be opened.
118 * File may contain multiple none-overlapping ranges in a single file.
138 * test if an address is the start of range for this accessor
[all …]
H A Dtrc_mem_acc_base.h47 * e.g. a 1k range from 0x1000 has start of 0x1000 and end of 0x13FF
61 MEMACC_CB_IF, //<! callback interface accessor - use for live memory access
76 * @param startAddr : start address of the range.
92 * test if an address is the start of range for this accessor
96 * @return const bool : true if the address is start of range.
101 * Test number of bytes available from the start address, up to the number of requested bytes.
102 * Tests if all the requested bytes are available from the supplied start address.
103 * Returns the number available up to full requested amount.
105 * @param s_address : Start address within the range.
106 * @param reqBytes : Number of bytes needed from the start address.
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DMemoryTagManagerAArch64MTE.cpp1 //===-- MemoryTagManagerAArch64MTE.cpp --------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
35 return RemoveTagBits(addr1) - RemoveTagBits(addr2); in AddressDiff()
56 // Align start down to granule start in ExpandToGranule()
59 new_start -= align_down_amount; in ExpandToGranule()
61 // Account for the distance we moved the start above in ExpandToGranule()
63 // Then align up to the end of the granule in ExpandToGranule()
64 size_t align_up_amount = granule - (new_len % granule); in ExpandToGranule()
76 ") must be greater than the start address (0x%" PRIx64 ")", in MakeInvalidRangeErr()
[all …]
/freebsd-src/share/doc/psd/15.yacc/
H A Dss11 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
74 that they may not appear in names or multi-character reserved symbols.
78 The rules section is made up of one or more grammar rules.
86 Names may be of arbitrary length, and may be made up of letters, dot ``.'', underscore ``\_'', and
87 non-initial digits.
106 \s-2NUL\s0
145 .I "start symbol" ,
147 The parser is designed to recognize the start symbol; thus,
151 the start symbol is taken to be the left hand side of the first
153 It is possible, and in fact desirable, to declare the start
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dti-tsc-adc.txt1 * TI - TSC ADC (Touschscreen and analog digital converter)
5 - mfd
7 "ti,am3359-tscadc" for AM335x/AM437x SoCs
8 "ti,am654-tscadc", "ti,am3359-tscadc" for AM654 SoCs
9 - child "tsc"
10 compatible: Should be "ti,am3359-tsc".
13 ti,x-plate-resistance: X plate resistance
14 ti,coordinate-readouts: The sequencer supports a total of 16
23 ti,wire-config: Different boards could have a different order for
32 - child "adc"
[all …]
/freebsd-src/sys/arm/broadcom/bcm2835/
H A Dbcm2835_bsc.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
34 * Driver for bcm2835 i2c-compatible two-wire bus, named 'BSC' on this SoC.
37 * low-level control over sending start/repeat-star
[all...]
/freebsd-src/contrib/ntp/ntpd/
H A Drefclock_hopfpci.c4 * - clock driver for hopf 6039 PCI board (GPS or DCF77)
11 * the PCI-board driver for your system first.
17 * the kernel module for the PCI-bus board. The driver sources
18 * belongs to the delivery equipment of the PCI-board.
24 * Device Driver for the PCI-bus board. The driver belongs to the
25 * delivery equipment of the PCI-board.
28 * Start 21.03.2000 Revision: 01.20
63 #define PRECISION (-10) /* precision assumed (1 ms) */
103 hopfpci_start, /* start up driver */
113 * hopfpci_start - attach to hopf PCI board 6039
[all …]
/freebsd-src/contrib/sendmail/contrib/
H A Detrn.05 etrn - start mail queue run
8 etrn [-v] server-host [client-hosts]
12 interact, giving the server an opportunity to start the pro�
14 This is meant to be used in start-up conditions, as well as
19 server-host and sends one or more ETRN commands as follows:
20 If no client-hosts are specified, etrn looks up every host
23 If any client-hosts are specified, etrn uses each of these
29 -v The normal mode of operation for etrn is to do all of
30 its work silently. The -v option makes it verbose,
/freebsd-src/sbin/gvinum/
H A Dgvinum.8
/freebsd-src/sys/dev/pci/
H A Dhostb_pci.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
37 * Provide a device to "eat" the host->pci bridge devices that show up
38 * on PCI buses and stop them showing up twice on the probes. This also
39 * stops them showing up as 'none' in pciconf -
102 pci_hostb_alloc_resource(device_t dev,device_t child,int type,int * rid,rman_res_t start,rman_res_t end,rman_res_t count,u_int flags) pci_hostb_alloc_resource() argument
205 pci_hostb_find_next_cap(device_t dev,device_t child,int capability,int start,int * capreg) pci_hostb_find_next_cap() argument
221 pci_hostb_find_next_extcap(device_t dev,device_t child,int capability,int start,int * capreg) pci_hostb_find_next_extcap() argument
237 pci_hostb_find_next_htcap(device_t dev,device_t child,int capability,int start,int * capreg) pci_hostb_find_next_htcap() argument
[all...]
/freebsd-src/stand/i386/btx/btxldr/
H A Dbtxldr.S18 #define RBX_MUTE 0x10 /* -m */
33 .set MEM_DATA,start+0x1000 # Data segment
65 .globl start symbol
69 start: cld # String ops inc label
94 start.1: movl (%ebx),%eax # Get argument and
97 loop start.1 # Till done
132 * Set up BTX kernel.
134 movl $MEM_ESP,%esp # Set up new stack
155 orl $PAG_SIZ/PAG_ENT-1,%edi # the
186 * Set up ELF-format client program.
[all …]

12345678910>>...46