Home
last modified time | relevance | path

Searched refs:Read (Results 1 – 25 of 153) sorted by relevance

1234567

/minix/common/dist/zlib/contrib/ada/
H A Dread.adb19 procedure Read is subprogram
64 procedure Read argument
71 procedure Read is new ZLib.Read argument
72 (Read,
81 procedure Read argument
98 end Read;
139 Read (Filter, Buffer, Last);
156 end Read;
H A Dzlib-streams.adb130 procedure Read subprogram
136 procedure Read argument
144 procedure Read argument
148 Ada.Streams.Read (Stream.Back.all, Item, Last);
149 end Read;
151 procedure Read is new ZLib.Read subprogram
152 (Read => Read,
158 Read (Stream.Reader, Item, Last);
159 end Read;
H A Dtest.adb135 Read (Left, Left_Buffer, Left_Last);
136 Read (Right, Right_Buffer, Right_Last);
170 Read (Source, Buffer, Last);
185 Read (File_In, Item, Last);
H A Dzlib.ads259 with procedure Read formal
277 procedure Read subprogspec
H A Dzlib-streams.ads20 procedure Read subprogspec
/minix/external/bsd/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h314 Read(WordBitNo); in JumpToBit()
339 word_t Read(unsigned NumBits) { in Read() function
380 uint32_t Piece = Read(NumBits); in ReadVBR()
393 Piece = Read(NumBits); in ReadVBR()
400 uint32_t Piece = Read(NumBits); in ReadVBR64()
413 Piece = Read(NumBits); in ReadVBR64()
433 return Read(CurCodeSize); in ReadCode()
452 unsigned NumFourBytes = Read(bitc::BlockSizeWidth); in SkipBlock()
/minix/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp43 unsigned NumWords = Read(bitc::BlockSizeWidth); in EnterSubBlock()
63 return Cursor.Read((unsigned)Op.getEncodingData()); in readAbbreviatedField()
67 return BitCodeAbbrevOp::DecodeChar6(Cursor.Read(6)); in readAbbreviatedField()
82 Cursor.Read((unsigned)Op.getEncodingData()); in skipAbbreviatedField()
88 Cursor.Read(6); in skipAbbreviatedField()
244 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord()
250 BitCodeAbbrevOp::Encoding E = (BitCodeAbbrevOp::Encoding)Read(3); in ReadAbbrevRecord()
/minix/external/bsd/llvm/dist/llvm/unittests/Bitcode/
H A DBitstreamReaderTest.cpp25 (void)Cursor.Read(8); in TEST()
27 (void)Cursor.Read(24); in TEST()
/minix/external/bsd/llvm/dist/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp35 if (Stream.Read(8) != 'D' || in readDiagnostics()
36 Stream.Read(8) != 'I' || in readDiagnostics()
37 Stream.Read(8) != 'A' || in readDiagnostics()
38 Stream.Read(8) != 'G') in readDiagnostics()
/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DLint.cpp61 static unsigned Read = 1; variable
257 Ty, MemRef::Read | MemRef::Write); in visitCallSite()
287 MemRef::Read); in visitCallSite()
311 MemRef::Read); in visitCallSite()
329 0, nullptr, MemRef::Read | MemRef::Write); in visitCallSite()
335 0, nullptr, MemRef::Read); in visitCallSite()
339 0, nullptr, MemRef::Read | MemRef::Write); in visitCallSite()
347 0, nullptr, MemRef::Read | MemRef::Write); in visitCallSite()
403 if (Flags & MemRef::Read) { in visitMemoryReference()
469 I.getType(), MemRef::Read); in visitLoadInst()
[all …]
/minix/common/dist/zlib/contrib/blast/
H A DREADME1 Read blast.h for purpose and usage.
/minix/external/bsd/llvm/dist/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp255 if (Cursor.Read(8) != 'B' || in readIndex()
256 Cursor.Read(8) != 'C' || in readIndex()
257 Cursor.Read(8) != 'G' || in readIndex()
258 Cursor.Read(8) != 'I') { in readIndex()
509 if (InStream.Read(8) != 'C' || in loadModuleFile()
510 InStream.Read(8) != 'P' || in loadModuleFile()
511 InStream.Read(8) != 'C' || in loadModuleFile()
512 InStream.Read(8) != 'H') { in loadModuleFile()
/minix/external/bsd/llvm/dist/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp515 Signature[0] = Stream.Read(8); in openBitcodeFile()
516 Signature[1] = Stream.Read(8); in openBitcodeFile()
517 Signature[2] = Stream.Read(4); in openBitcodeFile()
518 Signature[3] = Stream.Read(4); in openBitcodeFile()
519 Signature[4] = Stream.Read(4); in openBitcodeFile()
520 Signature[5] = Stream.Read(4); in openBitcodeFile()
/minix/external/bsd/llvm/dist/llvm/docs/tutorial/
H A DLangImpl4.rst29 Read function definition:
42 Read function definition:
74 ready> Read function definition:
289 Read top-level expression:
305 Read function definition:
314 Read top-level expression:
340 Read extern:
344 Read extern:
348 Read top-level expression:
357 Read function definition:
[all …]
/minix/external/bsd/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64Schedule.td32 def ReadExtrHi : SchedRead; // Read the high reg of the EXTR pair
51 def ReadAdrBase : SchedRead; // Read the base resister of a reg-offset LD/ST.
95 // Read the unwritten lanes of the VLD's destination registers.
/minix/crypto/external/bsd/openssl/dist/doc/apps/
H A Dpasswd.pod53 Read passwords from I<file>.
57 Read passwords from B<stdin>.
/minix/external/mit/xorg/lib/libXdmcp/
H A DMakefile13 Read.c \
/minix/sys/arch/i386/conf/
H A Dstand.ldscript9 /* Read-only sections, merged into text segment: */
/minix/external/bsd/llvm/dist/clang/test/Analysis/
H A Dmisc-ps-region-store.cpp299 void Read(int *pi); // copies *pi into *i_
309 se.Read(&j); // this has a side-effect of initializing i. in PR9645()
315 void PR9645_SideEffect::Read(int *pi) { *i_ = *pi; } in Read() function in PR9645_SideEffect
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A Drdpmc.ll4 ; Verify that we correctly lower the "Read Performance-Monitoring Counters"
H A Drdtsc.ll19 ; Verify that we correctly lower the Read Cycle Counter GCC x86 builtins
/minix/external/bsd/llvm/dist/llvm/test/Analysis/CFLAliasAnalysis/
H A Dva.ll12 ; Read a single integer argument
/minix/external/bsd/llvm/dist/llvm/unittests/Support/
H A DEndianTest.cpp22 TEST(Endian, Read) { in TEST() argument
/minix/external/bsd/flex/dist/po/
H A Dinsert-header.sin12 # Yes it was empty. First occurrence. Read the file.
/minix/external/bsd/nvi/dist/catalog/
H A DREADME84 009 "Read-only file, not written; use ! to override"
85 010 "Read-only file, not written"
103 Read-only file, not written; use ! to overrideX
104 Read-only file, not writtenX

1234567