HomeSort by: relevance | last modified time | path
    Searched refs:tell (Results 1 - 25 of 224) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/sys/arch/luna68k/stand/boot/
awaitkey.c 47 * awaitkey(const char *pfmt, int timeout, bool tell)
50 * print countdown message using "pfmt" if tell is true.
54 awaitkey(const char *pfmt, int timeout, bool tell)
62 if (tell)
75 if (tell)
81 if (tell) {
  /src/sys/arch/landisk/stand/boot/
cons.h 40 char awaitkey(int timeout, int tell);
cons.c 128 awaitkey(int timeout, int tell)
136 if (tell && (i % POLL_FREQ) == 0) {
163 if (tell)
  /src/sys/stand/efiboot/
prompt.c 74 awaitkey(int timeout, int tell)
83 if (tell) {
116 if (tell) {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
FileWriter.cpp 67 uint64_t FileWriter::tell() {
68 return OS.tell();
72 off_t Offset = OS.tell();
FunctionInfo.cpp 105 const uint64_t FuncInfoOffset = O.tell();
117 const auto StartOffset = O.tell();
121 const auto Length = O.tell() - StartOffset;
135 const auto StartOffset = O.tell();
139 const auto Length = O.tell() - StartOffset;
  /src/sys/arch/zaurus/stand/zboot/
boot.h 49 void bootit(const char *filename, int howto, int tell);
unixcons.c 156 awaitkey(int timeout, int tell)
169 if (tell) {
191 if (tell)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ELFAttributeParser.cpp 98 uint64_t end = cursor.tell() + length;
99 while ((pos = cursor.tell()) < end) {
125 uint64_t end = cursor.tell() - sizeof(length) + length;
137 while (cursor.tell() < end) {
152 Twine::utohexstr(cursor.tell() - 5));
174 Twine::utohexstr(cursor.tell() - 5));
218 if (sectionLength < 4 || cursor.tell() - 4 + sectionLength > section.size())
222 utohexstr(cursor.tell() - 4));
TarWriter.cpp 83 uint64_t Pos = OS.tell();
207 uint64_t Pos = OS.tell();
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TableGenBackend.cpp 24 size_t Pos = (size_t)OS.tell();
28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size();
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpEmitter.cpp 31 size_t tell() const { return NextOffset; } function in class:__anon4484::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;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugPubTable.cpp 46 Offset = C.tell() + NewSet.Length;
83 if (C.tell() != Offset)
89 SetOffset, C.tell() - OffsetSize, Offset - OffsetSize));
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCLinkerOptimizationHint.cpp 58 return OutStream.tell();
MachObjectWriter.cpp 145 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() - Start == sizeof(MachO::dysymtab_command))
    [all...]
  /src/sys/arch/i386/stand/lib/
pcio.c 128 conputc('0' + i); /* to tell user what happens */
183 conputc('0' + i); /* to tell user what happens */
329 awaitkey(int timeout, int tell)
337 if (tell && (i % POLL_FREQ) == 0) {
367 if (tell)
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 126 uint64_t StartOfLocationInfo = OS.tell();
139 DiagMessageStream.str(), OS.tell() - StartOfLocationInfo,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
TestingSupport.cpp 114 for (unsigned Pad = offsetToAlignment(OS.tell(), Align(8)); Pad; --Pad)
118 for (unsigned Pad = offsetToAlignment(OS.tell(), Align(8)); Pad; --Pad)
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
FileWriter.h 110 uint64_t tell();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
circular_raw_ostream.h 26 /// TAKE_OWNERSHIP - Tell this stream that it owns the underlying
32 /// REFERENCE_ONLY - Tell this stream it should not manage the
90 return TheStream->tell() - TheStream->GetNumBytesInBuffer();
129 /// setStream - Tell the circular_raw_ostream to output a
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachOUtils.cpp 512 assert(OutFile.tell() == HeaderSize);
517 assert(OutFile.tell() == HeaderSize + sizeof(UUIDCmd));
573 assert(OutFile.tell() == LoadCommandSize + HeaderSize);
575 assert(OutFile.tell() == SymtabStart);
580 assert(OutFile.tell() == StringStart);
595 assert(OutFile.tell() == StringStart + NewStringsSize);
599 assert(OutFile.tell() == EHFrameStart);
604 assert(OutFile.tell() == EHFrameStart + EHFrameSize);
608 assert(OutFile.tell() == DwarfSegmentStart);
615 uint64_t Pos = OutFile.tell();
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/io/
unix.h 35 gfc_offset (* const tell) (struct stream *); member in struct:stream_vtable
71 return s->vptr->tell (s);
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
unix.h 35 gfc_offset (* const tell) (struct stream *); member in struct:stream_vtable
71 return s->vptr->tell (s);
  /src/sys/arch/amiga/stand/loadkmap/din/
din-kbdmap.c 424 above table, please tell me..
  /src/sys/arch/amiga/stand/loadkmap/pl_din/
pl_din-kbdmap.c 429 above table, please tell me..

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 9