/freebsd/sys/contrib/device-tree/Bindings/display/bridge/ |
H A D | fsl,imx8qxp-pixel-link.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/display/bridge/fsl,imx8qxp-pixel-link.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Liu Ying <victor.liu@nxp.com> 27 - fsl,imx8qm-dc-pixel-link 28 - fsl,imx8qxp-dc-pixel-link 30 fsl,dc-id: 36 fsl,dc-stream-id: 39 u8 value representing the display controller stream index that the pixel [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 1 //===- ASTWriter.cpp - AST File Writer ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 151 //===----------------------------------------------------------------------===// 153 //===----------------------------------------------------------------------===// 155 static TypeCode getTypeCodeForTypeClass(Type::TypeClass id) { in getTypeCodeForTypeClass() argument 156 switch (id) { in getTypeCodeForTypeClass() 181 M = M->getTopLevelModule(); in GetAffectingModuleMaps() 202 for (auto *SubM : Mod->submodules()) in GetAffectingModuleMaps() [all …]
|
H A D | ASTReader.cpp | 1 //===- ASTReader.cpp - AST File Reader ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 154 //===----------------------------------------------------------------------===// 156 //===----------------------------------------------------------------------===// 160 return First->ReadFullVersionInformation(FullVersion) || in ReadFullVersionInformation() 161 Second->ReadFullVersionInformation(FullVersion); in ReadFullVersionInformation() 165 First->ReadModuleName(ModuleName); in ReadModuleName() 166 Second->ReadModuleName(ModuleName); in ReadModuleName() [all …]
|
H A D | ASTWriterDecl.cpp | 1 //===--- ASTWriterDecl.cpp - Declaration Serialization --------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 30 //===----------------------------------------------------------------------===// 32 //===----------------------------------------------------------------------===// 55 D->getDeclKindName() + "'"); in Emit() 139 void VisitDeclContext(DeclContext *DC); 165 /// Add an Objective-C type parameter list to the given record. 173 Record.push_back(typeParams->size()); in AddObjCTypeParamList() [all …]
|
H A D | ASTReaderDecl.cpp | 1 //===- ASTReaderDecl.cpp - Decl Deserialization ---------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 78 //===----------------------------------------------------------------------===// 80 //===----------------------------------------------------------------------===// 108 return LocalOffset ? Loc.Offset - LocalOffset : 0; in ReadLocalOffset() 177 DeclContext *DC, 179 static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC, 199 /// Retrieve the first ID. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Mangle.cpp | 1 //===--- Mangle.cpp - Mangle C++ Names --------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Implements generic name mangling support for blocks and Objective-C. 11 //===----------------------------------------------------------------------===// 60 return FD->isExternC(); in isExternC() 62 return VD->isExternC(); in isExternC() 75 if (FD->isMain() && FD->getNumParams() == 2) in getCallingConvMangling() 88 QualType T = FD->getType(); in getCallingConvMangling() 90 const FunctionType *FT = T->castAs<FunctionType>(); in getCallingConvMangling() [all …]
|
H A D | MicrosoftMangle.cpp | 1 //===--- MicrosoftMangle.cpp - Microsoft Visual C++ Name Mangling ---------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 47 static GlobalDecl getGlobalDeclAsDeclContext(const DeclContext *DC) { in getGlobalDeclAsDeclContext() argument 49 if (auto *CD = dyn_cast<CXXConstructorDecl>(DC)) in getGlobalDeclAsDeclContext() 51 else if (auto *DD = dyn_cast<CXXDestructorDecl>(DC)) in getGlobalDeclAsDeclContext() 54 GD = GlobalDecl(cast<FunctionDecl>(DC)); in getGlobalDeclAsDeclContext() 91 if (RD->isLambda()) in getLambdaDefaultArgumentDeclContext() 93 dyn_cast_or_null<ParmVarDecl>(RD->getLambdaContextDecl())) in getLambdaDefaultArgumentDeclContext() [all …]
|
H A D | ItaniumMangle.cpp | 1 //===--- ItaniumMangle.cpp - Itanium C++ Name Mangling ----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 // ABI-compatible with GCC): 13 // http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling 15 //===----------------------------------------------------------------------===// 46 static bool isLocalContainerContext(const DeclContext *DC) { in isLocalContainerContext() argument 47 return isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC) || isa<BlockDecl>(DC); in isLocalContainerContext() 51 if (const FunctionTemplateDecl *ftd = fn->getPrimaryTemplate()) in getStructor() 52 return ftd->getTemplatedDecl(); in getStructor() [all …]
|
H A D | Decl.cpp | 1 //===- Decl.cpp - Declaration AST Node Implementation ---------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 78 return D->getASTContext().getPrimaryMergedDecl(D); in getPrimaryMergedDecl() 82 SourceLocation Loc = this->Loc; in print() 83 if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation(); in print() 92 ND->getNameForDiagnostic(OS, Context.getPrintingPolicy(), true); in print() 101 return !getLexicalDeclContext()->Equals(getDeclContext()); in isOutOfLine() 108 //===----------------------------------------------------------------------===// [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/ |
H A D | nvidia,tegra20-host1x.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only 3 --- 4 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra20-host1x.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Thierry Reding <thierry.reding@gmail.com> 11 - Jon Hunter <jonathanh@nvidia.com> 13 description: The host1x top-level node defines a number of children, each 19 - enum: 20 - nvidia,tegra20-host1x 21 - nvidia,tegra30-host1x [all …]
|
H A D | nvidia,tegra186-display.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra186-display.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Thierry Reding <thierry.reding@gmail.com> 11 - Jon Hunter <jonathanh@nvidia.com> 15 pattern: "^display-hub@[0-9a-f]+$" 19 - nvidia,tegra186-display 20 - nvidia,tegra194-display 22 '#address-cells': [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTRecordReader.h | 1 //===- ASTRecordReader.h - Helper classes for reading AST -------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 50 /// Reads a record with id AbbrevID from Cursor, resetting the 56 bool isModule() const { return F->isModule(); } in isModule() 59 ASTContext &getContext() { return Reader->getContext(); } in getContext() 89 /// Retrieve the global submodule ID its local ID number. 92 return Reader->getGlobalSubmoduleID(*F, LocalID); in getGlobalSubmoduleID() 95 /// Retrieve the submodule that corresponds to a global submodule ID. [all …]
|
H A D | ASTWriter.h | 1 //===- ASTWriter.h - AST File Writer ----------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 86 /// data structures. This bitstream can be de-serialized via an 99 /// Map that provides the ID numbers of each type within the 100 /// output stream, plus those deserialized from a chained PCH. 102 /// The ID numbers of types are consecutive (in order of discovery) 104 /// stored in the stream, the ID number is shifted by 2 bits to 114 llvm::BitstreamWriter &Stream; variable [all …]
|
H A D | ASTReader.h | 1 //===- ASTReader.h - AST File Reader ----------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 225 /// each non-system input file of the AST File. If 340 /// The on-disk hash table(s) used for DeclContext name lookup. 356 /// The AST reader provides lazy de-serialization of declarations, as 358 /// actually required will be de-serialized. 396 /// The AST file is out-of-date relative to its input files, 453 /// A dummy identifier resolver used to merge TU-scope declarations in [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ExternalASTSource.h | 1 //===- ExternalASTSource.h - Abstract External AST Interface ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 69 /// LLVM-style RTTI. 70 static char ID; variable 84 Source->StartedDeserializing(); in Deserializing() 88 Source->FinishedDeserializing(); in ~Deserializing() 97 /// Resolve a declaration ID into a declaration, potentially 103 /// The default implementation of this method is a no-op. [all …]
|
H A D | Decl.h | 1 //===- Decl.h - Classes for representing declarations -----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 128 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof() 133 static TranslationUnitDecl *castFromDeclContext(const DeclContext *DC) { in castFromDeclContext() argument 134 return static_cast<TranslationUnitDecl *>(const_cast<DeclContext*>(DC)); in castFromDeclContext() 156 static PragmaCommentDecl *Create(const ASTContext &C, TranslationUnitDecl *DC, 160 static PragmaCommentDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID, 168 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | MultiplexExternalSemaSource.h | 1 //===--- MultiplexExternalSemaSource.h - External Sema Interface-*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 39 /// LLVM-style RTTI. 40 static char ID; variable 49 ///\param[in] S1 - A non-null (old) ExternalSemaSource. 50 ///\param[in] S2 - A non-null (new) ExternalSemaSource. 58 ///\param[in] Source - An ExternalSemaSource. 62 //===--------------------------------------------------------------------===// [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.h | 1 //===-- TypeSystemClang.h ---------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 40 #include "lldb/lldb-enumerations.h" 57 /// A Clang module ID. 63 explicit OptionalClangModuleID(unsigned id) : m_id(id) {} in OptionalClangModuleID() argument 73 /// bit 0..30 ... Owning Module ID. 95 void SetOwningModule(OptionalClangModuleID id); 111 static char ID; variable 119 bool isA(const void *ClassID) const override { return ClassID == &ID; } in isA() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseTemplate.cpp | 1 //===--- ParseTemplate.cpp - Template Parsing -----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 27 /// Re-enter a possible template scope, creating as many template parameter 64 /// template-declaration: [C++ temp] 65 /// 'export'[opt] 'template' '<' template-parameter-list '>' declaration 67 /// template-declaration: [C++2a] 68 /// template-head declaration 69 /// template-head concept-definition [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_true.c | 2 * refclock_true - clock driver for the Kinemetrics/TrueTime receivers 3 * Receiver Version 3.0C - tested plain, with CLKLDISC 5 * - Support TL-3 WWV TOD receiver 46 * GOES: (468-DC, usable with GPS->GOES converting antenna) 47 * GPS/TM-TMD: 48 * XL-DC [all...] |
/freebsd/sys/dev/ath/ath_hal/ar9001/ |
H A D | ar9160_attach.c | 1 /*- 2 * SPDX-License-Identifier: ISC 46 .calName = "ADC DC", .calType = ADC_DC_CAL, 53 .calName = "ADC Init DC", .calType = ADC_DC_INIT_CAL, 67 .totalSizeDesired = { -55, -55, -55, -55, -62 }, in ar9160AniSetup() 68 .coarseHigh = { -14, -14, -14, -14, -12 }, in ar9160AniSetup() 69 .coarseLow = { -64, -64, -64, -64, -70 }, in ar9160AniSetup() 70 .firpwr = { -78, -78, -78, -78, -80 }, in ar9160AniSetup() 85 AH5416(ah)->ah_ani_function &= ~(1 << HAL_ANI_NOISE_IMMUNITY_LEVEL); in ar9160AniSetup() 139 ahp = &ahp5416->ah_5212; in ar9160Attach() [all …]
|
/freebsd/crypto/heimdal/doc/ |
H A D | setup.texi | 1 @c $Id$ 26 * Credential cache server - KCM:: 32 * Setting up PK-INIT:: 48 @samp{[@samp{section-name}]}. A binding consists of a left hand side, an equal sign 51 @samp{@{} as the first non-whitespace character after the equal sign. All 57 a-subsection = @{ 59 other-var = value with @{@} 60 sub-sub-section = @{ 70 separated by slashes (@samp{/}). The @samp{other-var} variable will thus 71 be @samp{section1/a-subsection/other-var}. [all …]
|
/freebsd/contrib/bc/src/ |
H A D | program.c | 4 * SPDX-License-Identifier: BSD-2-Clause 6 * Copyright (c) 2018-2024 Gavin D. Howard and contributors. 62 assert(r->t != BC_RESULT_VOID); in bc_program_type_num() 79 if (BC_ERR((r->t != BC_RESULT_ARRAY) != (!t))) bc_err(BC_ERR_EXEC_TYPE); in bc_program_type_match() 86 * see the development manual (manuals/development.md#bytecode-indices). 116 return *((char**) bc_vec_item(&p->strs, n->scale)); in bc_program_string() 134 bc_vec_push(p->globals_v + i, p->globals + i); in bc_program_prepGlobals() 138 bc_rand_push(&p->rng); in bc_program_prepGlobals() 158 BcVec* v = p->globals_v + i; in bc_program_popGlobals() 159 bc_vec_npop(v, reset ? v->len - 1 : 1); in bc_program_popGlobals() [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | archive | 1 #------------------------------------------------------------------------------ 3 # archive: file(1) magic for archive formats (see also "msdos" for self- 7 # pre-POSIX "tar" archives are also handled in the C code ../../src/is_tar.c. 11 # Reference: https://www.freebsd.org/cgi/man.cgi?query=tar&sektion=5&manpath=FreeBSD+8-current 18 # last 4 header bytes often null but tar\0 in gtarfail2.tar gtarfail.tar-bad 19 # at https://sourceforge.net/projects/s-tar/files/testscripts/ 21 # nul, space or ascii digit 0-7 at start of mode 32 >>>>>>>>>0 use tar-nvram 34 #>>>>>>>>0 regex \^[0-9]{2,4}[.](png|jpg|jpeg|tif|tiff|gif|bmp) NAME "%s" 37 >>>>>>>>0 regex \^[0-9]{2,4}[.](png|jpg|jpeg|tif|tiff|gif|bmp) [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | Sema.cpp | 1 //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // builds an AST out of a parse stream. 12 //===----------------------------------------------------------------------===// 103 return CachedDarwinSDKInfo->get(); in getDarwinSDKInfoForAvailabilityChecking() 109 return CachedDarwinSDKInfo->get(); in getDarwinSDKInfoForAvailabilityChecking() 125 OS << ParamName->getName() << ":auto"; in InventAbbreviatedTemplateParameterTypeName() 139 Policy.Bool = BoolMacro->isObjectLike() && in getPrintingPolicy() 140 BoolMacro->getNumTokens() == 1 && in getPrintingPolicy() [all …]
|