Searched +full:oe +full:- +full:extra +full:- +full:delay (Results 1 – 14 of 14) sorted by relevance
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | ti,gpmc-child.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/memory-controllers/ti,gpmc-child.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Tony Lindgren <tony@atomide.com> 11 - Roger Quadros <rogerq@kernel.org> 24 gpmc,sync-clk-ps: 28 # Chip-select signal timings corresponding to GPMC_CONFIG2: 29 gpmc,cs-on-ns: 33 gpmc,cs-rd-off-ns: [all …]
|
| H A D | omap-gpmc.txt | 7 - compatible: Should be set to one of the following: 9 ti,omap2420-gpmc (omap2420) 10 ti,omap2430-gpmc (omap2430) 11 ti,omap3430-gpmc (omap3430 & omap3630) 12 ti,omap4430-gpmc (omap4430 & omap4460 & omap543x) 13 ti,am3352-gpmc (am335x devices) 15 - reg: A resource specifier for the register space 17 - ti,hwmods: Should be set to "ti,gpmc" until the DT transition is 19 - #address-cells: Must be set to 2 to allow memory address translation 20 - #size-cells: Must be set to 1 to allow CS address passing [all …]
|
| /freebsd/sys/dev/pccbb/ |
| H A D | pccbb.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2000-2001 Jonathan Chen All rights reserved. 5 * Copyright (c) 2002-2004 M. Warner Losh <imp@FreeBSD.org> 30 /*- 65 * http://www-s.ti.com/cgi-bin/sc/generic2.cgi?family=PCI+CARDBUS+CONTROLLERS 137 "Starting ioport for 16-bit cards"); 142 "Starting ioport for 32-bit cards"); 178 SLIST_FOREACH(rle, &sc->rl, link) { in cbb_remove_res() 179 if (rle->res == res) { in cbb_remove_res() [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 //===----------------------------------------------------------------------===// 92 /// Wrapper around checkUInt32Argument, with an extra check to be sure 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() [all …]
|
| H A D | SemaDeclObjC.cpp | 1 //===--- SemaDeclObjC.cpp - Semantic Analysis for ObjC Declarations -------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 39 /// \param receiverTypeIfCall - if null, check this as if declaring it; 40 /// if non-null, check this as if making a call to it with the given 48 if (method->isInvalidDecl()) return true; in checkInitMethod() 57 method->getReturnType()->castAs<ObjCObjectPointerType>()->getObjectType(); in checkInitMethod() 59 if (result->isObjCId()) { in checkInitMethod() 61 } else if (result->isObjCClass()) { in checkInitMethod() [all …]
|
| H A D | SemaExprCXX.cpp | 1 //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 63 // Convert the nested-name-specifier into a type. in getInheritingConstructorName() 65 switch (NNS->getKind()) { in getInheritingConstructorName() 68 Type = QualType(NNS->getAsType(), 0); in getInheritingConstructorName() 72 // Strip off the last layer of the nested-name-specifier and build a in getInheritingConstructorName() 74 assert(NNS->getAsIdentifier() == &Name && "not a constructor name"); in getInheritingConstructorName() 76 ElaboratedTypeKeyword::None, NNS->getPrefix(), NNS->getAsIdentifier()); in getInheritingConstructorName() [all …]
|
| H A D | SemaLookup.cpp | 1 //===--------------------- SemaLookup.cpp - Name Lookup ------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file implements name lookup for C, C++, Objective-C, and 10 // Objective-C++. 12 //===----------------------------------------------------------------------===// 112 // both the using-directive and the nominated namespace. in visitScopeChain() 113 DeclContext *InnermostFileDC = InnermostFileScope->getEntity(); in visitScopeChain() 114 assert(InnermostFileDC && InnermostFileDC->isFileContext()); in visitScopeChain() 116 for (; S; S = S->getParent()) { in visitScopeChain() [all …]
|
| H A D | SemaExpr.cpp | 1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 73 // See if this is an auto-typed variable whose initializer we are parsing. in CanUseDecl() 79 if (FD->isDeleted()) in CanUseDecl() 84 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() && in CanUseDecl() 96 if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable && in CanUseDecl() 97 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable) in CanUseDecl() 108 if (const auto *A = D->getAttr<UnusedAttr>()) { in DiagnoseUnusedOfDecl() [all …]
|
| H A D | SemaOpenMP.cpp | 1 //===--- SemaOpenMP.cpp - Semantic Analysis for OpenMP constructs ---------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 55 //===----------------------------------------------------------------------===// 56 // Stack of data-sharing attributes for variables 57 //===----------------------------------------------------------------------===// 75 /// clauses and their data-sharing attributes. 102 /// User-defined allocator 180 /// get the data (loop counters etc.) about enclosing loop-based construct. [all …]
|
| H A D | SemaDecl.cpp | 1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 96 if (!AllowInvalidDecl && ND->isInvalidDecl()) in ValidateCandidate() 109 // An injected-class-name of a class template (specialization) is valid in ValidateCandidate() 110 // as a template or as a non-template. in ValidateCandidate() 113 if (!RD || !RD->isInjectedClassName()) in ValidateCandidate() 115 RD = cast<CXXRecordDecl>(RD->getDeclContext()); in ValidateCandidate() 116 return RD->getDescribedClassTemplate() || in ValidateCandidate() [all …]
|
| /freebsd/contrib/sendmail/cf/ |
| H A D | README | 9 To get started, you may want to look at tcpproto.mc (for TCP-only 11 mail host), or the generic-*.mc files as operating system-specific 30 ANTI-SPAM CONFIGURATION CONTROL 37 NON-SMTP BASED CONFIGURATIONS 51 +--------------------------+ 53 +--------------------------+ 57 You must pre-load "cf.m4": 70 or the -I flag (ditto), then ${CFDIR} can be in an arbitrary directory. 72 use -D_CF_DIR_=/path/to/cf/dir/ -- note the trailing slash! For example: 74 m4 -D_CF_DIR_=${CFDIR}/ ${CFDIR}/m4/cf.m4 config.mc > config.cf [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 1 //===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 268 /// placing fix-its. 284 /// A single-element cache based on the file ID. 292 // Check the single-element cache. 296 // It's not in the single-element cache; flush the cache if we have one. 329 /// The callback should also emit signature help as a side-effect, but only 340 /// Handles all type casts, including C-style cast, C++ casts, etc. [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 1 //===- ARMISelLowering.cpp - ARM DAG Lowering Implementation --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 122 #define DEBUG_TYPE "arm-isel" 131 ARMInterworking("arm-interworking", cl::Hidden, 136 "arm-promote-constant", cl::Hidden, 141 "arm-promote-constant-max-size", cl::Hidden, 145 "arm-promote-constant-max-total", cl::Hidden, 150 MVEMaxSupportedInterleaveFactor("mve-max-interleave-factor", cl::Hidden, [all …]
|
| /freebsd/share/dict/ |
| H A D | web2 | 50338 delay 67344 extra 99810 Jean-Christophe 99811 Jean-Pierre 130039 oe
|