Searched refs:Local (Results 26 - 50 of 118) sorted by relevance

12345

/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessingRecord.cpp142 Local = findLocalPreprocessedEntitiesInRange(Range); local
146 return std::make_pair(Local.first, Local.second);
153 return std::make_pair(Local.first, Local.second);
158 if (Local.first == Local.second)
163 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
/netbsd-current/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndexer.h57 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dxgettext-c-789 Local Variables:
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossExSubsection.h55 void addMapping(uint32_t Local, uint32_t Global);
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mips-elf/
H A Dtlslib-o32.s25 # Local Dynamic
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExplicitLocals.cpp62 static void checkFrameBase(WebAssemblyFunctionInfo &MFI, unsigned Local, argument
67 dbgs() << "Allocating local " << Local << "for VReg "
70 MFI.setFrameBaseLocal(Local);
231 auto Local = static_cast<unsigned>(MI.getOperand(1).getImm()); local
232 Reg2Local[Reg] = Local;
233 checkFrameBase(MFI, Local, Reg);
236 WebAssemblyDebugValueManager(&MI).replaceWithLocal(Local);
H A DWebAssemblyMachineFunctionInfo.h115 void setFrameBaseLocal(unsigned Local) { FrameBaseLocal = Local; } argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp54 if (Sym->getScope() == Scope::Local)
211 if (Sym->hasName() && Sym->getScope() != Scope::Local) {
393 if (Sym->getScope() == Scope::Local)
404 if (TargetSym.getScope() != Scope::Local) {
440 for (auto *Local : LocalDepsForName) {
441 assert(Local->getScope() == Scope::Local &&
443 auto LocalNamedDepsItr = LocalDeps.find(Local);
473 if (Sym->getScope() == Scope::Local) {
479 if (TargetSym.getScope() != Scope::Local)
517 auto *Local = KV.first; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dblx-local-thumb.d1 #name: Local BLX instructions in Thumb mode.
H A Dblx-local.d1 #name: Local BLX instructions
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-csky/
H A Dtls-ld-v1.d1 #name: TLS Local Dynamic link test (C-SKY v1)
H A Dtls-ld.d1 #name: TLS Local Dynamic link test
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/tic54x/
H A Dlabels.s3 * Local labels are undefined/reset in one of four ways:
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExternalASTSource.h497 SmallVector<T, LocalStorage> Local; member in class:clang::LazyVector
534 return Self->Local.begin()[this->I];
548 return iterator(this, Local.size());
552 Local.push_back(LocalValue);
566 Local.erase(&*From, &*To);
/netbsd-current/usr.bin/make/unit-tests/
H A Dposix1.mk52 # Local variables: regular forms, D/F forms and suffix substitution.
66 "Local variables\n\
86 "Local variable substitutions\n\
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DEvalEmitter.cpp51 Scope::Local EvalEmitter::createLocal(Descriptor *D) {
238 for (auto &Local : Descriptors[I]) {
239 auto It = Locals.find(Local.Offset);
H A DByteCodeEmitter.cpp80 Scope::Local ByteCodeEmitter::createLocal(Descriptor *D) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DAMDGPU.h35 Local = 3, enumerator in enum:clang::targets::final::AddrSpace
102 if (AddrSpace == Private || AddrSpace == Local)
375 } else if (AddressSpace == Local) {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Index/
H A DIndexSymbol.h90 Local = 1 << 7, member in class:clang::index::SymbolProperty
/netbsd-current/external/apache2/llvm/lib/libLLVMTransformsUtils/
H A DMakefile45 Local.cpp \
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DMetadata.h370 static LocalAsMetadata *getLocal(Value *Local) { argument
371 return cast<LocalAsMetadata>(get(Local));
380 static LocalAsMetadata *getLocalIfExists(Value *Local) { argument
381 return cast_or_null<LocalAsMetadata>(getIfExists(Local));
439 LocalAsMetadata(Value *Local) argument
440 : ValueAsMetadata(LocalAsMetadataKind, Local) {
441 assert(!isa<Constant>(Local) && "Expected local value");
445 static LocalAsMetadata *get(Value *Local) { argument
446 return ValueAsMetadata::getLocal(Local);
449 static LocalAsMetadata *getIfExists(Value *Local) { argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h288 const LocalAsMetadata *Local);
289 void EnumerateFunctionLocalMetadata(unsigned F, const LocalAsMetadata *Local);
H A DValueEnumerator.cpp450 // Local metadata is enumerated during function-incorporation, but
625 const Function &F, const LocalAsMetadata *Local) {
626 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); local
747 unsigned F, const LocalAsMetadata *Local) {
751 MDIndex &Index = MetadataMap[Local];
757 MDs.push_back(Local);
761 EnumerateValue(Local->getValue());
1087 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) {
1089 FnLocalMDVector.push_back(Local);
1093 if (auto *Local
624 EnumerateFunctionLocalMetadata( const Function &F, const LocalAsMetadata *Local) argument
746 EnumerateFunctionLocalMetadata( unsigned F, const LocalAsMetadata *Local) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DAPValue.cpp43 : Ptr(P ? cast<ValueDecl>(P->getCanonicalDecl()) : nullptr), Local{I, V} {}
45 : Ptr(P), Local{I, V} {}
110 : Local.CallIndex;
114 return (is<TypeInfoLValue>() || is<DynamicAllocLValue>()) ? 0 : Local.Version;
131 ID.AddInteger(Local.CallIndex);
132 ID.AddInteger(Local.Version);
142 return LHS.Local.CallIndex == RHS.Local.CallIndex &&
143 LHS.Local.Version == RHS.Local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp376 COFFSymbol *Local = nullptr; local
390 Local = WeakDefault;
407 Local = Sym;
410 if (Local) {
411 Local->Data.Value = getSymbolValue(MCSym, Layout);
414 Local->Data.Type = SymbolCOFF.getType();
415 Local->Data.StorageClass = SymbolCOFF.getClass();
418 if (Local->Data.StorageClass == COFF::IMAGE_SYM_CLASS_NULL) {
422 Local->Data.StorageClass = IsExternal ? COFF::IMAGE_SYM_CLASS_EXTERNAL

Completed in 305 milliseconds

12345