/external/llvm/test/MC/Mips/ |
D | mips-reginfo-fp32.s | 25 # abs.s - Reads and writes from/to $f0. 27 # round.w.d - Reads $f4 and $f5 and writes to $f2. 29 # ceil.w.s - Reads $f8 and writes to $f10. 31 # cvt.s.d - Reads from $f12 and $f13 and writes to $f14 33 # abs.d - Reads from $f30 and $f31 and writes to $f30 and $f31.
|
D | mips-reginfo-fp64.s | 47 # abs.s - Reads and writes from/to $f0. 49 # round.w.d - Reads $f4 and writes to $f2. 51 # ceil.w.s - Reads $f8 and writes to $f10. 53 # cvt.s.d - Reads from $f12 and writes to $f14. 55 # abs.d - Reads from $f30 and writes to $f30.
|
/external/llvm-project/llvm/test/MC/Mips/ |
D | mips-reginfo-fp32.s | 25 # abs.s - Reads and writes from/to $f0. 27 # round.w.d - Reads $f4 and $f5 and writes to $f2. 29 # ceil.w.s - Reads $f8 and writes to $f10. 31 # cvt.s.d - Reads from $f12 and $f13 and writes to $f14 33 # abs.d - Reads from $f30 and $f31 and writes to $f30 and $f31.
|
D | mips-reginfo-fp64.s | 47 # abs.s - Reads and writes from/to $f0. 49 # round.w.d - Reads $f4 and writes to $f2. 51 # ceil.w.s - Reads $f8 and writes to $f10. 53 # cvt.s.d - Reads from $f12 and writes to $f14. 55 # abs.d - Reads from $f30 and writes to $f30.
|
/external/grpc-grpc/doc/ |
D | status_ordering.md | 1 Ordering Status and Reads in the gRPC API 5 1. Reads and Writes Must not succeed after Status has been delivered. 7 3. Reads May continue to succeed after a failing write.
|
/external/llvm/utils/TableGen/ |
D | CodeGenSchedule.cpp | 383 IdxVec &Writes, IdxVec &Reads) const { in findRWs() 388 findRWs(ReadDefs, Reads, true); 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() 556 for (IdxIter RI = SC.Reads.begin(), RE = SC.Reads.end(); RI != RE; ++RI) in collectSchedClasses() 568 IdxVec Reads; in collectSchedClasses() local 570 Writes, Reads); in collectSchedClasses() 573 for (IdxIter RI = Reads.begin(), RE = Reads.end(); RI != RE; ++RI) in collectSchedClasses() 590 ArrayRef<unsigned> Reads) const { in findSchedClassIdx() [all …]
|
D | CodeGenSchedule.h | 133 IdxVec Reads; member 149 makeArrayRef(Reads) == R; in isKeyEqual() 370 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const; 383 ArrayRef<unsigned> Reads) const; 432 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
|
D | SubtargetEmitter.cpp | 853 IdxVec Reads = SC.Reads; in GenSchedClassTables() local 867 Reads.clear(); in GenSchedClassTables() 869 Writes, Reads); in GenSchedClassTables() 879 Writes, Reads); in GenSchedClassTables() 959 for (unsigned UseIdx = 0, EndIdx = Reads.size(); in GenSchedClassTables() 962 FindReadAdvance(SchedModels.getSchedRead(Reads[UseIdx]), ProcModel); in GenSchedClassTables()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenSchedule.cpp | 756 IdxVec &Writes, IdxVec &Reads) const { in findRWs() 761 findRWs(ReadDefs, Reads, true); in findRWs() 874 IdxVec Writes, Reads; in collectSchedClasses() local 876 findRWs(Inst->TheDef->getValueAsListOfDefs("SchedRW"), Writes, Reads); in collectSchedClasses() 879 unsigned SCIdx = addSchedClass(ItinDef, Writes, Reads, /*ProcIndices*/{0}); in collectSchedClasses() 927 for (IdxIter RI = SC.Reads.begin(), RE = SC.Reads.end(); RI != RE; ++RI) in collectSchedClasses() 940 IdxVec Reads; in collectSchedClasses() local 942 Writes, Reads); in collectSchedClasses() 946 for (unsigned RIdx : Reads) in collectSchedClasses() 1032 SC.Reads = OperReads; in addSchedClass() [all …]
|
D | CodeGenSchedule.h | 133 IdxVec Reads; member 153 makeArrayRef(Reads) == R; in isKeyEqual() 562 void findRWs(const RecVec &RWDefs, IdxVec &Writes, IdxVec &Reads) const; 638 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
|
/external/llvm-project/llvm/tools/llvm-objcopy/ |
D | ObjcopyOpts.td | 60 "Reads a list of symbol pairs from <filename> and runs as if " 103 "Reads a list of symbols from <filename> and removes them " 127 "Reads a list of symbols from <filename> and marks them local.">, 139 "Reads a list of symbols from <filename> and marks them global.">, 153 "Reads a list of symbols from <filename> and runs as if " 164 "Reads a list of symbols from <filename> and marks them weak.">, 175 "Reads a list of symbols from <filename> and removes them.">, 180 "Reads a list of symbols from <filename> and runs as if "
|
/external/llvm-project/llvm/lib/MCA/ |
D | InstrBuilder.cpp | 437 ID.Reads.resize(TotalUses); in populateReads() 445 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads() 457 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads() 481 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads() 490 ID.Reads.resize(CurrentUse); in populateReads() 636 for (const ReadDescriptor &RD : D.Reads) { in createInstruction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | InstrBuilder.cpp | 427 ID.Reads.resize(TotalUses); in populateReads() 435 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads() 447 ReadDescriptor &Read = ID.Reads[CurrentUse + I]; in populateReads() 471 ReadDescriptor &Read = ID.Reads[CurrentUse]; in populateReads() 480 ID.Reads.resize(CurrentUse); in populateReads() 633 for (const ReadDescriptor &RD : D.Reads) { in createInstruction()
|
/external/llvm-project/polly/lib/Transform/ |
D | MaximalStaticExpansion.cpp | 75 SmallPtrSetImpl<MemoryAccess *> &Reads, Scop &S, 172 SmallPtrSetImpl<MemoryAccess *> &Reads, Scop &S, in isExpandable() argument 177 Reads.insert(MA); in isExpandable() 299 Reads.insert(MA); in isExpandable()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | CalcSpillWeights.cpp | 234 bool Reads, Writes; in weightCalcHelper() local 235 std::tie(Reads, Writes) = MI->readsWritesVirtualRegister(LI.reg()); in weightCalcHelper() 236 Weight = LiveIntervals::getSpillWeight(Writes, Reads, &MBFI, *MI); in weightCalcHelper()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ReadFile.pbtxt | 3 summary: "Reads and outputs the entire contents of the input filename."
|
D | api_def_CSRSparseMatrixComponents.pbtxt | 24 summary: "Reads out the CSR components at batch `index`."
|
D | api_def_ReadVariableOp.pbtxt | 15 summary: "Reads the value of a variable."
|
/external/blktrace/doc/ |
D | blktrace.tex | 163 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/autotest/client/site_tests/platform_HighResTimers/ |
D | control | 17 Reads from /proc/timer_list to see if any reported timers have nanosecond
|
/external/llvm/lib/CodeGen/ |
D | EarlyIfConversion.cpp | 274 SmallVector<unsigned, 8> Reads; in findInsertionPoint() local 300 Reads.push_back(Reg); in findInsertionPoint() 303 while (!Reads.empty()) in findInsertionPoint() 304 for (MCRegUnitIterator Units(Reads.pop_back_val(), TRI); Units.isValid(); in findInsertionPoint()
|
/external/protobuf/examples/ |
D | list_people.dart | 35 // Reads the entire address book from a file and prints all
|
/external/webrtc/modules/audio_processing/transient/test/ |
D | readPCM.m | 14 %Reads a signal from a PCM file.
|
D | readDetection.m | 14 %Reads a detection signal from a DAT file.
|
/external/llvm-project/polly/test/ScopInfo/ |
D | read-only-scalar-used-in-phi-2.ll | 12 ; Verify that we do not model the read from %sum. Reads that only happen in
|