Home
last modified time | relevance | path

Searched +full:buffered +full:- +full:negative (Results 1 – 25 of 112) sorted by relevance

12345

/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad7124.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Stefan Popa <stefan.popa@analog.com>
16 https://www.analog.com/media/en/technical-documentation/data-sheets/AD7124-8.pdf
21 - adi,ad7124-4
22 - adi,ad7124-8
32 clock-names:
34 - const: mclk
40 '#address-cells':
[all …]
H A Dadi,ad4130.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Cosmin Tanislav <cosmin.tanislav@analog.com>
15 https://www.analog.com/media/en/technical-documentation/data-sheets/AD4130-8.pdf
20 - adi,ad4130
29 clock-names:
31 - const: mclk
36 interrupt-names:
42 - int
[all …]
H A Dadi,max11410.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Ibrahim Tilki <Ibrahim.Tilki@analog.com>
21 - adi,max11410
30 interrupt-names:
34 - enum: [gpio0, gpio1]
35 - const: gpio1
37 '#address-cells':
40 '#size-cells':
[all …]
H A Dadi,ad7192.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
11 - Michael Hennerich <michael.hennerich@analog.com>
16 https://www.analog.com/media/en/technical-documentation/data-sheets/AD7192.pdf
21 - adi,ad7190
22 - adi,ad7192
23 - adi,ad7193
24 - adi,ad7194
25 - adi,ad7195
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DBIO_f_buffer.pod11 - buffering BIO
29 Data written to a buffering BIO is buffered and periodically written
34 Calling BIO_reset() on a buffering BIO clears any buffered data.
36 BIO_get_buffer_num_lines() returns the number of lines currently buffered.
41 buffer size below DEFAULT_BUFFER_SIZE is ignored. Any buffered data is cleared
77 BIO_get_buffer_num_lines() returns the number of lines buffered (may be 0) or
78 a negative value in case of errors.
96 Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
H A DEVP_EncodeInit.pod8 EVP_DecodeBlock - EVP base64 encode/decode routines
32 The EVP encode routines provide a high-level interface to base64 encoding and
35 the characters A-Z, a-z, 0-9, "+" and "/" to represent the data. For every 3
106 Residual input shorter than the internal chunk size will be buffered in B<ctx>
110 not buffered.
113 For compatibility with B<PEM>, the B<-> (hyphen) character is treated as a soft
114 end-of-input, subsequent bytes are not buffered, and the return value will be
116 The soft end-of-input, if present, MUST occur after a multiple of 4 valid base64
118 The soft end-of-input condition is not remembered in B<ctx>, it is up to the
119 caller to avoid further calls to EVP_DecodeUpdate() after a 0 or negative
[all …]
H A DBIO_ctrl.pod10 - BIO control operations
65 BIO_flush() normally writes out any internally buffered data, in some
84 BIO_get_ktls_send() returns 1 if the BIO is using the Kernel TLS data-path for
86 BIO_get_ktls_recv() returns 1 if the BIO is using the Kernel TLS data-path for
99 BIOs are an exception, they return 0 for success and -1 for failure.
102 and -1 for failure, except file BIOs which for BIO_seek() always return 0
103 for success and -1 for failure.
107 BIO_eof() returns 1 if EOF has been reached, 0 if not, or negative values for failure.
112 returns other negative values if an error occurs.
116 negative value or 0 on error. BIO_ctrl_pending() and BIO_ctrl_wpending() return
[all …]
/freebsd/contrib/sendmail/libsm/
H A Dwbuf.c2 * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers.
16 SM_RCSID("@(#)$Id: wbuf.c,v 1.22 2013-11-22 20:51:44 ca Exp $")
24 ** SM_WBUF -- write character to and flush (likely now full) buffer
28 ** or if c=='\n' and the file is line buffered.
31 ** fp -- the file pointer
32 ** timeout -- time to complete operation (milliseconds)
33 ** c -- int representation of the character to add
36 ** Failure: -1 and sets errno
50 ** make sure w is 0 (if fully- or un-buffered) or -bf.smb_size
51 ** (if line buffered) so that we will get called again.
[all …]
/freebsd/lib/libc/stdio/
H A Dwbuf.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
42 * or if c=='\n' and the file is line buffered.
44 * Non-MT-safe
53 * make sure _w is 0 (if fully- or un-buffered) or -_bf._size in __swbuf()
54 * (if line buffered) so that we will get called again. in __swbuf()
56 * calls might wrap _w from negative to positive. in __swbuf()
58 fp->_w = fp->_lbfsize; in __swbuf()
65 ORIENT(fp, -1); in __swbuf()
70 * completely, or if c is '\n' and the file is line buffered, in __swbuf()
[all …]
H A Dftell.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
40 #include "un-namespace.h"
55 return (-1); in ftell()
73 return (-1); in ftello()
76 return (-1); in ftello()
87 if (fp->_seek == NULL) { in _ftello()
94 * adjust for buffered bytes. in _ftello()
96 if (!(fp->_flags & __SRD) && (fp->_flags & __SWR) && in _ftello()
97 fp->_p != NULL && fp->_p - fp->_bf._base > 0 && in _ftello()
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DBIO_f_buffer.31 .\" -*- mode: troff; coding: utf-8 -*-
58 .TH BIO_F_BUFFER 3ossl 2025-09-30 3.5.4 OpenSSL
70 \&\- buffering BIO
88 Data written to a buffering BIO is buffered and periodically written
93 Calling \fBBIO_reset()\fR on a buffering BIO clears any buffered data.
95 \&\fBBIO_get_buffer_num_lines()\fR returns the number of lines currently buffered.
100 buffer size below DEFAULT_BUFFER_SIZE is ignored. Any buffered data is cleared
134 \&\fBBIO_get_buffer_num_lines()\fR returns the number of lines buffered (may be 0) or
135 a negative value in case of errors.
151 Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved.
H A DEVP_EncodeInit.31 .\" -*- mode: troff; coding: utf-8 -*-
58 .TH EVP_ENCODEINIT 3ossl 2025-09-30 3.5.4 OpenSSL
67 EVP_DecodeBlock \- EVP base64 encode/decode routines
91 The EVP encode routines provide a high-level interface to base64 encoding and
94 the characters A\-Z, a\-z, 0\-9, "+" and "/" to represent the data. For every 3
165 Residual input shorter than the internal chunk size will be buffered in \fBctx\fR
169 not buffered.
172 For compatibility with \fBPEM\fR, the \fB\-\fR (hyphen) character is treated as a soft
173 end-of-input, subsequent bytes are not buffered, and the return value will be
175 The soft end-of-input, if present, MUST occur after a multiple of 4 valid base64
[all …]
H A DBIO_ctrl.31 .\" -*- mode: troff; coding: utf-8 -*-
58 .TH BIO_CTRL 3ossl 2025-09-30 3.5.4 OpenSSL
69 \&\- BIO control operations
124 \&\fBBIO_flush()\fR normally writes out any internally buffered data, in some
143 \&\fBBIO_get_ktls_send()\fR returns 1 if the BIO is using the Kernel TLS data-path for
145 \&\fBBIO_get_ktls_recv()\fR returns 1 if the BIO is using the Kernel TLS data-path for
157 BIOs are an exception, they return 0 for success and \-1 for failure.
160 and \-1 for failure, except file BIOs which for \fBBIO_seek()\fR always return 0
161 for success and \-1 for failure.
165 \&\fBBIO_eof()\fR returns 1 if EOF has been reached, 0 if not, or negative values for failure.
[all …]
/freebsd/usr.bin/top/
H A Dtop.h1 /*-
2 * Top - a top users display for Berkeley Unix
13 /* Special atoi routine returns either a non-negative number or one of: */
14 #define Infinity -1
15 #define Invalid -2
50 * the output is buffered). So, if the short-term load average is above
/freebsd/contrib/libpcap/
H A Dpcap.3pcap.in22 pcap \- Packet Capture library
49 caller, as being in UTF-8.
51 On UNIX-like systems, the local character encoding is assumed to be
52 UTF-8, so no character encoding transformations are done.
62 does not attempt to handle UTF-16LE strings.
72 UTF-16LE string - note that this attempt is unsafe, as it may run past
73 the end of the string - to handle
75 returning a UTF-16LE string. Programs that don't call
147 contents of the packet - for example, if you are only interested in the
148 TCP headers of packets - you can set the "snapshot length" for the
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DResourceManager.h1 //===----------
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetSchedule.td1 //===- TargetSchedule.td - Target Independent Scheduling ---*- tablegen -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the target-independent scheduling interfaces which should
14 // 2. Scheduler Read/Write resources for simple per-opcode cost model.
21 // (2) A per-operand machine model can be implemented in any
24 // A. Associate per-operand SchedReadWrite types with Instructions by
31 // per-operand SchedReadWrite types. Unlike method A, these types may
45 // a machine-independent SchedReadWrite type to map to a sequence of
46 // machine-dependent types.
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSchedule.h1 //===-- llvm/MC/MCSchedule.h - Scheduling -------
[all...]
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_subr.c78 p = s + strlen(s) - 1; in dtrace_xstr2desc()
82 p--; /* move backward until we find a delimiter */ in dtrace_xstr2desc()
98 vlen = (size_t)(q + len - v); in dtrace_xstr2desc()
99 len = (size_t)(v - q); in dtrace_xstr2desc()
107 vlen--; in dtrace_xstr2desc()
117 wlen = vlen - (w - v); in dtrace_xstr2desc()
125 if (yypcb != NULL && yypcb->pcb_sargv == argv) in dtrace_xstr2desc()
126 yypcb->pcb_sflagv[i] |= DT_IDFLG_REF; in dtrace_xstr2desc()
132 (void) strncpy(vstr, v + 1, vlen - 1); in dtrace_xstr2desc()
133 vstr[vlen - 1] = '\0'; in dtrace_xstr2desc()
[all …]
/freebsd/share/man/man9/
H A Dieee80211_scan.9161 per-operating mode.
225 Devices that off-load scan work to firmware most easily mesh with
227 by operating on a channel-at-a-time basis as this defers control to
230 But multi-channel scanning
256 in a co-routine fashion.
262 frames buffered by an access point for the station.
292 The minimum dwell time is used to reduce this time--when it is reached
335 to Authentication/Association requests or if a negative response was
/freebsd/share/man/man4/
H A Dbpf.476 file is a user-settable packet filter.
97 .Ss Buffered read mode
117 .Ss Zero-copy buffer mode
123 Buffers are of fixed (and equal) size, page-aligned, and an even multiple of
125 The maximum zero-copy buffer size is returned by the
136 .Bd -literal
152 Each buffer begins with a fixed-length header to hold synchronization and
154 .Bd -literal
167 data, laid out in the same format as with buffered read mode.
192 In order to avoid caching and memory re-ordering effects, the user process
[all …]
/freebsd/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent.h2 * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
3 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
55 <dt>Socket-based bufferevents</dt>
69 <dt>SSL-backed bufferevents</dt>
83 #include <event2/event-config.h>
104 #define BEV_EVENT_TIMEOUT 0x40 /**< user-specified timeout reached */
109 An opaque type for handling buffered IO
133 @param ctx the user-specified context for this bufferevent
152 @param ctx the user-specified context for this bufferevent
182 It is safe to set the fd to -1, so long as you later
[all …]
/freebsd/contrib/libevent/include/event2/
H A Dbufferevent.h2 * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
3 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
55 <dt>Socket-based bufferevents</dt>
69 <dt>SSL-backed bufferevents</dt>
83 #include <event2/event-config.h>
104 #define BEV_EVENT_TIMEOUT 0x40 /**< user-specified timeout reached */
109 An opaque type for handling buffered IO
133 @param ctx the user-specified context for this bufferevent
152 @param ctx the user-specified context for this bufferevent
182 It is safe to set the fd to -1, so long as you later
[all …]
/freebsd/crypto/openssl/crypto/ml_dsa/
H A Dml_dsa_sample.c2 * Copyright 2024-2025 The OpenSSL Project Authors. All Rights Reserved.
23 * Note that 0xFFFF / 5 = 0x3333, 2 is added to make an over-estimate of 1/5
26 #define MOD5(n) ((n) - 5 * (0x3335 * (n) >> 16))
44 * @param out The returned coefficient in the range 0..q-1.
50 /* Zero out the top bit of the 3rd byte to get a value in the range 0..2^23-1) */ in coeff_from_three_bytes()
56 * @brief Generate a value in the range (q-4..0..4)
58 * Note the FIPS 204 code uses the range -4..4 (whereas this code adds q to the
59 * negative numbers).
62 * @param out The returned value if the range (q-4)..0..4 if nibble is < 9
79 * @brief Generate a value in the range (q-2..0..2)
[all …]
/freebsd/usr.bin/grep/
H A Dgrep.c4 /*-
5 * SPDX-License-Identifier: BSD-2-Clause
7 * Copyright (c) 1999 James Howard and Dag-Erling Smørgrav
8 * Copyright (C) 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>
57 /* 3*/ "usage: %s [-abcDEFGHhIiLlmnOopqRSsUVvwxz] [-A num] [-B num] [-C num]\n",
58 /* 4*/ "\t[-e pattern] [-f file] [--binary-files=value] [--color=when]\n",
59 /* 5*/ "\t[--context=num] [--directories=action] [--label] [--line-buffered]\n",
60 /* 6*/ "\t[--null] [pattern] [file ...]\n",
85 /* Command-line flags */
86 long long Aflag; /* -A x: print x lines trailing each match */
[all …]

12345