Home
last modified time | relevance | path

Searched refs:Writes (Results 1 – 25 of 201) sorted by relevance

123456789

/external/pcre/dist2/doc/
Dpcre2-config.txt27 --prefix Writes the directory prefix used in the PCRE2 installation
32 Writes the directory prefix used in the PCRE2 installation
36 --version Writes the version number of the installed PCRE2 libraries to
39 --libs8 Writes to the standard output the command line options
43 --libs16 Writes to the standard output the command line options
47 --libs32 Writes to the standard output the command line options
52 Writes to the standard output the command line options
56 --cflags Writes to the standard output the command line options
61 Writes to the standard output the command line options
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DRegisterFile.cpp245 void RegisterFile::collectWrites(SmallVectorImpl<WriteRef> &Writes, in collectWrites() argument
252 Writes.push_back(WR); in collectWrites()
258 Writes.push_back(WR); in collectWrites()
262 llvm::sort(Writes.begin(), Writes.end(), in collectWrites()
266 auto It = std::unique(Writes.begin(), Writes.end()); in collectWrites()
267 Writes.resize(std::distance(Writes.begin(), It)); in collectWrites()
270 for (const WriteRef &WR : Writes) { in collectWrites()
DInstrBuilder.cpp184 ID.Writes.resize(TotalDefs); in populateWrites()
195 WriteDescriptor &Write = ID.Writes[CurrentDef]; in populateWrites()
225 WriteDescriptor &Write = ID.Writes[Index]; in populateWrites()
261 WriteDescriptor &Write = ID.Writes[TotalDefs - 1]; in populateWrites()
435 if (D.Writes.empty()) in createInstruction()
440 APInt WriteMask(D.Writes.size(), 0); in createInstruction()
452 for (const WriteDescriptor &WD : D.Writes) { in createInstruction()
DInstruction.h188 void setDependentWrites(unsigned Writes) { in setDependentWrites() argument
189 DependentWrites = Writes; in setDependentWrites()
190 IsReady = !Writes; in setDependentWrites()
256 std::vector<WriteDescriptor> Writes; // Implicit writes are at the end. member
DRegisterFile.h159 void collectWrites(llvm::SmallVectorImpl<WriteRef> &Writes,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMScheduleA57.td80 list <SchedWriteRes> Writes = writes;
532 SchedVar<A57LMAddrPred1, A57LDMOpsListNoregin.Writes[0-1]>,
533 SchedVar<A57LMAddrPred2, A57LDMOpsListNoregin.Writes[0-3]>,
534 SchedVar<A57LMAddrPred3, A57LDMOpsListNoregin.Writes[0-5]>,
535 SchedVar<A57LMAddrPred4, A57LDMOpsListNoregin.Writes[0-7]>,
536 SchedVar<A57LMAddrPred5, A57LDMOpsListNoregin.Writes[0-9]>,
537 SchedVar<A57LMAddrPred6, A57LDMOpsListNoregin.Writes[0-11]>,
538 SchedVar<A57LMAddrPred7, A57LDMOpsListNoregin.Writes[0-13]>,
539 SchedVar<A57LMAddrPred8, A57LDMOpsListNoregin.Writes[0-15]>,
540 SchedVar<NoSchedPred, A57LDMOpsListNoregin.Writes[0-15]>
[all …]
DARMParallelDSP.cpp495 Instructions &Writes) { in AliasCandidates() argument
500 Writes.push_back(&I); in AliasCandidates()
508 Instructions &Writes, OpChainList &MACCandidates) { in AreAliased() argument
521 for (auto *I : Writes) { in AreAliased()
618 Instructions Reads, Writes; in MatchSMLAD() local
619 AliasCandidates(Header, Reads, Writes); in MatchSMLAD()
622 if (AreAliased(AA, Reads, Writes, R.MACCandidates)) in MatchSMLAD()
DARMScheduleA9.td1883 list <WriteSequence> Writes = writes;
2111 SchedVar<A9LMAdr1Pred, A9WriteLMOpsList.Writes[0-1]>,
2112 SchedVar<A9LMAdr2Pred, A9WriteLMOpsList.Writes[0-3]>,
2113 SchedVar<A9LMAdr3Pred, A9WriteLMOpsList.Writes[0-5]>,
2114 SchedVar<A9LMAdr4Pred, A9WriteLMOpsList.Writes[0-7]>,
2115 SchedVar<A9LMAdr5Pred, A9WriteLMOpsList.Writes[0-9]>,
2116 SchedVar<A9LMAdr6Pred, A9WriteLMOpsList.Writes[0-11]>,
2117 SchedVar<A9LMAdr7Pred, A9WriteLMOpsList.Writes[0-13]>,
2118 SchedVar<A9LMAdr8Pred, A9WriteLMOpsList.Writes[0-15]>,
2216 SchedVar<A9LMAdr1Pred, A9WriteLMfpPostRAOpsList.Writes[0-0, 8-8]>,
[all …]
/external/llvm/utils/TableGen/
DCodeGenSchedule.cpp383 IdxVec &Writes, IdxVec &Reads) const { in findRWs() argument
387 findRWs(WriteDefs, Writes, false); in findRWs()
509 IdxVec Writes, Reads; in collectSchedClasses() local
511 findRWs(Inst->TheDef->getValueAsListOfDefs("SchedRW"), Writes, Reads); in collectSchedClasses()
516 unsigned SCIdx = addSchedClass(ItinDef, Writes, Reads, ProcIndices); in collectSchedClasses()
551 if (!SC.Writes.empty()) { in collectSchedClasses()
554 for (IdxIter WI = SC.Writes.begin(), WE = SC.Writes.end(); WI != WE; ++WI) in collectSchedClasses()
567 IdxVec Writes; in collectSchedClasses() local
570 Writes, Reads); in collectSchedClasses()
571 for (IdxIter WI = Writes.begin(), WE = Writes.end(); WI != WE; ++WI) in collectSchedClasses()
[all …]
DCodeGenSchedule.h132 IdxVec Writes; member
148 return ItinClassDef == IC && makeArrayRef(Writes) == W && in isKeyEqual()
370 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const;
382 unsigned findSchedClassIdx(Record *ItinClassDef, ArrayRef<unsigned> Writes,
432 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
DSubtargetEmitter.cpp852 IdxVec Writes = SC.Writes; in GenSchedClassTables() local
866 Writes.clear(); in GenSchedClassTables()
869 Writes, Reads); in GenSchedClassTables()
872 if (Writes.empty()) { in GenSchedClassTables()
879 Writes, Reads); in GenSchedClassTables()
883 if (Writes.empty()) { in GenSchedClassTables()
893 for (unsigned W : Writes) { in GenSchedClassTables()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DCodeGenSchedule.cpp494 IdxVec &Writes, IdxVec &Reads) const { in findRWs() argument
498 findRWs(WriteDefs, Writes, false); in findRWs()
612 IdxVec Writes, Reads; in collectSchedClasses() local
614 findRWs(Inst->TheDef->getValueAsListOfDefs("SchedRW"), Writes, Reads); in collectSchedClasses()
617 unsigned SCIdx = addSchedClass(ItinDef, Writes, Reads, /*ProcIndices*/{0}); in collectSchedClasses()
658 if (!SC.Writes.empty()) { in collectSchedClasses()
662 for (IdxIter WI = SC.Writes.begin(), WE = SC.Writes.end(); WI != WE; in collectSchedClasses()
677 IdxVec Writes; in collectSchedClasses() local
680 Writes, Reads); in collectSchedClasses()
682 for (unsigned WIdx : Writes) in collectSchedClasses()
[all …]
DCodeGenSchedule.h130 IdxVec Writes; member
148 return ItinClassDef == IC && makeArrayRef(Writes) == W && in isKeyEqual()
418 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const;
485 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
DSubtargetEmitter.cpp1032 IdxVec Writes = SC.Writes; in GenSchedClassTables() local
1046 Writes.clear(); in GenSchedClassTables()
1049 Writes, Reads); in GenSchedClassTables()
1052 if (Writes.empty()) { in GenSchedClassTables()
1058 Writes, Reads); in GenSchedClassTables()
1062 if (Writes.empty()) { in GenSchedClassTables()
1073 for (unsigned W : Writes) { in GenSchedClassTables()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCInstrAnalysis.cpp22 APInt &Writes) const { in clearsSuperRegisters()
23 Writes.clearAllBits(); in clearsSuperRegisters()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIntrinsicsARM.td97 // Writes to the GE bits.
104 // Writes to the GE bits.
107 // Writes to the GE bits.
118 // Writes to the GE bits.
138 // Writes to the GE bits.
141 // Writes to the GE bits.
152 // Writes to the GE bits.
155 // Writes to the GE bits.
158 // Writes to the GE bits.
161 // Writes to the GE bits.
[all …]
/external/blktrace/doc/
Dblktrace.tex163 Reads Queued: 0, 0KiB Writes Queued: 7, 128KiB
165 Reads Completed: 0, 0KiB Writes Completed: 11, 168KiB
170 Reads Queued: 0, 0KiB Writes Queued: 1, 28KiB
172 Reads Completed: 0, 0KiB Writes Completed: 0, 0KiB
177 Reads Queued: 0, 0KiB Writes Queued: 11, 168KiB
179 Reads Completed: 0, 0KiB Writes Completed: 11, 168KiB
299 Reads Queued: 0, 0KiB Writes Queued: 9, 5,520KiB
301 Reads Completed: 0, 0KiB Writes Completed: 0, 0KiB
305 Reads Queued: 2,411, 38,576KiB Writes Queued: 769, 425,408KiB
307 Reads Completed: 0, 0KiB Writes Completed: 0, 0KiB
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_WriteFile.pbtxt15 summary: "Writes contents to the file at input filename. Creates file and recursively"
Dapi_def_ExperimentalDatasetToTFRecord.pbtxt23 summary: "Writes the given dataset to the given file using the TFRecord format."
/external/flatbuffers/dart/lib/
Dflat_buffers.dart100 /// Writes the data in this helper to the [Builder].
360 /// Writes a Float64 to the tail of the buffer after preparing space for it.
368 /// Writes a Float32 to the tail of the buffer after preparing space for it.
376 /// Writes a Int64 to the tail of the buffer after preparing space for it.
384 /// Writes a Uint32 to the tail of the buffer after preparing space for it.
392 /// Writes a Uint16 to the tail of the buffer after preparing space for it.
400 /// Writes a Uint8 to the tail of the buffer after preparing space for it.
408 /// Writes a Uint64 to the tail of the buffer after preparing space for it.
416 /// Writes a Uint32 to the tail of the buffer after preparing space for it.
424 /// Writes a Uint16 to the tail of the buffer after preparing space for it.
[all …]
/external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
Dllvm_bitwriter.ml16 (* Writes the bitcode for module the given path. Returns true if successful. *)
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DInlineSpiller.cpp866 bool Reads, Writes; in reMaterializeFor() local
868 tie(Reads, Writes) = MI->readsWritesVirtualRegister(VirtReg.reg, &Ops); in reMaterializeFor()
869 if (Writes) { in reMaterializeFor()
1126 bool Reads, Writes; in spillAroundUses() local
1128 tie(Reads, Writes) = MI->readsWritesVirtualRegister(Reg, &Ops); in spillAroundUses()
1146 if (Writes) { in spillAroundUses()
1190 if (Writes) { in spillAroundUses()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCInstrAnalysis.h88 APInt &Writes) const;
/external/grpc-grpc/doc/
Dstatus_ordering.md5 1. Reads and Writes Must not succeed after Status has been delivered.
/external/perfetto/test/configs/
Dlong_trace.cfg10 # Writes the userspace buffer into the file every 2.5 seconds.

123456789