/freebsd/contrib/lua/doc/ |
H A D | manual.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 7 <META HTTP-EQUIV="content-type" CONTENT="text/html; charset=iso-8859-1"> 22 Copyright © 2020–2023 Lua.org, PUC-Rio. 35 <!-- ====================================================================== --> 38 <!-- $Id: manual.of $ --> 48 object-oriented programming, functional programming, 49 data-driven programming, and data description. 56 runs by interpreting bytecode with a register-based 73 and as a powerful but lightweight and efficient stand-alone language. 80 (Frequently, this host is the stand-alone <code>lua</code> program.) [all …]
|
/freebsd/sys/contrib/zstd/doc/ |
H A D | zstd_manual.html | 3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 18 <li><a href="#Chapter8">Streaming compression - HowTo</a></li> 19 <li><a href="#Chapter9">Streaming decompression - HowTo</a></li> 30 <li><a href="#Chapter20">Buffer-less and synchronous inner streaming functions</a></li> 31 <li><a href="#Chapter21">Buffer-less streaming compression (synchronous mode)</a></li> 32 <li><a href="#Chapter22">Buffer-less streaming decompression (synchronous mode)</a></li> 36 <a name="Chapter1"></a><h2>Introduction</h2><pre> 38 real-time compression scenarios at zlib-level and better compression ratios. 39 The zstd compression library provides in-memory compression and decompression 43 which is currently 22. Levels >= 20, labeled `--ultra`, should be used with [all …]
|
/freebsd/contrib/sendmail/libsm/ |
H A D | exc.html | 11 <br> $Id: exc.html,v 1.13 2006-06-20 17:18:16 ca Exp $ 24 exit the program. Instead, it reports the error back to its 52 <pre> 157 </pre> 168 capable of raising an exception, its name ends in "_x". 181 When a function is unable to complete its task because 188 <blockquote><pre> 190 if (fd == -1) 192 </pre></blockquote> 205 <blockquote><pre> [all …]
|
H A D | index.html | 9 <br> $Id: index.html,v 1.14 2001-02-13 21:21:25 gshapiro Exp $ 16 and the only sendmail header files it depends on are its own, 59 from using names beginning with <tt>__</tt> or <tt>_[A-Z]</tt>, 61 with <tt>_[a-z]</tt>. Such names are reserved for the compiler and 81 and when you are trying to track down exception-related bugs 88 <blockquote><pre> 93 </pre></blockquote> 98 Each parameter is written on its own line to avoid very long lines. 104 <blockquote><pre> 106 </pre></blockquote> [all …]
|
H A D | cdefs.html | 11 <br> $Id: cdefs.html,v 1.2 2000-12-07 17:33:09 dmoen Exp $ 17 defines portable interfaces to non-portable features 29 <blockquote><pre> 31 </pre></blockquote> 61 For pre-ANSI C compilers, <tt>const</tt>, <tt>signed</tt> 71 that does not return to its caller. 73 and can suppress some useless warnings produced by gcc -Wall. 76 <blockquote><pre> 78 </pre></blockquote> 88 <blockquote><pre> [all …]
|
H A D | assert.html | 11 <br> $Id: assert.html,v 1.6 2001-08-27 21:47:03 ca Exp $ 21 <pre> 49 cc -DSM_CHECK_ALL=0 -DSM_CHECK_REQUIRE=1 ... 50 </pre> 121 that it is required to satisfy by its contract with the caller. 134 <blockquote><pre> 136 </pre></blockquote> 162 -DSM_CHECK_ALL=0 -DSM_CHECK_REQUIRE=1 174 with its own local variables. 213 <blockquote><pre> [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
H A D | argon2.h | 45 ARGON2_MIN(UINT32_C(32), (sizeof(void *) * CHAR_BIT - 10 - 1)) 78 ARGON2_OUTPUT_PTR_NULL = -1, 80 ARGON2_OUTPUT_TOO_SHORT = -2, 81 ARGON2_OUTPUT_TOO_LONG = -3, 83 ARGON2_PWD_TOO_SHORT = -4, 84 ARGON2_PWD_TOO_LONG = -5, 86 ARGON2_SALT_TOO_SHORT = -6, 87 ARGON2_SALT_TOO_LONG = -7, 89 ARGON2_AD_TOO_SHORT = -8, 90 ARGON2_AD_TOO_LONG = -9, [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | richtek,rt5033-charger.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/power/supply/richtek,rt5033-charger.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jakob Hauser <jahau@rocketmail.com> 14 under sub-node named "charger" using the following format. 18 const: richtek,rt5033-charger 20 monitored-battery: 26 precharge-current-microamp: 27 Current of pre-charge mode. The pre-charge current levels are 350 mA [all …]
|
/freebsd/crypto/openssl/ |
H A D | README-ENGINES.md | 5 ---------------- 11 The ENGINE interface has its limitations and it has been superseeded 12 by the [PROVIDER API](README-PROVIDERS.md), it is deprecated in OpenSSL 19 Built-in ENGINE implementations 20 ------------------------------- 22 There are currently built-in ENGINE implementations for the following 40 -------------------------- 48 --------------------- 54 based input to those ENGINEs, in the form of name-value pairs. This is an 57 device) but that should be consistent across *all* OpenSSL-based [all …]
|
/freebsd/crypto/openssl/crypto/ |
H A D | core_algorithm.c | 2 * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved. 19 int (*pre)(OSSL_PROVIDER *, int operation_id, int no_store, void *data, member 32 * by constructing methods for all its implementations and adding those 35 * if 0, temporary if 1) and other data in |data->data|. 38 * -1 to quit adding algorithm implementations immediately 48 if (!data->reserve_store(no_store, data->data)) in algorithm_do_map() 50 return -1; in algorithm_do_map() 52 /* Do we fulfill pre-conditions? */ in algorithm_do_map() 53 if (data->pre == NULL) { in algorithm_do_map() 54 /* If there is no pre-condition function, assume "yes" */ in algorithm_do_map() [all …]
|
/freebsd/contrib/ncurses/doc/html/ |
H A D | ncurses-intro.html | 1 <!-- 2 $Id: ncurses-intro.html,v 1.57 2022/11/26 19:33:46 tom Exp $ 4 * Copyright 2019-2020,2022 Thomas E. Dickey * 5 * Copyright 2000-2013,2017 Free Software Foundation, Inc. * 31 --> 32 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 38 <link rel="author" href="mailto:bugs-ncurses@gnu.org"> 39 <meta http-equiv="Content-Type" content= 40 "text/html; charset=us-ascii"> 43 <h1 class="no-header">Writing Programs with NCURSES</h1> [all …]
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock_output_test_golden.txt | 27 Called 2 times, but only 1 WillOnce() is specified - returning default value. 33 Unexpected mock function call - returning default value. 42 Actual: never called - unsatisfied and active 48 Unexpected mock function call - returning directly. 56 Actual: never called - unsatisfied and active 61 Mock function called more times than expected - returning default value. 65 Actual: called twice - over-saturated and active 70 Mock function called more times than expected - returning directly. 73 Actual: called twice - over-saturated and active 79 Uninteresting mock function call - returning default value. [all …]
|
/freebsd/lib/libc/gen/ |
H A D | fts.3 | 12 .\" 3. Neither the name of the University nor the names of its contributors 76 In general, directories are visited two distinguishable times; in pre-order 77 (before any of their descendants are visited) and in post-order (after all 84 prune and/or re-visit portions of the hierarchy. 109 store application data or per-hierarchy state. 118 stream of its arguments using the 129 .Bd -literal 137 long fts_level; /* depth (\-1 to N) */ 149 .Bl -tag -width "fts_namelen" 160 .Bl -tag -width FTS_DEFAULT [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | tap_parser.cpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 72 /// Checks if a line contains a TAP plan and extracts its data. 79 /// tests being skipped, if any. If this is set to a non-empty value, 132 /// Checks if a line contains a TAP test result and extracts its data. 147 PRE(!out_bailed_out); in try_parse_result() 175 _plan_regex(text::regex::compile("^([0-9]+)\\.\\.([0-9]+)", 2)), in tap_parser() 179 _result_regex(text::regex::compile("^(not ok|ok)[ \t-]+[0-9]*", 1)) in tap_parser() 217 const std::size_t exp_count = plan.get().second - in parse() 288 PRE((plan_.second - plan_.first + 1) == (ok_count_ + not_ok_count_)); in new_results() 305 /// \pre bailed_out() must be false. [all …]
|
/freebsd/contrib/kyua/utils/signals/ |
H A D | interrupts.cpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 55 /// The interrupt signal that fired, or -1 if none. 56 static volatile int fired_signal = -1; 99 static const char* message = "[-- Signal caught; please wait for " in signal_handler() 100 "cleanup --]\n"; in signal_handler() 101 if (::write(STDERR_FILENO, message, std::strlen(message)) == -1) { in signal_handler() 119 /// \pre Must not have been called before. 124 PRE(sighup_handler.get() == NULL); in setup_handlers() 125 PRE(sigint_handler.get() == NULL); in setup_handlers() 126 PRE(sigterm_handler.get() == NULL); in setup_handlers() [all …]
|
/freebsd/share/man/man4/ |
H A D | wg.4 | 1 .\" SPDX-License-Identifier: BSD-2-Clause 35 .Bd -ragged -offset indent 42 .Bd -literal -offset indent 66 .Bl -tag -width indent -offset 3n 73 Each peer uses its private key and corresponding public key to 77 interface with its own private key and with the public keys of its peers. 78 .It Pre-shared key 80 unique pre-shared symmetric key. 83 Diffie-Hellman exchange becomes feasible. 89 The interface therefore implements rudimentary routing and reverse-path [all …]
|
/freebsd/crypto/libecc/ |
H A D | README.md | 11 Copyright (C) 2017-2023 20 * Jean-Pierre FLORI (<mailto:jpflori@gmail.com>) 30 in the [ISO 14888-3:2018](https://www.iso.org/standard/76382.html) 34 * Core ISO 14888-3:2018 algorithms: ECDSA, ECKCDSA, ECGDSA, ECRDSA, EC{,O}SDSA, ECFSDSA, SM2. 36 …* BIGN (as standardized in [STB 34.101.45-2013](https://github.com/bcrypto/bign)). We allow a more… 38 … "Schnorr" Bitcoin proposal, as specified in [bip-0340](https://github.com/bitcoin/bips/blob/maste… 39 …tandard as we allow any curve and any hash function (the standard mandates SECP256K1 with SHA-256). 42 …-CDH (Elliptic Curve Cryptography Cofactor Diffie-Hellman) as described in [section 5.7.1.2 of the… 45 …STR3410-2001-CryptoPro{A,B,C,XchA,XchB,Test}-ParamSet, GOSTR3410-2012-{256,512}-ParamSet{A,B,C}, G… 47 * **Hash functions**: SHA-2 and SHA-3 hash functions (224, 256, 384, 512), SM3, RIPEMD-160, [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | archive.mk | 11 FILES= archive.mk archive-suffix.mk modmisc.mk ternary.mk varmisc.mk 19 # targets is run in its separate sub-make. 20 @${MAKE} -f ${MAKEFILE} remove-archive 21 @${MAKE} -f ${MAKEFILE} create-archive 22 @${MAKE} -f ${MAKEFILE} list-archive 23 @${MAKE} -f ${MAKEFILE} list-archive-wildcard 24 @${MAKE} -f ${MAKEFILE} list-archive-undef-archive || echo "exit $$?" 26 @${MAKE} -f ${MAKEFILE} list-archive-undef-member || echo "exit $$?" 28 @${MAKE} -f ${MAKEFILE} depend-on-existing-member 29 @${MAKE} -f ${MAKEFILE} depend-on-nonexistent-member [all …]
|
/freebsd/crypto/openssh/ |
H A D | README.privsep | 3 privileged monitor process. Its purpose is to prevent privilege 8 Privilege separation is now mandatory. During the pre-authentication 9 phase sshd will chroot(2) to "/var/empty" and change its privileges to the 10 "sshd" user and its primary group. sshd is a pseudo-account that should 21 # useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd 28 --with-privsep-path=xxx Path for privilege separation chroot 29 --with-privsep-user=user Specify non-privileged user for privilege separation 31 PAM-enabled OpenSSH is known to function with privsep on AIX, FreeBSD, 32 HP-UX (including Trusted Mode), Linux, NetBSD and Solaris. 34 On Cygwin, Tru64 Unix and OpenServer only the pre-authentication part [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/amd/ |
H A D | elba.dtsi | 1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 * Copyright 2020-2022 Advanced Micro Devices, Inc. 6 #include <dt-bindings/gpio/gpio.h> 7 #include "dt-bindings/interrupt-controller/arm-gic.h" 11 compatible = "amd,pensando-elba"; 12 interrupt-parent = <&gic>; 13 #address-cells = <2>; 14 #size-cells = <2>; 16 dma-coherent; 19 compatible = "fixed-clock"; [all …]
|
/freebsd/contrib/sendmail/libmilter/docs/ |
H A D | xxfi_header.html | 4 <!-- 5 $Id: xxfi_header.html,v 1.18 2013-11-22 20:51:39 ca Exp $ 6 --> 10 <!---------- Synopsis -----------> 12 <PRE> 19 </PRE> 23 <!----------- Description ----------> 37 <!----------- Arguments ----------> 57 <!----------- Notes ----------> 67 <PRE> [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/arm64/fujitsu/a64fx/ |
H A D | instruction.json | 72 … "PublicDescription": "This event counts architecturally executed floating-point move operations.", 75 "BriefDescription": "This event counts architecturally executed floating-point move operations." 84 …"PublicDescription": "This event counts architecturally executed inter-element manipulation operat… 87 …"BriefDescription": "This event counts architecturally executed inter-element manipulation operati… 90 …"PublicDescription": "This event counts architecturally executed inter-register manipulation opera… 93 …"BriefDescription": "This event counts architecturally executed inter-register manipulation operat… 108 …"PublicDescription": "This event counts architecturally executed SIMD broadcast floating-point loa… 111 …"BriefDescription": "This event counts architecturally executed SIMD broadcast floating-point load… 120 …: "This event counts architecturally executed operations that uses 'pre-index' as its addressing m… 123 …: "This event counts architecturally executed operations that uses 'pre-index' as its addressing m… [all …]
|
/freebsd/sys/sys/ |
H A D | fail.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2009-2019 Dell EMC Isilon http://www.isilon.com/ 62 * failure-injection code and the user-interface. 96 #define FAIL_POINT_IS_OFF(fp) (__predict_true((fp)->fp_setting == NULL) || \ 101 /* Private failpoint eval function -- use fail_point_eval() instead. */ 110 * Initialize a fail-point. The name is formed in printf-like fashion 121 * Set the pre-sleep function for a fail point 123 * (*fp->fp_pre_sleep_fn)(fp->fp_pre_sleep_arg) call by the thread. 128 fp->fp_pre_sleep_fn = sleep_fn; in fail_point_sleep_set_pre_func() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/hwmon/ |
H A D | moortec,mr75203.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/contrib/wpa/hostapd/ |
H A D | README | 1 hostapd - user space IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP 5 Copyright (c) 2002-2024, Jouni Malinen <j@w1.fi> and contributors 17 ------- 33 3. Neither the name(s) of the above-listed copyright holder(s) nor the 34 names of its contributors may be used to endorse or promote products 68 ------------ 71 - drivers: 73 (http://w1.fi/hostap-driver.html) 77 mac80211-based drivers that support AP mode (with driver=nl80211). 84 FreeBSD -current [all …]
|