Home
last modified time | relevance | path

Searched refs:Write (Results 1 – 25 of 482) sorted by relevance

12345678910>>...20

/openbsd-src/gnu/llvm/llvm/lib/MCA/
H A DInstrBuilder.cpp339 WriteDescriptor &Write = ID.Writes[CurrentDef]; in populateWrites() local
340 Write.OpIndex = i; in populateWrites()
345 Write.Latency = in populateWrites()
347 Write.SClassOrWriteResourceID = WLE.WriteResourceID; in populateWrites()
350 Write.Latency = ID.MaxLatency; in populateWrites()
351 Write.SClassOrWriteResourceID = 0; in populateWrites()
353 Write.IsOptionalDef = false; in populateWrites()
355 dbgs() << "\t\t[Def] OpIdx=" << Write.OpIndex in populateWrites()
356 << ", Latency=" << Write.Latency in populateWrites()
357 << ", WriteResourceID=" << Write.SClassOrWriteResourceID << '\n'; in populateWrites()
[all …]
/openbsd-src/games/sail/
H A Dassorted.c128 Write(portside(from, on, 0) ? W_GUNR : W_GUNL, in table()
133 Write(W_PCREW, on, pc, 0, 0, 0); in table()
135 Write(W_HULL, on, hull, 0, 0, 0); in table()
137 Write(W_CREW, on, crew[0], crew[1], crew[2], 0); in table()
139 Write(W_RIGG, on, rigg[0], rigg[1], rigg[2], rigg[3]); in table()
206 Write(W_TA, on, 0, 0, 0, 0); in table()
236 Write(W_UNGRAP, from, to->file->index, all, 0, 0); in Cleansnag()
237 Write(W_UNGRAP, to, from->file->index, all, 0, 0); in Cleansnag()
240 Write(W_UNFOUL, from, to->file->index, all, 0, 0); in Cleansnag()
241 Write(W_UNFOUL, to, from->file->index, all, 0, 0); in Cleansnag()
[all …]
H A Dpl_6.c76 Write(W_HULL, ms, ptr->hull, 0, 0, 0); in repair()
85 Write(W_GUNL, ms, ptr->gunL, in repair()
92 Write(W_GUNR, ms, ptr->gunR, in repair()
101 Write(W_RIG4, ms, ptr->rig4, 0, 0, 0); in repair()
105 Write(W_RIG3, ms, ptr->rig3, 0, 0, 0); in repair()
109 Write(W_RIG2, ms, ptr->rig2, 0, 0, 0); in repair()
113 Write(W_RIG1, ms, ptr->rig1, 0, 0, 0); in repair()
H A Ddr_3.c137 Write(W_FOUL, sp, l, 0, 0, 0); in moveall()
138 Write(W_FOUL, sq, n, 0, 0, 0); in moveall()
169 Write(W_ROW, sp, sp->file->row, 0, 0, 0); in moveall()
171 Write(W_COL, sp, sp->file->col, 0, 0, 0); in moveall()
173 Write(W_DIR, sp, sp->file->dir, 0, 0, 0); in moveall()
175 Write(W_DRIFT, sp, sp->file->drift, 0, 0, 0); in moveall()
268 Write(isdefense ? W_DBP : W_OBP, from, in sendbp()
343 Write(W_FS, sp, full, 0, 0, 0); in checksails()
H A Ddr_4.c59 Write(W_GRAP, from, to->file->index, 0, 0, 0); in grap()
60 Write(W_GRAP, to, from->file->index, 0, 0, 0); in grap()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h43 WriteState *Write; variable
50 Write() {} in WriteRef()
56 const WriteState *getWriteState() const { return Write; } in getWriteState()
57 WriteState *getWriteState() { return Write; } in getWriteState()
73 return Write && Other.Write && Write == Other.Write;
255 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp111 bool Rd::Write(EmulateInstructionRISCV &emulator, uint64_t value) { in Write() function in lldb_private::Rd
235 [&](T t) { return inst.rd.Write(emulator, extend(E(t))); }) in Load()
277 inst.rd.Write(emulator, extend(tmp)); in AtomicSwap()
294 inst.rd.Write(emulator, extend(tmp)); in AtomicADD()
311 inst.rd.Write(emulator, extend(value)); in AtomicBitOperate()
328 inst.rd.Write(emulator, extend(value)); in AtomicCmp()
666 bool operator()(LUI inst) { return inst.rd.Write(m_emu, SignExt(inst.imm)); } in operator ()()
670 return inst.rd.Write(m_emu, in operator ()()
678 return inst.rd.Write(m_emu, pc + delta()) && in operator ()()
687 return inst.rd.Write(m_emu, pc + delta()) && in operator ()()
[all …]
/openbsd-src/usr.bin/vi/docs/internals/
H A Dautowrite13 ^Z Y Y Write file and suspend.
18 ^^ Y Y Write file and jump.
25 ^] Y Y Write file and jump.
30 :! Y Y Write file and execute.
45 :next Y Y Y Write changes and jump.
46 :next Y Y N Write changes and jump.
52 :rewind Y Y N Write changes and jump.
60 :tag Y Y N Write changes and jump.
67 :stop Y Y N Write changes and suspend.
89 :xit Y * * Write changes and exit.
/openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp29 Write(WS) {} in WriteRef()
32 assert(Write && Write->isExecuted() && "Cannot commit before write back!"); in commit()
33 RegisterID = Write->getRegisterID(); in commit()
34 WriteResID = Write->getWriteResourceID(); in commit()
35 Write = nullptr; in commit()
39 assert(Write && Write->isExecuted() && "Not executed!"); in notifyExecuted()
44 return isValid() && (!Write || Write->isExecuted()); in hasKnownWriteBackCycle()
53 if (Write) in getWriteResourceID()
54 return Write->getWriteResourceID(); in getWriteResourceID()
59 if (Write) in getRegisterID()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util.h84 void Write(const MemLoc &ml, int size, bool expect_race = false) {
96 Write(ml, 1, expect_race); }
98 Write(ml, 2, expect_race); }
100 Write(ml, 4, expect_race); }
102 Write(ml, 8, expect_race); }
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DJSON.h27 virtual void Write(std::ostream &s) = 0;
52 void Write(std::ostream &s) override;
111 void Write(std::ostream &s) override;
140 void Write(std::ostream &s) override;
158 void Write(std::ostream &s) override;
176 void Write(std::ostream &s) override;
194 void Write(std::ostream &s) override;
238 void Write(std::ostream &s) override;
H A DJSON.cpp45 void JSONString::Write(std::ostream &s) { in Write() function in JSONString
82 void JSONNumber::Write(std::ostream &s) { in Write() function in JSONNumber
100 void JSONTrue::Write(std::ostream &s) { s << "true"; } in Write() function in JSONTrue
104 void JSONFalse::Write(std::ostream &s) { s << "false"; } in Write() function in JSONFalse
108 void JSONNull::Write(std::ostream &s) { s << "null"; } in Write() function in JSONNull
112 void JSONObject::Write(std::ostream &s) { in Write() function in JSONObject
123 key.Write(s); in Write()
125 value->Write(s); in Write()
182 void JSONArray::Write(std::ostream &s) { in Write() function in JSONArray
191 (*iter)->Write(s); in Write()
/openbsd-src/share/misc/
H A Dscsi_modes91 {Write Retention Priority} t4
128 {Write Compensation} i1
170 # Read-Write Error Recovery Page
172 {AWRE (Auto Write Reallocation Enbld)} t1
185 {Write Retry Count} i1
194 {Starting Cylinder-Write Precompensation} i3
195 {Starting Cylinder-Reduced Write Current} i3
255 {Write Buffer Full Ratio} i1
256 {Write Buffer Empty Ratio} i1
257 {Write Delay Time} i2
/openbsd-src/lib/libcurses/tinfo/
H A Dwrite_entry.c575 #define Write(buf, size, count) fake_write(buffer, offset, (size_t) limit, (char *) buf, (size_t) c… macro
583 #define WRITE_STRING(str) (Write(str, sizeof(char), strlen(str) + 1) == strlen(str) + 1)
659 ((value) % 2 != 0 && Write(&zero, sizeof(char), 1) != 1)
803 if (Write(buf, 12, 1) != 1 in _nc_write_object()
804 || Write(namelist, sizeof(char), namelen) != namelen) { in _nc_write_object()
815 if (Write(buf, sizeof(char), boolmax) != boolmax) { in _nc_write_object()
827 if (Write(buf, numlen, nummax) != nummax) { in _nc_write_object()
835 if (Write(buf, SIZEOF_SHORT, strmax) != strmax) { in _nc_write_object()
889 if (Write(buf, 10, 1) != 1) { in _nc_write_object()
895 && Write(tp->Booleans + BOOLCOUNT, sizeof(char), in _nc_write_object()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLint.cpp83 static const unsigned Write = 2; variable
255 MemRef::Read | MemRef::Write); in visitCallBase()
289 MCI->getDestAlign(), nullptr, MemRef::Write); in visitCallBase()
311 MCII->getDestAlign(), nullptr, MemRef::Write); in visitCallBase()
327 MMI->getDestAlign(), nullptr, MemRef::Write); in visitCallBase()
335 MSI->getDestAlign(), nullptr, MemRef::Write); in visitCallBase()
341 MSII->getDestAlign(), nullptr, MemRef::Write); in visitCallBase()
351 std::nullopt, nullptr, MemRef::Read | MemRef::Write); in visitCallBase()
355 std::nullopt, nullptr, MemRef::Write); in visitCallBase()
361 std::nullopt, nullptr, MemRef::Read | MemRef::Write); in visitCallBase()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_arm64.cpp206 SetError(set, Write, -1); in WriteGPR()
209 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
211 return GetError(GPRRegSet, Write); in WriteGPR()
217 SetError(set, Write, -1); in WriteFPU()
220 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
222 return GetError(FPURegSet, Write); in WriteFPU()
228 SetError(set, Write, -1); in WriteEXC()
231 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
233 return GetError(EXCRegSet, Write); in WriteEXC()
239 SetError(set, Write, -1); in WriteDBG()
[all …]
H A DRegisterContextDarwin_i386.cpp500 SetError(set, Write, -1); in WriteGPR()
503 SetError(set, Write, DoWriteGPR(GetThreadID(), set, gpr)); in WriteGPR()
505 return GetError(set, Write); in WriteGPR()
511 SetError(set, Write, -1); in WriteFPU()
514 SetError(set, Write, DoWriteFPU(GetThreadID(), set, fpu)); in WriteFPU()
516 return GetError(set, Write); in WriteFPU()
522 SetError(set, Write, -1); in WriteEXC()
525 SetError(set, Write, DoWriteEXC(GetThreadID(), set, exc)); in WriteEXC()
527 return GetError(set, Write); in WriteEXC()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DStream.cpp65 bytes_written = Write(str.data(), str.size()); in PutCString()
104 size_t Stream::PutChar(char ch) { return Write(&ch, 1); } in PutChar()
124 return Write(buf.c_str(), length); in PrintfVarArg()
149 Write(str.data(), str.size()); in operator <<()
219 Write(&uvalue, 1); in _PutHex8()
230 Write(nibble_chars, sizeof(nibble_chars)); in _PutHex8()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DMemoryFlags.h30 Write = 1U << 1, enumerator
38 << (((MP & MemProt::Write) != MemProt::None) ? 'W' : '-')
48 if ((MP & MemProt::Write) != MemProt::None) in toSysMemoryProtectionFlags()
62 MP |= MemProt::Write; in fromSysMemoryProtectionFlags()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DCommunication.cpp98 size_t Communication::Write(const void *src, size_t src_len, in Write() function in Communication
109 return connection_sp->Write(src, src_len, status, error_ptr); in Write()
121 total_written += Write(static_cast<const char *>(src) + total_written, in WriteAll()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp32 if (MP == MemProt::Write || in getWindowsProtectionFlags()
33 MP == (MemProt::Write | MemProt::Read)) { in getWindowsProtectionFlags()
39 if (MP == (MemProt::Read | MemProt::Write | MemProt::Exec)) in getWindowsProtectionFlags()
137 if ((Segment.AG.getMemProt() & MemProt::Write) == MemProt::Write) in initialize()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStream.cpp113 m_opaque_up->Write(&local_data[0], local_data.size()); in RedirectToFile()
148 m_opaque_up->Write(&local_data[0], local_data.size()); in RedirectToFile()
169 m_opaque_up->Write(&local_data[0], local_data.size()); in RedirectToFileDescriptor()
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/
H A DYAML-Tiny-META.tml4 abstract: Read/Write YAML files with as little code as possible
23 abstract => 'Read/Write YAML files with as little code as possible',
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBFile.i72 %feature("autodoc", "Write(buffer) -> SBError, written_read") Write;
73 SBError Write(const uint8_t *buf, size_t num_bytes, size_t *OUTPUT);
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFile.h105 Status Write(const void *buf, size_t &num_bytes) override;
265 virtual Status Write(const void *src, size_t &num_bytes, off_t &offset);
397 Status Write(const void *buf, size_t &num_bytes) override;
407 Status Write(const void *src, size_t &num_bytes, off_t &offset) override;

12345678910>>...20