Searched refs:tell (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp67 uint64_t FileWriter::tell() {
68 return OS.tell();
72 off_t Offset = OS.tell();
H A DFunctionInfo.cpp102 const uint64_t FuncInfoOffset = O.tell();
114 const auto StartOffset = O.tell();
118 const auto Length = O.tell() - StartOffset;
132 const auto StartOffset = O.tell();
136 const auto Length = O.tell() - StartOffset;
H A DGsymCreator.cpp112 const off_t AddrInfoOffsetsOffset = O.tell();
132 const off_t StrtabOffset = O.tell();
134 const off_t StrtabSize = O.tell() - StrtabOffset;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTableGenBackend.cpp23 size_t Pos = (size_t)OS.tell();
27 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp31 size_t tell() const { return NextOffset; } function in class:__anon4821::BlobAllocator
108 size_t BeginOffset = OS.tell();
111 assert(OS.tell() == BeginOffset + NextOffset &&
124 size_t DataEnd = File.tell();
162 size_t DataEnd = File.tell();
165 DataEnd = File.tell();
175 Result.Location.RVA = File.tell();
208 DataEnd = File.tell();
222 DataEnd.getValueOr(File.tell()) - Result.Location.RVA;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCLinkerOptimizationHint.cpp58 return OutStream.tell();
H A DMachObjectWriter.cpp145 uint64_t Start = W.OS.tell();
160 assert(W.OS.tell() - Start == (is64Bit() ? sizeof(MachO::mach_header_64)
181 uint64_t Start = W.OS.tell();
211 assert(W.OS.tell() - Start == SegmentLoadCommandSize);
231 uint64_t Start = W.OS.tell();
255 assert(W.OS.tell() - Start ==
265 uint64_t Start = W.OS.tell();
275 assert(W.OS.tell() - Start == sizeof(MachO::symtab_command));
288 uint64_t Start = W.OS.tell();
312 assert(W.OS.tell()
[all...]
H A DELFObjectWriter.cpp340 uint64_t Padding = offsetToAlignment(W.OS.tell(), Align(Alignment));
622 uint64_t SecStart = W.OS.tell();
758 uint64_t SecEnd = W.OS.tell();
768 SecStart = W.OS.tell();
773 SecEnd = W.OS.tell();
1070 uint64_t StartOffset = W.OS.tell();
1099 uint64_t SecStart = W.OS.tell();
1104 uint64_t SecEnd = W.OS.tell();
1146 uint64_t SecStart = W.OS.tell();
1156 uint64_t SecEnd = W.OS.tell();
[all...]
/freebsd-12-stable/sys/dev/bhnd/
H A Dbhnd_eromvar.h72 bhnd_erom_io_tell_t *tell; /**< @see bhnd_erom_io_tell() */ member in struct:bhnd_erom_io
H A Dbhnd_erom.c348 return (eio->tell(eio, addr, size));
390 iores->eio.tell = bhnd_erom_iores_tell;
516 iobus->eio.tell = bhnd_erom_iobus_tell;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp126 uint64_t StartOfLocationInfo = OS.tell();
139 OS.tell() - StartOfLocationInfo,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DFileWriter.h110 uint64_t tell();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormattedStream.h51 return TheStream->tell();
67 // had been using, and tell TheStream not to do its own buffering.
H A Dcircular_raw_ostream.h90 return TheStream->tell() - TheStream->GetNumBytesInBuffer();
H A DOnDiskHashTable.h178 B.Off = Out.tell();
196 uint64_t KeyStart = Out.tell();
198 uint64_t DataStart = Out.tell();
200 uint64_t End = Out.tell();
210 offset_type TableOff = Out.tell();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp87 uint64_t SectionStart = OutputStream->tell();
126 OutputStream->tell() - SectionStart});
148 uint64_t Offset = OutputStream->tell();
189 SecLBRProfileStart = OutputStream->tell();
332 uint64_t FuncOffsetTableStart = OS.tell();
412 SecHdrTableOffset = OutputStream->tell();
423 uint64_t Saved = OutputStream->tell();
460 FileStart = OS.tell();
475 TableOffset = OutputStream->tell();
551 uint64_t Offset = OutputStream->tell();
[all...]
H A DInstrProfWriter.cpp55 uint64_t tell() { return OS.tell(); } function in class:llvm::ProfOStream
323 uint64_t HashTableStartFieldOffset = OS.tell();
331 uint64_t SummaryOffset = OS.tell();
337 CSSummaryOffset = OS.tell();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp117 uint64_t OldPos = OS.tell();
119 unsigned SizeSoFar = OS.tell() - OldPos;
222 NamePos = StringTable.tell();
227 Insertion.first->second = StringTable.tell();
317 printBSDMemberHeader(Out, Out.tell(), Name, now(Deterministic), 0, 0, 0,
324 uint64_t Pos = Out.tell() + Size;
380 Ret.push_back(SymNames.tell());
503 if (HasObject && SymNames.tell() == 0)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp83 uint64_t Pos = OS.tell();
196 uint64_t Pos = OS.tell();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp62 uint64_t Start = OS.tell();
164 Fixups.push_back(MCFixup::create(OS.tell() - Start, MO.getExpr(),
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp103 for (unsigned Pad = offsetToAlignment(OS.tell(), Align(8)); Pad; --Pad)
/freebsd-12-stable/usr.bin/rpcgen/
H A Drpc_main.c383 long tell; local
396 tell = ftell(fout);
400 if (extend && tell == ftell(fout)) {
486 long tell; local
518 tell = ftell(fout);
552 if (extend && tell == ftell(fout)) {
715 long tell; local
732 tell = ftell(fout);
736 if (extend && tell == ftell(fout)) {
748 long tell; local
[all...]
/freebsd-12-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h52 while ( (_ostream.tell() % alignment) != 0 )
56 return _ostream.tell();
/freebsd-12-stable/contrib/tcpdump/lbl/
H A Dos-sunos4.h177 long tell(int);
/freebsd-12-stable/contrib/libpcap/lbl/
H A Dos-sunos4.h177 long tell(int);

Completed in 587 milliseconds

123