| /freebsd/contrib/llvm-project/clang/lib/Sema/ | 
| H A D | CodeCompleteConsumer.cpp | 1 //===- CodeCompleteConsumer.cpp - Code Completion Interface ---------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 11 //===----------------------------------------------------------------------===//
 14 #include "clang-c/Index.h"
 29 #include "llvm/Support/Casting.h"
 30 #include "llvm/Support/Compiler.h"
 31 #include "llvm/Support/ErrorHandling.h"
 32 #include "llvm/Support/FormatVariadic.h"
 33 #include "llvm/Support/raw_ostream.h"
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/clang/lib/AST/ | 
| H A D | DeclTemplate.cpp | 1 //===- DeclTemplate.cpp - Template Declaration AST Node Implementation ----===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 11 //===----------------------------------------------------------------------===//
 32 #include "llvm/Support/Casting.h"
 33 #include "llvm/Support/ErrorHandling.h"
 43 //===----------------------------------------------------------------------===//
 45 //===----------------------------------------------------------------------===//
 62     bool IsPack = P->isTemplateParameterPack();  in TemplateParameterList()
 64       if (!IsPack && NTTP->getType()->containsUnexpandedParameterPack())  in TemplateParameterList()
 [all …]
 
 | 
| H A D | TypePrinter.cpp | 1 //===- TypePrinter.cpp - Pretty-Print Clang Types -------------------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 11 //===----------------------------------------------------------------------===//
 40 #include "llvm/Support/Casting.h"
 41 #include "llvm/Support/Compiler.h"
 42 #include "llvm/Support/ErrorHandling.h"
 43 #include "llvm/Support/SaveAndRestore.h"
 44 #include "llvm/Support/raw_ostream.h"
 207   // CanPrefixQualifiers - We prefer to print type qualifiers before the type,  in canPrefixQualifiers()
 [all …]
 
 | 
| H A D | StmtPrinter.cpp | 1 //===- StmtPrinter.cpp - Printing implementation for Stmt ASTs ------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 12 //===----------------------------------------------------------------------===//
 52 #include "llvm/Support/Casting.h"
 53 #include "llvm/Support/Compiler.h"
 54 #include "llvm/Support/ErrorHandling.h"
 55 #include "llvm/Support/raw_ostream.h"
 62 //===----------------------------------------------------------------------===//
 64 //===----------------------------------------------------------------------===//
 [all …]
 
 | 
| H A D | ODRHash.cpp | 1 //===-- ODRHash.cpp - Hashing to diagnose ODR failures ----------*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 13 //===----------------------------------------------------------------------===//
 25   assert(S && "Expecting non-null pointer.");  in AddStmt()
 26   S->ProcessODRHash(ID, *this);  in AddStmt()
 30   assert(II && "Expecting non-null pointer.");  in AddIdentifierInfo()
 31   ID.AddString(II->getName());  in AddIdentifierInfo()
 49   ID.AddInteger(Result.first->second);  in AddDeclarationNameImpl()
 76     // slots. And if there are no arguments, compare the first-and-only slot.  in AddDeclarationNameImpl()
 [all …]
 
 | 
| H A D | DeclObjC.cpp | 1 //===- DeclObjC.cpp - ObjC Declaration AST Node Implementation ------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 9 // This file implements the Objective-C related Decl classes.
 11 //===----------------------------------------------------------------------===//
 29 #include "llvm/Support/Casting.h"
 30 #include "llvm/Support/ErrorHandling.h"
 31 #include "llvm/Support/raw_ostream.h"
 41 //===----------------------------------------------------------------------===//
 43 //===----------------------------------------------------------------------===//
 [all …]
 
 | 
| /freebsd/sys/contrib/device-tree/Bindings/usb/ | 
| H A D | usb-hcd.yaml | 1 # SPDX-License-Identifier: GPL-2.03 ---
 4 $id: http://devicetree.org/schemas/usb/usb-hcd.yaml#
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Greg Kroah-Hartma
 [all...]
 | 
| H A D | ci-hdrc-usb2.txt | 4 - compatible: should be one of:5 	"fsl,imx23-usb"
 6 	"fsl,imx27-usb"
 7 	"fsl,imx28-usb"
 8 	"fsl,imx6q-usb"
 9 	"fsl,imx6sl-usb"
 10 	"fsl,imx6sx-usb"
 11 	"fsl,imx6ul-usb"
 12 	"fsl,imx7d-usb"
 13 	"fsl,imx7ulp-usb"
 [all …]
 
 | 
| H A D | dwc2.yaml | 1 # SPDX-License-Identifier: GPL-2.03 ---
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Rob Herring <robh@kernel.org>
 13   - $ref: usb-drd.yaml#
 14   - $ref: usb-hcd.yaml#
 19       - const: brcm,bcm2835-usb
 20       - const: hisilicon,hi6220-usb
 21       - const: ingenic,jz4775-otg
 22       - const: ingenic,jz4780-otg
 [all …]
 
 | 
| /freebsd/sys/kern/ | 
| H A D | subr_stats.c | 1 /*-2  * Copyright (c) 2014-2018 Netflix, Inc.
 74 	uint16_t	errs : VS_EBITS;/* Non-wrapping error count. */
 75 	uint16_t	flags : 16 - VS_EBITS;
 79 	if ((vs)->errs < (1U << VS_EBITS) - 1)				\
 80 		(vs)->errs++;						\
 85  *   - Global or entity specific (global would imply use of counter(9)?)
 86  *   - Whether to reset stats on read or not
 87  *   - Signal an overflow?
 88  *   - Compressed voistat array
 [all …]
 
 | 
| /freebsd/contrib/ntp/ntpd/ | 
| H A D | ntp.keys.5man | 5 .\"  It has been AutoGen-ed  May 25, 2024 at 12:04:05 AM by AutoGen 5.18.167 .\"  and the template file   agman-file.tpl
 14 ntp.keys \- NTP symmetric key file format configuration file
 16 .  it 1 an-trap
 20 .ds B-Font [CB]
 21 .ds I-Font [CI]
 22 .ds R-Font [CR]
 24 .ds B-Font B
 25 .ds I-Fon
 [all...]
 | 
| H A D | ntp.keys.man.in | 5 .\"  It has been AutoGen-ed  May 25, 2024 at 12:04:05 AM by AutoGen 5.18.167 .\"  and the template file   agman-file.tpl
 14 ntp.keys \- NTP symmetric key file format configuration file
 16 .  it 1 an-trap
 20 .ds B-Font [CB]
 21 .ds I-Font [CI]
 22 .ds R-Font [CR]
 24 .ds B-Font B
 25 .ds I-Fon
 [all...]
 | 
| H A D | ntp.keys.5mdoc | 3 .Os FreeBSD 12.1-RELEASE_SI6 .\"  It has been AutoGen-ed  May 25, 2024 at 12:03:52 AM by AutoGen 5.18.16
 8 .\"  and the template file   agmdoc-file.tpl
 18 .Op Fl \-option\-name
 19 .Op Fl \-option\-name Ar value
 26 .Qq Authentication Support
 57 is an optional comma\-separate
 [all...]
 | 
| H A D | ntp.keys.mdoc.in | 3 .Os FreeBSD 12.1-RELEASE_SI6 .\"  It has been AutoGen-ed  May 25, 2024 at 12:03:52 AM by AutoGen 5.18.16
 8 .\"  and the template file   agmdoc-file.tpl
 18 .Op Fl \-option\-name
 19 .Op Fl \-option\-name Ar value
 26 .Qq Authentication Support
 57 is an optional comma\-separate
 [all...]
 | 
| H A D | invoke-ntp.keys.texi | 7 # EDIT THIS FILE WITH CAUTION  (invoke-ntp.keys.texi)9 # It has been AutoGen-ed  May 25, 2024 at 12:03:59 AM by AutoGen 5.18.16
 11 # and the template file   agtexi-file.tpl
 18 "Authentication Support"
 25 @code{-k}
 51 is an optional comma-separated list of IPs
 65 any properly-authenticated message will be
 82 However, if compliance with FIPS 140-2 is required the
 104 The key is a hex-encode
 [all...]
 | 
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ | 
| H A D | ASTNodeTraverser.h | 1 //===--- ASTNodeTraverser.h - Traversal of AST nodes ----------------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 13 //===----------------------------------------------------------------------===//
 28 #include "llvm/Support/SaveAndRestore.h"
 102     if (Traversal == TK_IgnoreUnlessSpelledInSource && D->isImplicit())
 111         llvm::SaveAndRestore RestoreVisitLocs(this->VisitLocs, VisitLocs);
 115       for (const auto &A : D->attrs())
 119               D->getASTContext().getLocalCommentForDeclUncached(D))
 126             auto SK = CTSD->getSpecializationKind();
 [all …]
 
 | 
| H A D | DeclTemplate.h | 1 //===- DeclTemplate.h - Classes for representing C++ templates --*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 12 //===----------------------------------------------------------------------===//
 35 #include "llvm/Support/Casting.h"
 36 #include "llvm/Support/Compiler.h"
 37 #include "llvm/Support/TrailingObjects.h"
 93   /// Whether any of the template parameters has constrained-parameter
 94   /// constraint-expression.
 145     assert(Idx < size() && "Template parameter index out-of-range");  in getParam()
 [all …]
 
 | 
| H A D | RecursiveASTVisitor.h | 1 //===--- RecursiveASTVisitor.h - Recursive AST Visitor ----------*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 12 //===----------------------------------------------------------------------===//
 49 #include "llvm/Support/Casting.h"
 56 // A helper macro to implement short-circuiting when recursing.  It
 75 /// are pointers to the same non-static member function.
 80     -> bool {
 90 /// depth-first traversal on the entire Clang AST and visits each node.
 95 ///      the node's dynamic type, until the top-most class (e.g. Stmt,
 [all …]
 
 | 
| /freebsd/contrib/file/magic/Magdir/ | 
| H A D | ole2compounddocs | 2 #------------------------------------------------------------------------------10 # https://digital-preservation.github.io/droid/
 11 # skip droid skeleton like fmt-39-signature-id-128.doc by valid version
 15 >>0x1C	ubeshort		=0xfffe			\b, big-endian
 20 # Byte Order 0xFFFE means little-endian found in real world applications
 21 #>>0x1C	uleshort		=0xfffe			\b, little-endian
 30 # Sector Shift Exponent in short-stream container stream: 6~64 bytes
 34 # SecID of first sector of the short-sector allocation table (Mini FAT)
 35 # or -2 (End Of ChainSecID) if not extant
 37 # total number of sectors used for the short-sector allocation table
 [all …]
 
 | 
| /freebsd/contrib/openpam/ | 
| H A D | missing | 4 scriptversion=2024-06-07.14; # UTC6 # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells
 8 # Copyright (C) 1996-2024 Free Software Foundation, Inc.
 29 if test $# -eq 0; then
 30   echo 1>&2 "Try '$0 --help' for more information"
 36   --is-lightweight)
 42   --run)
 43     # Back-compat with the calling convention used by older automake.
 47   -h|--h|--he|--hel|--help)
 55   -h, --help      display this help and exit
 [all …]
 
 | 
| /freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ | 
| H A D | imx6ull-dhcor-maveo-box.dts | 1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT7  * DHCR-iMX6ULL-C080-R051-SPI-WBT-I-01LG
 8  * DHCOR PCB number: 578-200 or newer
 9  * maveo box PCB number: 525-200 or newer
 12 /dts-v1/;
 14 #include "imx6ull-dhcor-som.dtsi"
 18 	compatible = "marantec,imx6ull-dhcor-maveo-box", "dh,imx6ull-dhcor-som",
 28 		stdout-path = "serial0:115200n8";
 31 	reg_usb_otg1_vbus: regulator-usb-otg1-vbus {
 32 		compatible = "regulator-fixed";
 [all …]
 
 | 
| H A D | imx6ull-dhcom-som.dtsi | 1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause6 #include "imx6ull-dhcor-som.dtsi"
 10 		/delete-property/ spi2;
 11 		/delete-property/ spi3;
 28 		stdout-path = "serial0:115200n8";
 31 	reg_ext_3v3_ref: regulator-ext-3v3-ref {
 32 		compatible = "regulator-fixed";
 33 		regulator-always-on;
 34 		regulator-max-microvolt = <3300000>;
 35 		regulator-min-microvolt = <3300000>;
 [all …]
 
 | 
| /freebsd/stand/efi/include/Protocol/ | 
| H A D | Http.h | 7   Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>8   (C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP<BR>
 12   http://opensource.org/licenses/bsd-license.php
 158   /// HTTP version that this instance will support.
 279   /// Level (TPL) of Event must be lower than or equal to TPL_CALLBACK.
 310                                   HttpConfigData->AccessPoint.IPv6Node/IPv4Node. In fact,
 317                                   HttpConfigData->AccessPoint.IPv4Node or
 318                                   HttpConfigData->AccessPoint.IPv6Node is NULL.
 347                                   HttpConfigData->LocalAddressIsIPv6 is FALSE and
 348                                   HttpConfigData->AccessPoint.IPv4Node is NULL.
 [all …]
 
 | 
| /freebsd/contrib/ntp/sntp/ | 
| H A D | Makefile.in | 4 # Copyright (C) 1994-2021 Free Software Foundation, Inc.26   if test -z '$(MAKELEVEL)'; then \
 28   elif test -n '$(MAKE_HOST)'; then \
 30   elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
 37   case $${target_option-} in \
 40               "target option '$${target_option-}' specified" >&2; \
 63       *=*|--*) continue;; \
 64         -*
 [all...]
 | 
| /freebsd/contrib/ntp/ | 
| H A D | CommitLog | 1 ChangeSet@1.4062, 2024-05-25 00:06:49-07:00, ntpreleng@ntp-build.tal1.ntfo.org5   ChangeLog@1.2103 +1 -0
 8   ntpd/invoke-ntp.conf.texi@1.231 +1 -1
 11   ntpd/invoke-ntp.keys.texi@1.214 +1 -1
 14   ntpd/invoke-ntp
 [all...]
 |