/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
H A D | ByteCodeExprGen.h | 219 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals; 245 void add(const Scope::Local &Local, bool IsExtended) { in add() argument 247 this->addExtended(Local); in add() 249 this->addLocal(Local); in add() 252 virtual void addLocal(const Scope::Local &Local) { in addLocal() argument 254 this->Parent->addLocal(Local); in addLocal() 257 virtual void addExtended(const Scope::Local &Local) { in addExtended() argument 259 this->Parent->addExtended(Local); in addExtended() 288 void addLocal(const Scope::Local &Local) override { in addLocal() argument 294 this->Ctx->Descriptors[*Idx].emplace_back(Local); in addLocal() [all …]
|
H A D | ByteCodeExprGen.cpp | 34 void addExtended(const Scope::Local &Local) override { in addExtended() argument 35 return this->addLocal(Local); in addExtended() 428 Scope::Local Local = this->createLocal(D); in allocateLocalPrimitive() local 430 Locals.insert({VD, Local}); in allocateLocalPrimitive() 431 VarScope->add(Local, IsExtended); in allocateLocalPrimitive() 432 return Local.Offset; in allocateLocalPrimitive() 456 Scope::Local Local = this->createLocal(D); in allocateLocal() local 458 Locals.insert({Key, Local}); in allocateLocal() 459 VarScope->add(Local, IsExtended); in allocateLocal() 460 return Local.Offset; in allocateLocal()
|
H A D | ByteCodeEmitter.h | 36 using Local = Scope::Local; variable 69 Local createLocal(Descriptor *D); 74 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
|
H A D | EvalEmitter.h | 40 using Local = Scope::Local; variable 71 Local createLocal(Descriptor *D); 81 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
|
H A D | InterpFrame.cpp | 29 for (auto &Local : Scope.locals()) { in InterpFrame() local 30 Block *B = new (localBlock(Local.Offset)) Block(Local.Desc); in InterpFrame() 46 for (auto &Local : Func->getScope(Idx).locals()) { in destroy() local 47 S.deallocate(reinterpret_cast<Block *>(localBlock(Local.Offset))); in destroy()
|
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/ |
H A D | config.sdf | 11 H2: Local Directory Service 18 !import "config_local.png"; align="center"; title="Local service via slapd(8) configuration" 19 FT[align="Center"] Figure 3.1: Local service configuration. 27 H2: Local Directory Service with Referrals 35 !import "config_ref.png"; align="center"; title="Local service with referrals" 36 FT[align="Center"] Figure 3.2: Local service with referrals 60 H2: Distributed Local Directory Service 68 !import "config_dist.gif"; align="center"; title="Distributed Local Directory Services" 69 FT[align="Center"] Figure 3.4: Distributed Local Directory Services
|
/netbsd-src/usr.bin/make/unit-tests/ |
H A D | posix1.exp | 11 Local variables 23 Local variable substitutions 51 Local variables 63 Local variable substitutions 97 Local variables 109 Local variable substitutions 144 Local variables 156 Local variable substitutions
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/ |
H A D | DIPrinter.cpp | 347 for (const DILocal &Local : Locals) { in print() local 349 {{"FunctionName", Local.FunctionName}, in print() 350 {"Name", Local.Name}, in print() 351 {"DeclFile", Local.DeclFile}, in print() 352 {"DeclLine", int64_t(Local.DeclLine)}, in print() 353 {"Size", Local.Size ? toHex(*Local.Size) : ""}, in print() 354 {"TagOffset", Local.TagOffset ? toHex(*Local.TagOffset) : ""}}); in print() 355 if (Local.FrameOffset) in print() 356 FrameObject["FrameOffset"] = *Local.FrameOffset; in print()
|
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
H A D | local.cc | 13 class Local { in foobar() class 22 Local l; in foobar() 23 static Local l1; in foobar()
|
/netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
H A D | local.cc | 13 class Local { in foobar() class 22 Local l; in foobar() 23 static Local l1; in foobar()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
H A D | ObjectLinkingLayer.cpp | 54 if (Sym->getScope() == Scope::Local) in scanLinkGraph() 211 if (Sym->hasName() && Sym->getScope() != Scope::Local) { in notifyResolved() 393 if (Sym->getScope() == Scope::Local) in computeNamedSymbolDependencies() 404 if (TargetSym.getScope() != Scope::Local) { in computeNamedSymbolDependencies() 440 for (auto *Local : LocalDepsForName) { in computeNamedSymbolDependencies() local 441 assert(Local->getScope() == Scope::Local && in computeNamedSymbolDependencies() 443 auto LocalNamedDepsItr = LocalDeps.find(Local); in computeNamedSymbolDependencies() 473 if (Sym->getScope() == Scope::Local) { in computeLocalDeps() 479 if (TargetSym.getScope() != Scope::Local) in computeLocalDeps() 517 auto *Local = KV.first; in computeLocalDeps() local [all …]
|
/netbsd-src/external/gpl2/xcvs/dist/maint-aux/ |
H A D | srclist.txt | 3 # In the "Local Modifications" fields below, "I" means the source files were 14 Imported files CVS Local 28 Imported files CVS Local 45 Imported files CVS Local 65 Imported files CVS Local
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
H A D | PreprocessingRecord.cpp | 142 Local = findLocalPreprocessedEntitiesInRange(Range); in getPreprocessedEntitiesInRangeSlow() local 146 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow() 153 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow() 158 if (Local.first == Local.second) in getPreprocessedEntitiesInRangeSlow() 163 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second); in getPreprocessedEntitiesInRangeSlow()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | GlobalValue.h | 192 Local, enumerator 217 if (A == UnnamedAddr::Local || B == UnnamedAddr::Local) in getMinUnnamedAddr() 218 return UnnamedAddr::Local; in getMinUnnamedAddr() 280 void setDSOLocal(bool Local) { IsDSOLocal = Local; } in setDSOLocal() argument
|
H A D | Metadata.h | 370 static LocalAsMetadata *getLocal(Value *Local) { in getLocal() argument 371 return cast<LocalAsMetadata>(get(Local)); in getLocal() 380 static LocalAsMetadata *getLocalIfExists(Value *Local) { in getLocalIfExists() argument 381 return cast_or_null<LocalAsMetadata>(getIfExists(Local)); in getLocalIfExists() 439 LocalAsMetadata(Value *Local) in LocalAsMetadata() argument 440 : ValueAsMetadata(LocalAsMetadataKind, Local) { in LocalAsMetadata() 441 assert(!isa<Constant>(Local) && "Expected local value"); in LocalAsMetadata() 445 static LocalAsMetadata *get(Value *Local) { in get() argument 446 return ValueAsMetadata::getLocal(Local); in get() 449 static LocalAsMetadata *getIfExists(Value *Local) { in getIfExists() argument [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
H A D | AMDGPU.cpp | 44 Local, // opencl_local 52 Local, // cuda_shared 56 Local, // sycl_local 66 Local, // opencl_local 74 Local, // cuda_shared
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyExplicitLocals.cpp | 62 static void checkFrameBase(WebAssemblyFunctionInfo &MFI, unsigned Local, in checkFrameBase() argument 67 dbgs() << "Allocating local " << Local << "for VReg " in checkFrameBase() 70 MFI.setFrameBaseLocal(Local); in checkFrameBase() 231 auto Local = static_cast<unsigned>(MI.getOperand(1).getImm()); in runOnMachineFunction() local 232 Reg2Local[Reg] = Local; in runOnMachineFunction() 233 checkFrameBase(MFI, Local, Reg); in runOnMachineFunction() 236 WebAssemblyDebugValueManager(&MI).replaceWithLocal(Local); in runOnMachineFunction()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | ExtractGV.cpp | 26 bool Local = GV.hasLocalLinkage(); in makeVisible() local 27 if (Local || Delete) { in makeVisible() 29 if (Local) in makeVisible()
|
/netbsd-src/tests/lib/librumphijack/ |
H A D | netstat.expout | 2 Proto Recv-Q Send-Q Local Address Foreign Address State 5 Proto Recv-Q Send-Q Local Address Foreign Address (state)
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugCrossExSubsection.cpp | 34 void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local, in addMapping() argument 36 Mappings[Local] = Global; in addMapping()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | ExternalASTSource.h | 497 SmallVector<T, LocalStorage> Local; 534 return Self->Local.begin()[this->I]; 548 return iterator(this, Local.size()); 552 Local.push_back(LocalValue); 566 Local.erase(&*From, &*To);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
H A D | DefineExternalSectionStartAndEndSymbols.h | 58 Scope::Local, false); in operator() 65 Scope::Local, false); in operator()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | APValue.cpp | 43 : Ptr(P ? cast<ValueDecl>(P->getCanonicalDecl()) : nullptr), Local{I, V} {} in LValueBase() 45 : Ptr(P), Local{I, V} {} in LValueBase() 110 : Local.CallIndex; in getCallIndex() 114 return (is<TypeInfoLValue>() || is<DynamicAllocLValue>()) ? 0 : Local.Version; in getVersion() 131 ID.AddInteger(Local.CallIndex); in Profile() 132 ID.AddInteger(Local.Version); in Profile() 142 return LHS.Local.CallIndex == RHS.Local.CallIndex && in operator ==() 143 LHS.Local.Version == RHS.Local.Version; in operator ==()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.cpp | 625 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 626 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata() 747 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 751 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata() 757 MDs.push_back(Local); in EnumerateFunctionLocalMetadata() 761 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata() 1087 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) { in incorporateFunction() local 1089 FnLocalMDVector.push_back(Local); in incorporateFunction() 1093 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local 1096 FnLocalMDVector.push_back(Local); in incorporateFunction()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
H A D | CIndexer.h | 57 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
|