Home
last modified time | relevance | path

Searched refs:Ref (Results 1 – 25 of 161) sorted by relevance

1234567

/netbsd-src/external/bsd/flex/dist/doc/
H A Dflex.info57 Ref: Definitions Section-Footnote-118017
62 Ref: case and character ranges27883
68 Ref: Scanning Strings66221
75 Ref: option-header78525
76 Ref: option-outfile79239
77 Ref: option-stdout79564
79 Ref: option-case-insensitive80788
80 Ref: option-lex-compat81221
81 Ref: option-batch81753
82 Ref: option-interactive82272
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp54 void Dumper::printEntry(const ResourceEntryRef &Ref) { in printEntry() argument
55 if (Ref.checkTypeString()) { in printEntry()
56 auto NarrowStr = stripUTF16(Ref.getTypeString()); in printEntry()
61 printResourceTypeName(Ref.getTypeID(), OS); in printEntry()
65 if (Ref.checkNameString()) { in printEntry()
66 auto NarrowStr = stripUTF16(Ref.getNameString()); in printEntry()
69 SW.printNumber("Resource name (int)", Ref.getNameID()); in printEntry()
71 SW.printNumber("Data version", Ref.getDataVersion()); in printEntry()
72 SW.printHex("Memory flags", Ref.getMemoryFlags()); in printEntry()
73 SW.printNumber("Language ID", Ref.getLanguage()); in printEntry()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DTrackingMDRef.h107 TrackingMDRef Ref; variable
111 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {} in TypedTrackingMDRef()
113 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {} in TypedTrackingMDRef()
114 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {} in TypedTrackingMDRef()
117 Ref = std::move(X.Ref);
122 Ref = X.Ref;
126 T *get() const { return (T *)Ref.get(); } in get()
131 bool operator==(const TypedTrackingMDRef &X) const { return Ref == X.Ref; }
132 bool operator!=(const TypedTrackingMDRef &X) const { return Ref != X.Ref; }
134 void reset() { Ref.reset(); } in reset()
[all …]
H A DMetadata.h232 static bool track(void *Ref, Metadata &MD, Metadata &Owner) { in track() argument
233 return track(Ref, MD, &Owner); in track()
241 static bool track(void *Ref, Metadata &MD, MetadataAsValue &Owner) { in track() argument
242 return track(Ref, MD, &Owner); in track()
249 static void untrack(void *Ref, Metadata &MD);
262 static bool retrack(void *Ref, Metadata &MD, void *New);
273 static bool track(void *Ref, Metadata &MD, OwnerTy Owner);
317 void addRef(void *Ref, OwnerTy Owner);
318 void dropRef(void *Ref);
319 void moveRef(void *Ref, void *New, const Metadata &MD);
[all …]
/netbsd-src/external/gpl2/groff/dist/doc/
H A Dgroff37 Ref: What Is groff?-Footnote-14381
52 Ref: Invocation Examples-Footnote-132598
57 Ref: Basics-Footnote-139403
58 Ref: Basics-Footnote-239497
78 Ref: Man options-Footnote-152432
90 Ref: General ms Structure-Footnote-171843
111 Ref: ms Strings and Special Characters-Footnote-1108292
129 Ref: Measurements-Footnote-1125102
137 Ref: Request and Macro Arguments-Footnote-1137744
138 Ref: Request and Macro Arguments-Footnote-2137872
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeHashing.cpp43 for (const auto &Ref : Refs) { in hashType() local
45 uint32_t PreLen = Ref.Offset - Off; in hashType()
48 auto Prev = (Ref.Kind == TiRefKind::IndexRef) ? PreviousIds : PreviousTypes; in hashType()
50 auto RefData = RecordData.slice(Ref.Offset, Ref.Count * sizeof(TypeIndex)); in hashType()
54 reinterpret_cast<const TypeIndex *>(RefData.data()), Ref.Count); in hashType()
72 Off = Ref.Offset + Ref.Count * sizeof(TypeIndex); in hashType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp102 const coff_symbol_type *COFFObjectFile::toSymb(DataRefImpl Ref) const { in toSymb()
104 reinterpret_cast<const coff_symbol_type *>(Ref.p); in toSymb()
119 const coff_section *COFFObjectFile::toSec(DataRefImpl Ref) const { in toSec()
120 const coff_section *Addr = reinterpret_cast<const coff_section*>(Ref.p); in toSec()
136 void COFFObjectFile::moveSymbolNext(DataRefImpl &Ref) const { in moveSymbolNext()
139 const coff_symbol16 *Symb = toSymb<coff_symbol16>(Ref); in moveSymbolNext()
141 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); in moveSymbolNext()
143 const coff_symbol32 *Symb = toSymb<coff_symbol32>(Ref); in moveSymbolNext()
145 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); in moveSymbolNext()
151 Expected<StringRef> COFFObjectFile::getSymbolName(DataRefImpl Ref) const { in getSymbolName()
[all …]
H A DWasmObjectFile.cpp1480 DataRefImpl Ref; in symbol_begin() local
1481 Ref.d.a = 1; // Arbitrary non-zero value so that Ref.p is non-null in symbol_begin()
1482 Ref.d.b = 0; // Symbol index in symbol_begin()
1483 return BasicSymbolRef(Ref, this); in symbol_begin()
1487 DataRefImpl Ref; in symbol_end() local
1488 Ref.d.a = 1; // Arbitrary non-zero value so that Ref.p is non-null in symbol_end()
1489 Ref.d.b = Symbols.size(); // Symbol index in symbol_end()
1490 return BasicSymbolRef(Ref, this); in symbol_end()
1583 DataRefImpl Ref; in getSymbolSection() local
1584 Ref.d.a = getSymbolSectionIdImpl(Sym); in getSymbolSection()
[all …]
H A DObjectFile.cpp57 Expected<uint64_t> ObjectFile::getSymbolValue(DataRefImpl Ref) const { in getSymbolValue()
58 if (Expected<uint32_t> FlagsOrErr = getSymbolFlags(Ref)) { in getSymbolValue()
62 return getCommonSymbolSize(Ref); in getSymbolValue()
66 return getSymbolValueImpl(Ref); in getSymbolValue()
H A DXCOFFObjectFile.cpp101 XCOFFObjectFile::toSection32(DataRefImpl Ref) const { in toSection32()
104 checkSectionAddress(Ref.p, getSectionHeaderTableAddress()); in toSection32()
106 return viewAs<XCOFFSectionHeader32>(Ref.p); in toSection32()
110 XCOFFObjectFile::toSection64(DataRefImpl Ref) const { in toSection64()
113 checkSectionAddress(Ref.p, getSectionHeaderTableAddress()); in toSection64()
115 return viewAs<XCOFFSectionHeader64>(Ref.p); in toSection64()
118 const XCOFFSymbolEntry *XCOFFObjectFile::toSymbolEntry(DataRefImpl Ref) const { in toSymbolEntry()
120 assert(Ref.p != 0 && "Symbol table pointer can not be nullptr!"); in toSymbolEntry()
122 checkSymbolEntryPointer(Ref.p); in toSymbolEntry()
124 auto SymEntPtr = viewAs<XCOFFSymbolEntry>(Ref.p); in toSymbolEntry()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDirectoryEntry.h53 friend llvm::hash_code hash_value(DirectoryEntryRef Ref) { in hash_value() argument
54 return llvm::hash_value(&Ref.getDirEntry()); in hash_value()
149 MapEntryOptionalStorage &operator=(RefTy Ref) {
150 MaybeRef = Ref;
176 OptionalStorage &operator=(clang::DirectoryEntryRef Ref) {
177 StorageImpl::operator=(Ref);
263 OptionalDirectoryEntryRefDegradesToDirectoryEntryPtr(DirectoryEntryRef Ref)
264 : Optional<DirectoryEntryRef>(Ref) {}
272 OptionalDirectoryEntryRefDegradesToDirectoryEntryPtr &operator=(DirectoryEntryRef Ref) {
273 Optional<DirectoryEntryRef>::operator=(Ref);
H A DFileEntry.h99 friend llvm::hash_code hash_value(FileEntryRef Ref) { in hash_value() argument
100 return llvm::hash_value(&Ref.getFileEntry()); in hash_value()
212 OptionalStorage &operator=(clang::FileEntryRef Ref) {
213 StorageImpl::operator=(Ref);
294 OptionalFileEntryRefDegradesToFileEntryPtr(FileEntryRef Ref)
295 : Optional<FileEntryRef>(Ref) {}
303 OptionalFileEntryRefDegradesToFileEntryPtr &operator=(FileEntryRef Ref) {
304 Optional<FileEntryRef>::operator=(Ref);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DBinaryStreamWriter.cpp18 BinaryStreamWriter::BinaryStreamWriter(WritableBinaryStreamRef Ref) in BinaryStreamWriter() argument
19 : Stream(Ref) {} in BinaryStreamWriter()
61 Error BinaryStreamWriter::writeStreamRef(BinaryStreamRef Ref) { in writeStreamRef() argument
62 return writeStreamRef(Ref, Ref.getLength()); in writeStreamRef()
65 Error BinaryStreamWriter::writeStreamRef(BinaryStreamRef Ref, uint32_t Length) { in writeStreamRef() argument
66 BinaryStreamReader SrcReader(Ref.slice(0, Length)); in writeStreamRef()
H A DBinaryStreamReader.cpp18 BinaryStreamReader::BinaryStreamReader(BinaryStreamRef Ref) : Stream(Ref) {} in BinaryStreamReader() argument
130 Error BinaryStreamReader::readStreamRef(BinaryStreamRef &Ref) { in readStreamRef() argument
131 return readStreamRef(Ref, bytesRemaining()); in readStreamRef()
134 Error BinaryStreamReader::readStreamRef(BinaryStreamRef &Ref, uint32_t Length) { in readStreamRef() argument
137 Ref = Stream.slice(Offset, Length); in readStreamRef()
142 Error BinaryStreamReader::readSubstream(BinarySubstreamRef &Ref, in readSubstream() argument
144 Ref.Offset = getOffset(); in readSubstream()
145 return readStreamRef(Ref.StreamData, Length); in readSubstream()
H A DRegex.cpp189 StringRef Ref = Repl.slice(0, Repl.find_first_not_of("0123456789")); in sub() local
190 Repl = Repl.substr(Ref.size()); in sub()
193 if (!Ref.getAsInteger(10, RefValue) && in sub()
197 *Error = ("invalid backreference string '" + Twine(Ref) + "'").str(); in sub()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFGraph.h271 Ref = 0x0002, // 10, Reference enumerator
321 return type(B) == Ref; in contains()
502 Ref_struct Ref; member
522 return *Ref.Op; in getOp()
529 return Ref.RD; in getReachingDef()
532 Ref.RD = RD; in setReachingDef()
536 return Ref.Sib; in getSibling()
539 Ref.Sib = Sib; in setSibling()
543 assert(getType() == NodeAttrs::Ref); in isUse()
548 assert(getType() == NodeAttrs::Ref); in isDef()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSmallString.h74 for (const StringRef &Ref : Refs) in append() local
75 SizeNeeded += Ref.size(); in append()
78 for (const StringRef &Ref : Refs) { in append() local
79 this->uninitialized_copy(Ref.begin(), Ref.end(), CurEnd); in append()
80 CurEnd += Ref.size(); in append()
/netbsd-src/tests/ipf/expected/
H A Dp326 Dev.0. Group 1020 Ref 2 Flags 0x8000
28 Dev.0. Group 1030 Ref 2 Flags 0x8000
30 Dev.0. Group 2020 Ref 3 Flags 0x4000
32 Dev.0. Group 2040 Ref 2 Flags 0x4000
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DMetadata.cpp154 bool MetadataTracking::track(void *Ref, Metadata &MD, OwnerTy Owner) { in track() argument
155 assert(Ref && "Expected live reference"); in track()
156 assert((Owner || *static_cast<Metadata **>(Ref) == &MD) && in track()
159 R->addRef(Ref, Owner); in track()
165 PH->Use = static_cast<Metadata **>(Ref); in track()
171 void MetadataTracking::untrack(void *Ref, Metadata &MD) { in untrack() argument
172 assert(Ref && "Expected live reference"); in untrack()
174 R->dropRef(Ref); in untrack()
179 bool MetadataTracking::retrack(void *Ref, Metadata &MD, void *New) { in retrack() argument
180 assert(Ref && "Expected live reference"); in retrack()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DTypeReferenceTracker.cpp110 for (const auto &Ref : DepList) { in addReferencedTypes() local
113 RecData.drop_front(Ref.Offset).take_front(4 * Ref.Count); in addReferencedTypes()
121 addOneTypeRef(Ref.Kind, RefTI); in addReferencedTypes()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DBinaryStreamReader.h34 explicit BinaryStreamReader(BinaryStreamRef Ref);
140 Error readStreamRef(BinaryStreamRef &Ref);
149 Error readStreamRef(BinaryStreamRef &Ref, uint32_t Length);
158 Error readSubstream(BinarySubstreamRef &Ref, uint32_t Length);
H A DBinaryStreamWriter.h34 explicit BinaryStreamWriter(WritableBinaryStreamRef Ref);
119 Error writeStreamRef(BinaryStreamRef Ref);
127 Error writeStreamRef(BinaryStreamRef Ref, uint32_t Size);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCXX.cpp141 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl)); in TryEmitBaseDestructorAsAlias() local
142 llvm::Constant *Aliasee = Ref; in TryEmitBaseDestructorAsAlias()
143 if (Ref->getType() != AliasType) in TryEmitBaseDestructorAsAlias()
144 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType); in TryEmitBaseDestructorAsAlias()
173 if (Ref->isDeclarationForLinker()) in TryEmitBaseDestructorAsAlias()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DBitTracker.h160 Ref // Bit value same as the one described in RefI. enumerator
196 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {} in BitValue()
201 if (Type == Ref && !(RefI == V.RefI))
231 if (Type == Ref && RefI == Self) // Bottom.meet(V) = Bottom (i.e. This) in meet()
247 Type = Ref; in meet()
272 if (V.Type != Ref) in ref()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DASTUtils.cpp84 if (auto *Ref = dyn_cast<DeclRefExpr>(E)) { in isASafeCallArg() local
85 if (auto *D = dyn_cast_or_null<VarDecl>(Ref->getFoundDecl())) { in isASafeCallArg()

1234567