Home
last modified time | relevance | path

Searched +full:three +full:- +full:state (Results 1 – 25 of 971) sorted by relevance

12345678910>>...39

/freebsd/sys/contrib/device-tree/Bindings/mux/
H A Dadi,adg792a.txt4 - compatible : "adi,adg792a" or "adi,adg792g"
5 - #mux-control-cells : <0> if parallel (the three muxes are bound together
6 with a single mux controller controlling all three muxes), or <1> if
8 * Standard mux-controller bindings as described in mux-controller.yaml
11 - gpio-controller : if present, #gpio-cells below is required.
12 - #gpio-cells : should be <2>
13 - First cell is the GPO line number, i.e. 0 or 1
14 - Second cell is used to specify active high (0)
18 - idle-state : if present, array of states that the mux controllers will have
19 when idle. The special state MUX_IDLE_AS_IS is the default and
[all …]
/freebsd/share/man/man4/
H A Ddtrace_tcp.434 .Fn tcp:::accept-established "pktinfo_t *" "csinfo_t *" "ipinfo_t *" \
36 .Fn tcp:::accept-refused "pktinfo_t *" "csinfo_t *" "ipinfo_t *" \
38 .Fn tcp:::connect-established "pktinfo_t *" "csinfo_t *" "ipinfo_t *" \
40 .Fn tcp:::connect-refused "pktinfo_t *" "csinfo_t *" "ipinfo_t *" \
42 .Fn tcp:::connect-request "pktinfo_t *" "csinfo_t *" "ipinfo_t *" \
48 .Fn tcp:::state-change "void *" "csinfo_t *" "void *" "tcpsinfo_t *" "void *" \
66 .Fn tcp:::state-change
70 The last three arguments are used to describe a TCP segment: the
72 argument exposes the version-agnostic fields of the IP header, while the
76 argument describes details of the corresponding TCP connection state, if any.
[all …]
H A Dpfsync.44 .\" Copyright (c) 2003-2004 Ryan McBride
32 .Nd packet filter state table synchronisation interface
38 interface is a pseudo-device which exposes certain changes to the state
41 State changes can be viewed by invoking
48 will also send state changes out on that interface,
49 and insert state changes received on that interface from other systems
50 into the state table.
52 By default, all local changes to the state table are exposed via
54 State changes from packets received by
58 .Ar no-sync
[all …]
H A Dpsm.43 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
60 Basic PS/2 style pointing device has two or three buttons.
83 and button state reports to the host system is also configurable.
87 Note that when there is no movement and no button has changed its state,
93 driver has three levels of operation.
98 and state of up to three buttons.
99 The movement and status are encoded in a series of fixed-length data packets
126 is three bytes long at the operation level zero:
128 .Bl -tag -width Byte_1 -compact
130 .Bl -tag -width bit_7 -compact
[all …]
H A Dng_hci.41 .\" Copyright (c) 2001-2002 Maksim Yevmenkin <m_evmenkin@yahoo.com>
44 Bluetooth is a short-range radio link intended to replace the cable(s)
50 asynchronous data channel, up to three simultaneous synchronous voice
59 The Bluetooth system provides a point-to-point connection (only two
60 Bluetooth units involved), or a point-to-multipoint connection.
61 In the point-to-multipoint connection,
68 In addition, many more slaves can remain locked to the master in a so-called
69 parked state.
79 in different piconets on a time-division multiplex basis.
81 The piconets shall not be frequency-synchronized.
[all …]
H A Dmouse.43 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
41 provide user programs with movement and button state information of the mouse.
54 Movement and button states are usually encoded in fixed-length data packets.
58 The mouse drivers may have ``non-blocking'' attribute which will make
68 and state of up to three buttons at this level.
74 .Bl -tag -width Byte_1 -compact
76 .Bl -tag -width bit_7 -compact
92 -128 through 127.
95 -128 through 127.
98 -128 through 127.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/phy/
H A Dphy-mapphone-mdm6600.txt4 - compatible Must be "motorola,mapphone-mdm6600"
5 - enable-gpios GPIO to enable the USB PHY
6 - power-gpios GPIO to power on the device
7 - reset-gpios GPIO to reset the device
8 - motorola,mode-gpios Two GPIOs to configure MDM6600 USB start-up mode for
10 - motorola,cmd-gpios Three GPIOs to control the power state of the MDM6600
11 - motorola,status-gpios Three GPIOs to read the power state of the MDM6600
15 usb-phy {
16 compatible = "motorola,mapphone-mdm6600";
17 enable-gpios = <&gpio3 31 GPIO_ACTIVE_LOW>;
[all …]
/freebsd/share/doc/psd/15.yacc/
H A Dss71 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
54 The parser pops its stack until it enters a state where the token ``error'' is legal.
61 detecting an error, remains in error state until three tokens have been successfully
63 If an error is detected when the parser is already in error state,
73 scan ahead, looking for three tokens that might legally follow
101 the parser must correctly process three input tokens before it
144 the old, illegal token must be discarded, and the error state reset.
H A Dss41 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
52 of a finite state machine with a stack.
58 .I "current state"
60 The states of the finite state machine are given
61 small integer labels; initially, the machine is in state 0,
62 the stack contains only state 0, and no lookahead token has been read.
72 Based on its current state, the parser decides
79 Using the current state, and the lookahead token
91 For example, in state 56 there may be
96 which says, in state 56, if the lookahead token is IF,
[all …]
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_lzma2.h5 * Igor Pavlov <https://7-zip.org/>
23 * Maximum number of position states. A position state is the lowest pb
34 * - Literal: One 8-bit byte
35 * - Match: Repeat a chunk of data at some distance
36 * - Long repeat: Multi-byte match at a recently seen distance
37 * - Short repeat: One-byte repeat at a recently seen distance
40 * either short or long repeated match, and NONLIT means any non-literal.
60 /* The lowest 7 states indicate that the previous state was a literal. */
64 static inline void lzma_state_literal(enum lzma_state *state) in lzma_state_literal() argument
66 if (*state <= STATE_SHORTREP_LIT_LIT) in lzma_state_literal()
[all …]
/freebsd/secure/lib/libcrypto/man/man7/
H A Dlife_cycle-cipher.718 .\" Set up some character translations and predefined strings. \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
71 .\" Fear. Run. Save yourself. No user-serviceable parts.
81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
[all …]
/freebsd/sys/contrib/zlib/
H A Dinffast.c1 /* inffast.c -- fast decoding
2 * Copyright (C) 1995-2017 Mark Adler
12 # pragma message("Assembler code may have bugs -- use at your own risk")
18 available, an end-of-block is encountered, or a data error is encountered.
25 state->mode == LEN
26 strm->avail_in >= 6
27 strm->avail_out >= 258
28 start >= strm->avail_out
29 state->bits < 8
31 On return, state->mode is one of:
[all …]
/freebsd/sbin/ipf/ipf/
H A Dipf.43 ipf \- packet filtering kernel interface
9 To add and delete rules to the filter list, three 'basic' ioctls are provided
48 The three groups of ioctls above perform adding rules to the end of the
59 int fr_ref; /* reference count - for grouping */
88 u_32_t fr_flags; /* per-rule flags && options (see below) */
115 FR_LOGB 0x000011 /* Log-fail */
116 FR_LOGP 0x000012 /* Log-pass */
125 FR_KEEPSTATE 0x001000 /* keep `connection' state information */
158 \fB/dev/ipstate\fP and will flush all state tables entries if passed 0
195 int f_active; /* 1 or 0 - active rule set */
[all …]
/freebsd/sys/net/
H A Dslcompress.h4 /*-
5 * SPDX-License-Identifier: BSD-3-Clause
35 * - Initial distribution.
55 * the receiver implicitly knows what changed -- see below).
64 * range 1 - 255 and 3 octets (0, MSB, LSB) for numbers in the
65 * range 256 - 65535 or 0. (If the change in sequence number or
73 * three possible types: IP (not proto TCP or tcp with one of the
75 * with the 8-bit protocol field replaced by an 8-bit connection id --
79 * LSB of 4-bit field is TCP "PUSH" bit (a worthless anachronism) and
80 * is logically part of the 4-bit "changes" field that follows. Top
[all …]
/freebsd/usr.sbin/ppp/
H A Dslcompress.h1 /*-
4 * SPDX-License-Identifier: BSD-3-Clause
34 * - Initial distribution.
53 * the receiver implicitly knows what changed -- see below).
62 * range 1 - 255 and 3 octets (0, MSB, LSB) for numbers in the
63 * range 256 - 65535 or 0. (If the change in sequence number or
71 * three possible types: IP (not proto TCP or tcp with one of the
73 * with the 8-bit protocol field replaced by an 8-bit connection id --
77 * LSB of 4-bit field is TCP "PUSH" bit (a worthless anachronism) and
78 * is logically part of the 4-bit "changes" field that follows. Top
[all …]
/freebsd/share/doc/smm/03.fsck/
H A D3.t42 physically write-protecting a mounted file system,
43 or a mounted file system is taken off-line.
58 on a disk pack, or as blatant as a non-functional disk-controller.
64 is run non-interactively.
91 be in a quiescent state when
96 is a multi-pass program.
104 Super-block checking
108 associated with the super-block.
115 The super-block is checked for inconsistencies
116 involving file-system size, number of inodes,
[all …]
/freebsd/share/doc/smm/06.nfs/
H A D2.t38 This section borrows heavily from work done on Spritely-NFS [Srinivasan89],
39 but uses Leases [Gray89] to avoid the need to recover server state information
47 but is based on short term leases\** instead of hard state information
60 There are three types of leases: read caching, write caching and non-caching.
98 correspond to a Sprite server\(->client callback, but are not implemented as an
116 clock synchronization. There are three important time constants known to
152 The server must maintain the state of all the current leases held by clients.
155 As such, server crash recovery does not require any state recovery. After
164 state of and the clients have had at least write_slack seconds to push dirty
190 server as soon as the network connection has been re-established.
[all …]
/freebsd/contrib/ldns/compat/
H A Db64_pton.c51 /* (From RFC1521 and draft-ietf-dnssec-secext-03.txt)
56 A 65-character subset of US-ASCII is used, enabling 6 bits to be
60 The encoding process represents 24-bit groups of input bits as output
62 24-bit input group is formed by concatenating 3 8-bit input groups.
63 These 24 bits are then treated as 4 concatenated 6-bit groups, each
66 Each 6-bit group is used as an index into an array of 64 printable
95 right) to form an integral number of 6-bit groups. Padding at the
99 -------------------------------------------------
110 here, the final unit of encoded output will be three
116 src from base - 64 numbers into three 8 bit bytes in the target area.
[all …]
/freebsd/crypto/openssl/test/
H A Ddrbgtest.c2 * Copyright 2011-2022 The OpenSSL Project Authors. All Rights Reserved.
54 if (meth->bytes != NULL) in gen_bytes()
55 return meth->bytes(buf, num); in gen_bytes()
56 return -1; in gen_bytes()
82 static int state(EVP_RAND_CTX *drbg) in state() function
107 return (PROV_DRBG *)drbg->algctx; in DRBG_UINT()
114 p->reseed_counter = n; in set_reseed_counter()
167 * and checks whether the three shared DRBGs were reseeded as
171 * |primary|, |public|, |private|: pointers to the three shared DRBGs
176 * -1: don't check whether the specified DRBG was reseeded or not
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Darc_impl.h1 // SPDX-License-Identifier: CDDL-1.0
10 * or https://opensource.org/licenses/CDDL-1.0.
46 * ARC_anon - anonymous (discussed below)
47 * ARC_mru - recently used, currently cached
48 * ARC_mru_ghost - recently used, no longer in cache
49 * ARC_mfu - frequently used, currently cached
50 * ARC_mfu_ghost - frequently used, no longer in cache
51 * ARC_uncached - uncacheable prefetch, to be evicted
52 * ARC_l2c_only - exists in L2ARC but not other states
56 * state there are multiple lists, one for meta-data and one for
[all …]
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dadt7475.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Jean Delvare <jdelvare@suse.com>
17 control up to three). They support reading a single on chip temperature
19 supports measuring up to three current external temperature sensors with
23 https://www.onsemi.com/pub/Collateral/ADT7473-D.PDF
24 https://www.onsemi.com/pub/Collateral/ADT7475-D.PDF
25 https://www.onsemi.com/pub/Collateral/ADT7476-D.PDF
26 https://www.onsemi.com/pub/Collateral/ADT7490-D.PDF
[all …]
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-pm8058.txt3 The Qualcomm PM8058 is a multi-functional device which contains
4 an LED driver block for up to six LEDs: three normal LEDs, two
8 are more of a suggestion than a hard-wired usecase.
10 Hardware-wise the different LEDs support slightly different
17 mfd/qcom-pm8xxx.txt.
19 Each LED is represented as a sub-node of the syscon device. Each
22 LED sub-node properties:
25 - compatible: one of
26 "qcom,pm8058-led" (for the normal LEDs at 0x131, 0x132 and 0x133)
27 "qcom,pm8058-keypad-led" (for the "keypad" LED at 0x48)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smsm.txt1 Qualcomm Shared Memory State Machine
3 The Shared Memory State Machine facilitates broadcasting of single bit state
5 assigned 32 bits of state that can be modified. A processor can through a
9 - compatible:
15 - qcom,ipc-N:
17 Value type: <prop-encoded-array>
18 Definition: three entries specifying the outgoing ipc bit used for
20 - phandle to a syscon node representing the apcs registers
21 - u32 representing offset to the register within the syscon
22 - u32 representing the ipc bit within the register
[all …]
H A Dqcom,aoss-qmp.txt1 Qualcomm Always-On Subsystem side channel binding
4 requests to the always-on subsystem (AOSS), used for certain power management
11 a set of debug related clocks and to affect the low power state of resources
13 power-domains.
15 - compatible:
19 "qcom,sc7180-aoss-qmp"
20 "qcom,sc7280-aoss-qmp"
21 "qcom,sdm845-aoss-qmp"
22 "qcom,sm8150-aoss-qmp"
23 "qcom,sm8250-aoss-qmp"
[all …]
/freebsd/tests/sys/cddl/zfs/tests/history/
H A Dhistory_001_pos.ksh1 #!/usr/local/bin/ksh93 -p
41 # 1. Create three virtual disk files.
42 # 2. Create a three-way mirror.
43 # 3. Invoke every sub-commands to this mirror, except upgrade.
51 # CODING_STATUS: COMPLETED (2006-07-05)
64 [[ -d $import_dir ]] && $RM -rf $import_dir
68 [[ -f $file ]] && $RM -f $file
72 log_assert "Verify zpool sub-commands which modify state are logged."
83 exec_record $ZPOOL add -f $MPOOL spare $VDEV3
89 exec_record $ZPOOL replace -f $MPOOL $VDEV1 $VDEV4
[all …]

12345678910>>...39