/freebsd/sys/contrib/device-tree/Bindings/iio/frequency/ |
H A D | adi,admv1014.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
H A D | adi,admv1013.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/contrib/gdtoa/ |
H A D | README | 1 This directory contains source for a library of binary -> decimal 2 and decimal -> binary conversion routines, for single-, double-, 3 and extended-precision IEEE binary floating-point arithmetic, and 4 other IEEE-like binary floating-point, including "double double", 7 T. J. Dekker, "A Floating-Point Technique for Extending the 8 Available Precision", Numer. Math. 18 (1971), pp. 224-242 12 "Inside Macintosh: PowerPC Numerics", Addison-Wesley, 1994 14 The conversion routines use double-precision floating-point arithmetic 18 David M. Gay, "Correctly Rounded Binary-Decimal and 19 Decimal-Binary Conversions", Numerical Analysis Manuscript [all …]
|
H A D | changes | 3 (fixed-point mode); fix rounding bug in these modes when the input 4 d (to be converted) satisfies 10^-(ndigits+1) <= |d| < 10^-ndigits , 7 the result is empty (i.e., when |d| <= 5 * 10^-ndigits). 25 return +-Infinity for IEEE arithmetic, +- the largest machine number 30 dtoa.c: tweak strtod (one-line addition) so the end-pointer = start 35 reasonably with huge numbers and 16-bit ints. 47 < for(result_k = 0; sizeof(Bigint) - sizeof(unsigned long) + j < i; 48 --- 49 > for(result_k = 0; sizeof(Bigint) - sizeof(unsigned long) + j <= i; 50 With 32-bit ints, the former could give too small a block for the return [all …]
|
H A D | printf.c0 | 118 …typedef char *(*pgdtoa) ANSI((FPI*, int be, ULong *bits, int *kind, int mode, int ndigits, int *de… 122 ULong bits[4]; /* sufficient for quad; modify if considering wider types */ 170 static FPI fpi0 = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, 0 }; 172 b->fpi = &fpi0; 173 b->gdtoa = gdtoa; 174 b->sign = u->us[_0] & 0x8000; 175 bits = b->bits; 176 bits[1] = (u->us[_1] << 16) | u->us[_2]; 177 bits[0] = (u->us[_3] << 16) | u->us[_4]; 178 if ( (ex = u->us[_0] & 0x7fff) !=0) { [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | maxim,max96712.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 title: Quad GMSL2 to CSI-2 Deserializer with GMSL1 Compatibility 11 - Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> 15 CSI-2 D-PHY or C-PHY formatted outputs. The device allows each link to 16 simultaneously transmit bidirectional control-channel data while forward 18 four remotely located sensors using industry-standard coax or STP 22 forward direction and 187.5Mbps in the reverse direction. In GMSL1 mode, the 23 MAX96712 can be paired with first-generation 3.12Gbps or 1.5Gbps GMSL1 [all …]
|
/freebsd/share/misc/ |
H A D | pci_vendors | 5 # Date: 2024-11-25 03:15:02 8 # the PCI ID Project at https://pci-ids.ucw.cz/. 14 # (version 2 or higher) or the 3-clause BSD License. 25 # device device_name <-- single tab 26 # subvendor subdevice subsystem_name <-- two tabs 30 # This is a relabelled RTL-8139 31 8139 AT-2500TX V3 Ethernet 41 7a09 PCI-to-PCI Bridge 50 7a19 PCI-to-PCI Bridge 55 7a29 PCI-to-PCI Bridge [all …]
|
H A D | usb_vendors | 6 # http://www.linux-usb.org/usb-ids.html 7 # or send entries as patches (diff -u old new) in the 10 # http://www.linux-usb.org/usb.ids 13 # Date: 2024-12-04 20:34:02 20 # device device_name <-- single tab 21 # interface interface_name <-- two tabs 38 5301 GW-US54ZGL 802.11bg 54 145f NW-3100 802.11b/g 54Mbps Wireless Network Adapter [zd1211] 62 0200 TP-Link 81 120e ASI120MC-S Planetary Camera [all …]
|
/freebsd/usr.bin/truss/ |
H A D | syscalls.c | 1 /*- 2 * SPDX-License-Identifier: BSD-4-Clause 379 .args = { { Name, 0 }, { Octal, 1 }, { Quad, 2 } } }, 381 .args = { { Atfd, 0 }, { Name, 1 }, { Octal, 2 }, { Quad, 3 } } }, 433 .args = { { Idtype, 0 }, { Quad, 1 }, { Procctl, 2 }, { Ptr, 3 } } }, 596 .args = { { Idtype, 0 }, { Quad, 1 }, { ExitStatus | OUT, 2 }, 692 for (; xlat->str != NULL; xlat++) in lookup() 693 if (xlat->val == val) in lookup() 694 return (xlat->str); in lookup() 731 for (; xlat->str != NULL; xlat++) { in xlookup_bits() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 1 //===- ARMTargetTransformInfo.cpp - ARM specific TTI ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 48 "enable-arm-maskedldst", cl::Hidden, cl::init(true), 52 "disable-arm-loloops", cl::Hidden, cl::init(false), 53 cl::desc("Disable the generation of low-overhead loops")); 56 AllowWLSLoops("allow-arm-wlsloops", cl::Hidden, cl::init(true), 59 extern cl::opt<TailPredication::Mode> EnableTailPredication; 67 /// from a constant, since we get constant-folding for free. 75 unsigned Alignment = IntrAlign->getLimitedValue() < MemAlign in simplifyNeonVld1() [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | linux | 2 #------------------------------------------------------------------------------ 13 # >0 leshort 0413 demand-paged executable (ZMAGIC) 14 # >0 leshort 0314 demand-paged executable (QMAGIC) 20 0 lelong 0x0064010b Linux/i386 demand-paged executable (ZMAGIC) 22 0 lelong 0x006400cc Linux/i386 demand-paged executable (QMAGIC) 27 # Linux-8086 stuff: 28 0 string \01\03\020\04 Linux-8086 impure executable 30 0 string \01\03\040\04 Linux-8086 executable 33 0 string \243\206\001\0 Linux-8086 object file 35 0 string \01\03\020\20 Minix-386 impure executable [all …]
|
H A D | windows | 2 #------------------------------------------------------------------------------ 23 # v1.0.4/libdbx_1.0.4.tar.gz/FILE-FORMAT 25 # and partly verified by `undbx --verbosity 4 Posteingang.dbx` 27 # skip DROID fmt-838-signature-id-1193.dbx fmt-839-signature-id-1194.dbx by check for valid file si… 29 #!:mime application/octet-stream 30 #!:mime application/vnd.ms-outlook 31 !:mime application/x-ms-dbx 43 # CLSID: 6F74FDC5-E366-11d1-9A4E-00C04FA309D4~Message 6F74FDC6-E366-11D1-9A4E-00C04FA309D4~Folder 44 # 26FE9D30-1A8F-11D2-AABF-006097D474C4~offline 66 # partly verfied by NK2Edit Raw Text Edit Mode [all …]
|
H A D | images | 2 #------------------------------------------------------------------------------ 4 # images: file(1) magic for image formats (see also "iff", and "c-lang" for 9 # merging several one- and two-line files into here. 13 # Targa - matches `povray', `ppmtotga' and `xv' outputs 19 # Note: called by DROID "Truevision TGA Bitmap" version 1.0 via PUID x-fmt/367 23 # or theoretically 2-128 reserved for use by Truevision or 128-255 may be used for developer applic… 32 # Targa image data (strength=70=110-40) before some Commodore disc image (strength=70=70+0 ./c64) l… 35 !:strength -40 37 #>(2.S-2) belong !0x28632943 51 >>>>>>8 quad !0x0101010101010101 [all …]
|
/freebsd/contrib/file/ |
H A D | ChangeLog | 1 2024-11-27 14:44 Christos Zoulas <christos@zoulas.com> 6 2024-11-25 13:56 Christos Zoulas <christos@zoulas.com> 10 2024-11-10 13:56 Christos Zoulas <christos@zoulas.com> 14 offset that the "use" starts so that we don't double-count it. 17 2024-11-09 19:30 Christos Zoulas <christos@zoulas.com> 21 2024-11-02 14:34 Christos Zoulas <christos@zoulas.com> 25 2023-12-29 12:55 Christos Zoulas <christos@zoulas.com> 29 2023-07-29 12:55 Christos Zoulas <christos@zoulas.com> 33 2023-07-27 15:45 Christos Zoulas <christos@zoulas.com> 37 2023-07-17 11:53 Christos Zoulas <christos@zoulas.com> [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclAttr.cpp | 1 //===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file implements decl-related attribute processing. 11 //===----------------------------------------------------------------------===// 105 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) in checkPositiveIntArgument() 117 const auto *Literal = dyn_cast<StringLiteral>(E->IgnoreParenCasts()); in checkStringLiteralArgumentAttr() 119 *ArgLocation = E->getBeginLoc(); in checkStringLiteralArgumentAttr() 121 if (!Literal || (!Literal->isUnevaluated() && !Literal->isOrdinary())) { in checkStringLiteralArgumentAttr() 122 Diag(E->getBeginLoc(), diag::err_attribute_argument_type) in checkStringLiteralArgumentAttr() [all …]
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 4 This is a high-level summary of the most important changes. 11 ---------------- 13 - [OpenSSL 3.0](#openssl-30) 14 - [OpenSSL 1.1.1](#openssl-111) 15 - [OpenSSL 1.1.0](#openssl-110) 16 - [OpenSSL 1.0.2](#openssl-102) 17 - [OpenSSL 1.0.1](#openssl-101) 18 - [OpenSSL 1.0.0](#openssl-100) 19 - [OpenSSL 0.9.x](#openssl-09x) 22 ----------- [all …]
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 7 # bug-ncurses@gnu.org 19 # under the ncurses MIT-style license. That was the effect of the agreement 33 # some portions of the data are derivative work under a compatible MIT-style 36 #------------------------------------------------------------------------------ 37 # https://invisible-island.net/ncurses/ncurses.faq.html#terminfo_copying 38 # https://invisible-island.net/personal/copyrights.html#removing_notes 39 #------------------------------------------------------------------------------ 48 # Please e-mail changes to terminfo@thyrsus.com; the old termcap@berkeley.edu 54 # This file describes the capabilities of various character-cell terminals, 55 # as needed by software such as screen-oriented editors. [all …]
|
/freebsd/contrib/sendmail/ |
H A D | RELEASE_NOTES | 13 - Prevent transaction stuffing by ensuring SMTP clients 19 - Accept only CRLF . CRLF as end of an SMTP message 22 - Do not accept a CR or LF except in the combination 31 are used, i.e., TLSA RR 2-x-y and 3-x-y are supported 63 another RCPT in pipelining mode then parts of the 76 because the -a. option has been removed (as it only 79 VACATION: Add support for Return-Path header to set sender 81 VACATION: Honor RFC3834 and avoid an auto-reply if 82 'Auto-Submitted: no' is found in the headers to 84 VACATION: Avoid an auto-reply if a 'List-Id:' is found in [all …]
|
/freebsd/contrib/sendmail/doc/op/ |
H A D | op.me | 1 .\" Copyright (c) 1998-2013 Proofpoint, Inc. and its suppliers. 12 .\" $Id: op.me,v 8.759 2014-01-13 14:40:05 ca Exp $ 14 .\" eqn op.me | pic | troff -me 51 .eh 'SMM:08-%''Sendmail Installation and Operation Guide' 52 .oh 'Sendmail Installation and Operation Guide''SMM:08-%' 74 .b SENDMAIL\u\s-6TM\s0\d 103 .i Sendmail \u\s-2TM\s0\d 107 It is not tied to any one transport protocol \*- 173 explains the day-to-day information you should know 185 contains the nitty-gritty information about the configuration [all …]
|
/freebsd/share/dict/ |
H A D | web2a | 12 A-b-c book 13 A-b-c method 14 abdomino-uterotomy 15 Abdul-baha 16 a-be 20 able-bodied 21 able-bodiedness 22 able-minded 23 able-mindedness 27 Abor-miri [all …]
|
H A D | web2 | 99810 Jean-Christophe 99811 Jean-Pierre 117962 mode 161271 quad 176462 se
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 17 ** language. The code for the "sqlite3" command-line shell is also in a 20 ** The content in this amalgamation comes from Fossil check-in 51 ** NO_TEST - The branches on this line are not 56 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false 60 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true 64 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread 69 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the 144 ** 2015-03-02 182 ** large file support, or if the OS is windows, these should be no-ops. 188 ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch [all …]
|