Home
last modified time | relevance | path

Searched refs:External (Results 1 – 25 of 120) sorted by relevance

12345

/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/
H A DNodes.td26 def UnqualifiedId : External<Tree> {}
29 def List : External<Tree> {}
30 def DeclaratorList : External<List> {}
31 def ParameterDeclarationList : External<List> {}
32 def CallArguments : External<List> {}
33 def NestedNameSpecifier : External<List> {}
41 def UnknownExpression : External<Expression> {}
42 def UnaryOperatorExpression : External<Tree> {}
43 def PrefixUnaryOperatorExpression : External<UnaryOperatorExpression> {}
44 def PostfixUnaryOperatorExpression : External<UnaryOperatorExpression> {}
[all …]
H A DSyntax.td48 class External<NodeType base_> : NodeType { let base = base_; }
51 def Node : External<?> {}
52 def Leaf : External<Node> {}
53 def Tree : External<Node> {}
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DPostOrderIterator.h58 template<class SetType, bool External>
219 bool External = false>
220 struct ipo_iterator : public po_iterator<Inverse<T>, SetType, External> {
221 ipo_iterator(const po_iterator<Inverse<T>, SetType, External> &V) : in ipo_iterator()
222 po_iterator<Inverse<T>, SetType, External> (V) {} in ipo_iterator()
H A DDepthFirstIterator.h49 template<class SetType, bool External> // Non-external set
260 bool External = false>
261 struct idf_iterator : public df_iterator<Inverse<T>, SetTy, External> {
262 idf_iterator(const df_iterator<Inverse<T>, SetTy, External> &V) in idf_iterator()
263 : df_iterator<Inverse<T>, SetTy, External>(V) {} in idf_iterator()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseAST.cpp144 ExternalASTSource *External = S.getASTContext().getExternalSource(); in ParseAST() local
145 if (External) in ParseAST()
146 External->StartTranslationUnit(Consumer); in ParseAST()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DRecordLayoutBuilder.cpp689 ExternalLayout External; member in __anon28bd2e0c0111::ItaniumRecordLayoutBuilder
1216 HasExternalLayout = External.getExternalVBaseOffset(Base->Class, Offset); in LayoutBase()
1218 HasExternalLayout = External.getExternalNVBaseOffset(Base->Class, Offset); in LayoutBase()
1358 RD, External.Size, External.Align, External.FieldOffsets, in InitializeLayout()
1359 External.BaseOffsets, External.VirtualBaseOffsets); in InitializeLayout()
1363 if (External.Align > 0) { in InitializeLayout()
1364 Alignment = Context.toCharUnitsFromBits(External.Align); in InitializeLayout()
1365 PreferredAlignment = Context.toCharUnitsFromBits(External.Align); in InitializeLayout()
2174 if (InferAlignment && External.Size < RoundedSize) { in FinishLayout()
2179 setSize(External.Size); in FinishLayout()
[all …]
/openbsd-src/gnu/llvm/llvm/docs/
H A DTestSuiteGuide.md113 - `External/`
118 See [External Suites](#external-suites).
219 `External` directory (such as `External/SPEC/README`)
245 Warning: 'test-suite :: External/SPEC/CINT2006/403.gcc/403.gcc.test' has No metrics!
300 External Suites
303 External suites such as SPEC can be enabled by either
309 `test-suite/External/SPEC/README`.
357 Cross Compilation and External Devices
H A DTestSuiteMakefileGuide.rst62 Configuring External Tests
65 In order to run the External tests in the ``test-suite`` module, you
69 missing or neglected, the External tests won't work.
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp326 SymbolNameSet Internal, External; member
349 for (auto &ExternalDep : BID.External) in operator []()
350 BTDCacheVal.External.insert(ExternalDep); in operator []()
381 BIDCacheVal.External.insert(getInternedName(Tgt)); in getBlockImmediateDeps()
464 if (SymDeps.External.empty() && SymDeps.Internal.empty()) in computeNamedSymbolDependencies()
468 if (!SymDeps.External.empty()) in computeNamedSymbolDependencies()
469 ExternalNamedSymbolDeps[SymName] = SymDeps.External; in computeNamedSymbolDependencies()
488 for (auto &S : BDeps.External) in computeNamedSymbolDependencies()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DHeaderSearch.cpp62 HeaderFileInfo::getControllingMacro(ExternalPreprocessorSource *External) { in getControllingMacro() argument
65 assert(External && "We must have an external source if we have a " in getControllingMacro()
67 External->updateOutOfDateIdentifier( in getControllingMacro()
73 if (!ControllingMacroID || !External) in getControllingMacro()
76 ControllingMacro = External->GetIdentifier(ControllingMacroID); in getControllingMacro()
1294 assert(OtherHFI.External && "expected to merge external HFI"); in mergeHeaderFileInfo()
1306 HFI.External = (!HFI.IsValid || HFI.External); in mergeHeaderFileInfo()
1326 if (ExternalHFI.External) in getFileInfo()
1334 HFI->External = false; in getFileInfo()
1352 if (!WantExternal && (!HFI->IsValid || HFI->External)) in getExistingFileInfo()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DInternalize.h41 bool External = false; member
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DInternalize.cpp140 if (ComdatMap.lookup(C).External) in maybeInternalize()
183 Info.External = true; in checkComdat()
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Dtic4xcoff.sc57 EXT0 : org = 0x0000000, len = 0x800000 /* External address bus. */
63 EXT1 : org = 0x080a000, len = 0x7f6000 /* External address bus. */
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Dtic4xcoff.sc57 EXT0 : org = 0x0000000, len = 0x800000 /* External address bus. */
63 EXT1 : org = 0x080a000, len = 0x7f6000 /* External address bus. */
/openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/
H A DThreadingSupportAPI.rst21 External Threading API and the ``<__external_threading>`` header
33 External Threading Library
/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DHeaderSearch.h75 unsigned External : 1; member
122 External(false), isModuleHeader(false), isCompilingModuleHeader(false), in HeaderFileInfo()
128 getControllingMacro(ExternalPreprocessorSource *External);
/openbsd-src/gnu/llvm/llvm/docs/tutorial/
H A Dindex.rst34 External Tutorials
/openbsd-src/gnu/llvm/llvm/
H A D.gitignore41 # External projects that are tracked independently.
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctions.def1 //===- FuzzerExtFunctions.def - External functions --------------*- C++ -* ===//
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dstr-1t.fin79 External EXTERNAL
/openbsd-src/gnu/llvm/llvm/include/llvm/LTO/
H A DLTO.h379 External = -2u, enumerator
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DMirrors.pm590 eval { require Net::Ping::External }
/openbsd-src/gnu/llvm/clang/docs/
H A DExternalClangExamples.rst2 External Clang Examples
/openbsd-src/sys/dev/microcode/aic7xxx/
H A Daic7xxx.reg487 field EXT_BRDCTL 0x10 /* External Board control */
488 field SEEPROM 0x08 /* External serial eeprom logic */
564 field XCVR 0x01 /* External transceiver active */
699 field EXTREQLCK 0x10 /* External Request Lock */
702 field RAMPS 0x04 /* External SCB RAM Present */
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DLTO.cpp583 GlobalRes.Partition = GlobalResolution::External; in addModuleToGlobalRes()
594 GlobalRes.Partition = GlobalResolution::External; in addModuleToGlobalRes()
1154 R.second.Partition != GlobalResolution::External) in runRegularLTO()
1550 if (Res.second.Partition != GlobalResolution::External || in runThinLTO()

12345