/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TypeProperties.td | 14 let Read = [{ node->getElementType() }]; 22 let Read = [{ node->getPointeeType() }]; 30 let Read = [{ node->desugar() }]; 33 let Read = [{ node->getCountExpr() }]; 36 let Read = [{ node->isCountInBytes() }]; 39 let Read = [{ node->isOrNull() }]; 42 let Read = [{ node->getCoupledDecls() }]; 49 let Read = [{ node->getOriginalType() }]; 52 let Read = [{ node->getAdjustedType() }]; 70 let Read = [{ node->getPointeeType() }]; [all …]
|
H A D | PropertiesBase.td | 179 code Read; 195 /// `ReadHelper` makes the connection to the `Read` operations on the 245 string Read = readCode; 268 let Read = [{ node.getInt() }]; 274 let Read = [{ 280 let Read = [{ node.getFloat().bitcastToAPInt() }]; 290 let Read = [{ node.getFixedPoint().getSemantics() }]; 293 let Read = [{ node.getFixedPoint().getValue() }]; 301 let Read = [{ node.getComplexIntReal() }]; 304 let Read = [{ node.getComplexIntImag() }]; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/tests/ |
H A D | rawprofile.cpp | 37 template <class T = uint64_t> T Read(char *&Buffer) { in Read() function 75 EXPECT_THAT(Read(Ptr), MEMPROF_RAW_MAGIC_64); in TEST() 76 EXPECT_THAT(Read(Ptr), MEMPROF_RAW_VERSION); in TEST() 77 const uint64_t TotalSize = Read(Ptr); in TEST() 78 const uint64_t SegmentOffset = Read(Ptr); in TEST() 79 const uint64_t MIBOffset = Read(Ptr); in TEST() 80 const uint64_t StackOffset = Read(Ptr); in TEST()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.cpp | 133 std::optional<uint64_t> Rs::Read(EmulateInstructionRISCV &emulator) { in Read() function in lldb_private::Rs 143 Read(emulator), [](uint64_t value) { return int32_t(uint32_t(value)); }); in ReadI32() 147 return transformOptional(Read(emulator), in ReadI64() 152 return transformOptional(Read(emulator), in ReadU32() 221 return transformOptional(inst.rs1.Read(emulator), [&](uint64_t rs1) { in LoadStoreAddr() 246 inst.rs2.Read(emulator), in Store() 256 return transformOptional(inst.rs1.Read(emulator), in AtomicAddr() 273 zipOpt(emulator.ReadMem<T>(*addr), inst.rs2.Read(emulator)), in AtomicSwap() 290 zipOpt(emulator.ReadMem<T>(*addr), inst.rs2.Read(emulator)), in AtomicADD() 307 zipOpt(emulator.ReadMem<T>(*addr), inst.rs2.Read(emulator)), in AtomicBitOperate() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MCA/ |
H A D | InstrBuilder.cpp | 463 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads() local 464 Read.OpIndex = OpIndex; in populateReads() 465 Read.UseIndex = I; in populateReads() 466 Read.SchedClassID = SchedClassID; in populateReads() 468 LLVM_DEBUG(dbgs() << "\t\t[Use] OpIdx=" << Read.OpIndex in populateReads() 469 << ", UseIndex=" << Read.UseIndex << '\n'); in populateReads() 475 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads() local 476 Read.OpIndex = ~I; in populateReads() 477 Read.UseIndex = NumExplicitUses + I; in populateReads() 478 Read.RegisterID = MCDesc.implicit_uses()[I]; in populateReads() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCClassDescriptorV2.cpp | 25 bool ret = objc_class->Read(process, m_objc_class_ptr); in Read_objc_class() 46 bool ClassDescriptorV2::objc_class_t::Read(Process *process, in Read() function in ClassDescriptorV2::objc_class_t 88 bool ClassDescriptorV2::class_rw_t::Read(Process *process, lldb::addr_t addr) { in Read() function in ClassDescriptorV2::class_rw_t 141 bool ClassDescriptorV2::class_ro_t::Read(Process *process, lldb::addr_t addr) { in Read() function in ClassDescriptorV2::class_ro_t 215 if (!class_rw->Read(process, objc_class.m_data_ptr)) { in Read_class_row() 222 if (!class_ro->Read(process, class_rw->m_ro_ptr)) { in Read_class_row() 230 if (!class_ro->Read(process, objc_class.m_data_ptr)) { in Read_class_row() 239 bool ClassDescriptorV2::method_list_t::Read(Process *process, in Read() function in ClassDescriptorV2::method_list_t 269 bool ClassDescriptorV2::method_t::Read(Process *process, lldb::addr_t addr, in Read() function in ClassDescriptorV2::method_t 320 bool ClassDescriptorV2::ivar_list_t::Read(Process *process, lldb::addr_t addr) { in Read() function in ClassDescriptorV2::ivar_list_t [all …]
|
H A D | AppleObjCClassDescriptorV2.h | 101 bool Read(Process *process, lldb::addr_t addr); 121 bool Read(Process *process, lldb::addr_t addr); 139 bool Read(Process *process, lldb::addr_t addr); 149 bool Read(Process *process, lldb::addr_t addr); 175 bool Read(Process *process, lldb::addr_t addr, 185 bool Read(Process *process, lldb::addr_t addr); 208 bool Read(Process *process, lldb::addr_t addr); 215 bool Read(Process *process, lldb::addr_t addr); 223 bool Read(Process *process, lldb::addr_t addr);
|
/freebsd/tests/sys/fs/fusefs/ |
H A D | read.cc | 51 class Read: public FuseTest { class 60 class RofsRead: public Read { 64 Read::SetUp(); in SetUp() 81 class AioRead: public Read { 98 class ReadAhead: public Read, 110 Read::SetUp(); in SetUp() 114 class ReadMaxRead: public Read { 117 Read::SetUp(); in SetUp() 121 class ReadNoatime: public Read { 124 Read::SetUp(); in SetUp() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | Parser.cpp | 202 unsigned Read; in parseType() local 203 Type *Ty = parseTypeAtBeginning(Asm, Read, Err, M, Slots); in parseType() 206 if (Read != Asm.size()) { in parseType() 210 Err = SM.GetMessage(SMLoc::getFromPointer(Asm.begin() + Read), in parseType() 216 Type *llvm::parseTypeAtBeginning(StringRef Asm, unsigned &Read, in parseTypeAtBeginning() argument 224 .parseTypeAtBeginning(Ty, Read, Slots)) in parseTypeAtBeginning() 230 unsigned &Read, in parseDIExpressionBodyAtBeginning() argument 239 .parseDIExpressionBodyAtBeginning(MD, Read, Slots)) in parseDIExpressionBodyAtBeginning()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/ |
H A D | BitstreamReader.h | 138 if (Expected<word_t> Res = Read(WordBitNo)) in JumpToBit() 166 // Read the next word from the stream. in fillCurWord() 185 Expected<word_t> Read(unsigned NumBits) { 229 Expected<unsigned> MaybeRead = Read(NumBits); in ReadVBR() 254 MaybeRead = Read(NumBits); in ReadVBR() 261 // Read a VBR that may have a value up to 64-bits in size. The chunk size of 264 Expected<uint64_t> MaybeRead = Read(NumBits); in ReadVBR64() 288 MaybeRead = Read(NumBits); in ReadVBR64() 396 using SimpleBitstreamCursor::Read; 473 Expected<unsigned> ReadCode() { return Read(CurCodeSiz 186 Expected<word_t> Read(unsigned NumBits) { Read() function [all...] |
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextDarwin_arm64.h | 120 enum { Read = 0, Write = 1, kNumErrors = 2 }; enumerator 132 SetError(GPRRegSet, Read, -1); in InvalidateAllRegisterStates() 133 SetError(FPURegSet, Read, -1); in InvalidateAllRegisterStates() 134 SetError(EXCRegSet, Read, -1); in InvalidateAllRegisterStates() 183 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
|
H A D | RegisterContextDarwin_i386.h | 111 enum { Read = 0, Write = 1, kNumErrors = 2 }; enumerator 121 SetError(GPRRegSet, Read, -1); in InvalidateAllRegisterStates() 122 SetError(FPURegSet, Read, -1); in InvalidateAllRegisterStates() 123 SetError(EXCRegSet, Read, -1); in InvalidateAllRegisterStates() 166 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
|
H A D | RegisterContextDarwin_x86_64.h | 116 enum { Read = 0, Write = 1, kNumErrors = 2 }; enumerator 126 SetError(GPRRegSet, Read, -1); in InvalidateAllRegisterStates() 127 SetError(FPURegSet, Read, -1); in InvalidateAllRegisterStates() 128 SetError(EXCRegSet, Read, -1); in InvalidateAllRegisterStates() 171 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
|
H A D | RegisterContextDarwin_arm.h | 153 enum { Read = 0, Write = 1, kNumErrors = 2 }; enumerator 165 SetError(GPRRegSet, Read, -1); in InvalidateAllRegisterStates() 166 SetError(FPURegSet, Read, -1); in InvalidateAllRegisterStates() 167 SetError(EXCRegSet, Read, -1); in InvalidateAllRegisterStates() 216 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
|
H A D | RegisterContextDarwin_arm64.cpp | 174 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 176 return GetError(GPRRegSet, Read); in ReadGPR() 182 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 184 return GetError(FPURegSet, Read); in ReadFPU() 190 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 192 return GetError(EXCRegSet, Read); in ReadEXC() 198 SetError(set, Read, DoReadDBG(GetThreadID(), set, dbg)); in ReadDBG() 200 return GetError(DBGRegSet, Read); in ReadDBG() 210 SetError(set, Read, -1); in WriteGPR() 221 SetError(set, Read, -1); in WriteFPU() [all …]
|
H A D | RegisterContextDarwin_i386.cpp | 505 SetError(set, Read, DoReadGPR(GetThreadID(), set, gpr)); in ReadGPR() 507 return GetError(set, Read); in ReadGPR() 513 SetError(set, Read, DoReadFPU(GetThreadID(), set, fpu)); in ReadFPU() 515 return GetError(set, Read); in ReadFPU() 521 SetError(set, Read, DoReadEXC(GetThreadID(), set, exc)); in ReadEXC() 523 return GetError(set, Read); in ReadEXC() 533 SetError(set, Read, -1); in WriteGPR() 544 SetError(set, Read, -1); in WriteFPU() 555 SetError(set, Read, -1); in WriteEXC()
|
/freebsd/usr.bin/mail/misc/ |
H A D | mail.tildehelp | 11 ~d Read in dead.letter 13 ~f messages Read in messages 17 ~m messages Read in messages, right shifted by a tab 21 ~r file Read a file into the message buffer
|
/freebsd/contrib/bearssl/src/x509/ |
H A D | asn1.t0 | 52 \ Read next source character, skipping blanks. 58 \ Read a decimal integer, followed by either a dot or whitespace. 159 \ Read one byte from the stream. 166 \ Read one byte, enforcing current read limit. 171 \ Read a 16-bit value, big-endian encoding. 175 \ Read a 16-bit value, little-endian encoding. 179 \ Read all bytes from the current element, then close it (i.e. drop the 224 \ Read an ASN.1 tag. This function returns the "constructed" status 250 \ Read a tag, but only if not at the end of the current object. If there 266 \ Read an ASN.1 length. This supports only definite lengths (theoretically, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
H A D | ExecutorSharedMemoryMapperService.cpp | 34 if (MP == MemProt::Read) in getWindowsProtectionFlags() 37 MP == (MemProt::Write | MemProt::Read)) { in getWindowsProtectionFlags() 41 if (MP == (MemProt::Read | MemProt::Exec)) in getWindowsProtectionFlags() 43 if (MP == (MemProt::Read | MemProt::Write | MemProt::Exec)) in getWindowsProtectionFlags() 158 if ((Segment.RAG.Prot & MemProt::Read) == MemProt::Read) in initialize()
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/ |
H A D | lpc32xx-slc.txt | 18 - nxp,rwidth: Read pulse width (R_WIDTH) 19 - nxp,rhold: Read hold time (R_HOLD) 20 - nxp,rsetup: Read setup time (R_SETUP)
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | Lint.cpp | 87 static const unsigned Read = 1; variable 262 MemRef::Read | MemRef::Write); in visitCallBase() 299 MCI->getSourceAlign(), nullptr, MemRef::Read); in visitCallBase() 320 MMI->getSourceAlign(), nullptr, MemRef::Read); in visitCallBase() 339 std::nullopt, nullptr, MemRef::Read | MemRef::Write); in visitCallBase() 345 std::nullopt, nullptr, MemRef::Read); in visitCallBase() 349 std::nullopt, nullptr, MemRef::Read | MemRef::Write); in visitCallBase() 357 std::nullopt, nullptr, MemRef::Read | MemRef::Write); in visitCallBase() 410 if (Flags & MemRef::Read) { in visitMemoryReference() 473 MemRef::Read); in visitLoadInst() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Bitstream/Reader/ |
H A D | BitstreamReader.cpp | 52 Expected<word_t> MaybeNum = Read(bitc::BlockSizeWidth); in EnterSubBlock() 82 return Cursor.Read((unsigned)Op.getEncodingData()); in readAbbreviatedField() 87 if (Expected<unsigned> Res = Cursor.Read(6)) in readAbbreviatedField() 304 Read((unsigned)EltEnc.getEncodingData())) in readRecord() 319 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = Read(6)) in readRecord() 370 Expected<word_t> MaybeIsLiteral = Read(1); in ReadAbbrevRecord() 382 Expected<word_t> MaybeEncoding = Read(3); in ReadAbbrevRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.cpp | 143 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed); in readBytes() local 144 if (Read <= 0) { in readBytes() 146 if (Read == 0) { in readBytes() 164 Completed += Read; in readBytes()
|
/freebsd/usr.sbin/ppp/ |
H A D | descriptor.h | 46 void (*Read)(struct fdescriptor *, struct bundle *, const fd_set *); member 52 #define descriptor_Read(d, b, f) ((*(d)->Read)(d, b, f))
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
H A D | MemoryFlags.h | 29 Read = 1U << 0, enumerator 37 return OS << (((MP & MemProt::Read) != MemProt::None) ? 'R' : '-') 46 if ((MP & MemProt::Read) != MemProt::None) in toSysMemoryProtectionFlags() 60 MP |= MemProt::Read; in fromSysMemoryProtectionFlags()
|