| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | ByteCodeExprGen.h | 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 313 void addExtended(const Scope::Local &Local) override { in addExtended() argument 324 void addExtended(const Scope::Local &Local) override { in addExtended() argument [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()
|
| H A D | Function.h | 35 struct Local { struct 42 using LocalVectorTy = llvm::SmallVector<Local, 8>; argument
|
| /freebsd-13.1/contrib/bmake/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
|
| /freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/ |
| H A D | get.ipv6remote.pl | 52 my %Local; 71 $Local{$addr} = 1; 87 if (/bytes from (.*), / and not defined $Local{$1}) {
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/netbsd-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)
|
| /freebsd-13.1/contrib/llvm-project/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 …]
|
| /freebsd-13.1/contrib/llvm-project/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
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmTypeCheck.cpp | 105 auto Local = static_cast<size_t>(Inst.getOperand(0).getImm()); in getLocal() local 106 if (Local >= LocalTypes.size()) in getLocal() 108 std::to_string(Local)); in getLocal() 109 Type = LocalTypes[Local]; in getLocal()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExternalASTSource.h | 495 SmallVector<T, LocalStorage> Local; 532 return Self->Local.begin()[this->I]; 546 return iterator(this, Local.size()); 550 Local.push_back(LocalValue); 564 Local.erase(&*From, &*To);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | DefineExternalSectionStartAndEndSymbols.h | 58 Scope::Local, false); in operator() 65 Scope::Local, false); in operator()
|
| /freebsd-13.1/contrib/llvm-project/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 ==()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/timer/ |
| H A D | samsung,exynos4210-mct.yaml | 38 4: Local Timer Interrupt 0 39 5: Local Timer Interrupt 1 42 i: Local Timer Interrupt n
|
| H A D | sifive,clint.yaml | 7 title: SiFive Core Local Interruptor 15 Core Local Interruptor (CLINT) for M-mode timer and M-mode inter-processor
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | mediatek,smi-larb.txt | 1 SMI (Smart Multimedia Interface) Local Arbiter 22 - "gals": the clock for GALS(Global Async Local Sync).
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 637 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 638 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata() 759 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 763 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata() 769 MDs.push_back(Local); in EnumerateFunctionLocalMetadata() 773 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata() 1107 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) { in incorporateFunction() local 1109 FnLocalMDVector.push_back(Local); in incorporateFunction() 1113 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local 1116 FnLocalMDVector.push_back(Local); in incorporateFunction()
|