Searched refs:write (Results 151 - 175 of 1243) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dgmon-sol2.c115 write( 2 , MSG , sizeof(MSG) );
120 write( 2 , MSG , sizeof(MSG) );
132 write( 2 , MSG , sizeof(MSG) );
213 write( fd , sbuf , ssiz );
229 write( fd , &rawarc , sizeof rawarc );
264 * access to %o7 and %i7 directly) but the call to write() at the end
400 write(2, TOLIMIT, sizeof(TOLIMIT));
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dfeeder_format.c29 * long as the sample values can be read _and_ write.
56 intpcm_write_t *write; local
88 intpcm_write_t *write; member in struct:__anon11703
143 wr_op = feed_format_ops[i].write;
165 info->write = wr_op;
250 info->write(dst, v);
296 return (feed_format_ops[i].write);
/freebsd-11-stable/usr.bin/dtc/
H A Ddtb.cc47 void write(dtc::byte_buffer &buffer, int fd) function in namespace:__anon6
53 ssize_t r = ::write(fd, data, size);
118 write(buffer, fd);
249 write(buffer, fd);
259 header::write(output_writer &out) function in class:dtc::dtb::header
329 string_table::write(dtb::output_writer &writer) function in class:dtc::dtb::string_table
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp56 void write(uint64_t V) { LE.write<uint64_t>(V); } function in class:llvm::ProfOStream
69 write(P[K].D[I]);
119 LE.write<offset_type>(N);
131 LE.write<offset_type>(M);
137 Out.write(K.data(), N);
151 LE.write<uint64_t>(ProfileData.first); // Function hash
152 LE.write<uint64_t>(ProfRecord.Counts.size());
154 LE.write<uint64_t>(I);
161 Out.write((cons
377 void InstrProfWriter::write(raw_fd_ostream &OS) { function in class:InstrProfWriter
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h9 // This file declares generic functions to read and write endian specific data.
99 inline void write(void *memory, value_type value, endianness endian) { function in namespace:llvm::support::endian
109 inline void write(void *memory, value_type value) { function in namespace:llvm::support::endian
110 write<value_type, alignment>(memory, value, endian);
157 write<value_type, endian, alignment>(memory, value);
223 endian::write<value_type, endian, alignment>(
261 endian::write<value_type, endian, alignment>(Ptr, NewValue);
389 template <typename T> inline void write(void *P, T V, endianness E) {
390 write<T, unaligned>(P, V, E);
393 template <typename T, endianness E> inline void write(voi
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp87 OS.write((const char *)&Header, header_size);
122 OS.write(reinterpret_cast<const char *>(&(TempSec)),
138 OS.write(reinterpret_cast<const char *>(&(TempSec)),
148 OS.write(LC.PayloadString.c_str(), LC.PayloadString.length());
183 OS.write(reinterpret_cast<const char *>(&tool),
193 OS.write(reinterpret_cast<char *>(FillData.data()), Size);
199 OS.write(reinterpret_cast<char *>(FillData.data()), Size);
217 OS.write(reinterpret_cast<const char *>(&(Data.LCStruct##_data)), \
228 OS.write(reinterpret_cast<const char *>(&(Data.load_command_data)),
238 OS.write(reinterpret_cas
[all...]
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dqp.c64 /* NOTE len16 cannot be large enough to write to the
216 wqe->write.r2 = 0;
217 wqe->write.stag_sink = htobe32(wr->wr.rdma.rkey);
218 wqe->write.to_sink = htobe64(wr->wr.rdma.remote_addr);
221 ret = build_immd(sq, wqe->write.u.immd_src, wr,
225 size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
228 ret = build_isgl(wqe->write.u.isgl_src,
232 size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
236 wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
237 wqe->write
[all...]
/freebsd-11-stable/lib/libc/tests/resolv/
H A Dresolv_test.c108 (void)write(STDOUT_FILENO, buf, len);
116 (void)write(STDOUT_FILENO, buf, len);
133 (void)write(STDOUT_FILENO, buf, len);
140 (void)write(STDOUT_FILENO, buf, len);
156 (void)write(STDOUT_FILENO, buf, len);
164 (void)write(STDOUT_FILENO, buf, len);
186 (void)write(STDOUT_FILENO, buf, len);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp103 return "read lock of a write locked mutex";
105 return "read unlock of a write locked mutex";
144 Printf(" %s M%llu", m.write ? "write" : "read", m.id);
149 static const char *MopDesc(bool first, bool write, bool atomic) { argument
150 return atomic ? (first ? (write ? "Atomic write" : "Atomic read")
151 : (write ? "Previous atomic write" : "Previous atomic read"))
152 : (first ? (write
156 ExternalMopDesc(bool first, bool write) argument
[all...]
/freebsd-11-stable/sbin/dump/
H A Ddumprmt.c245 write(rmtape, line, strlen(line));
246 write(rmtape, buf, count);
247 return (rmtreply("write"));
256 write(rmtape, line, strlen(line));
263 write(rmtape, buf, count);
270 return (rmtreply("write"));
313 if (write(rmtape, buf, strlen(buf)) != strlen(buf))
/freebsd-11-stable/usr.bin/split/
H A Dsplit.c227 if (write(ofd, bfr, dist) != dist)
228 err(EX_IOERR, "write");
236 if (write(ofd,
238 err(EX_IOERR, "write");
245 if (write(ofd, C, len) != len)
246 err(EX_IOERR, "write");
252 if (write(ofd, bfr, len) != len)
253 err(EX_IOERR, "write");
276 /* If line is too long to deal with, just write it out */
299 if (write(of
[all...]
/freebsd-11-stable/usr.bin/rsh/
H A Drsh.c273 wc = write(rem, bp, cc);
321 (void)write(STDERR_FILENO, buf, cc);
330 (void)write(STDOUT_FILENO, buf, cc);
340 write(STDERR_FILENO, message, sizeof(message) - 1);
350 (void)write(rfd2, &signo, 1);
/freebsd-11-stable/tests/sys/kern/
H A Dpdeathsig.c193 rc = write(pipe_cb[1], ".", 1);
203 rc = write(pipe_ca[1], ".", 1);
269 rc = write(pipe_cd[1], "x", 1);
279 rc = write(pipe_ca[1], ".", 1);
306 rc = write(pipe_db[1], ".", 1);
/freebsd-11-stable/usr.sbin/lpr/lpd/
H A Dprintjob.c170 (void) write(STDOUT_FILENO, "", 1); /* ack that daemon is started */
228 * write process id for others to know
232 if (write(lfd, line, i) != i) {
233 syslog(LOG_ERR, "%s: write(%s): %m", pp->printer,
271 * write the name of the current control file into the lock file
283 if (write(lfd, line, i) != i)
284 syslog(LOG_ERR, "%s: write(%s): %m", pp->printer,
359 (void) write(ofd, pp->form_feed,
362 (void) write(ofd, pp->trailer,
649 (void) write(of
[all...]
/freebsd-11-stable/contrib/dma/
H A Dlocal.c201 syslog(LOG_NOTICE, "local delivery deferred: can not write header: %m");
204 if (write(mbox, line, error) != error)
231 if (write(mbox, gt, 1) != 1)
239 if ((size_t)write(mbox, line, linelen) != linelen)
246 syslog(LOG_ERR, "local delivery failed: write error: %m");
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dtest-mem.c77 (void)write(fd, msg, sizeof(msg) - 1);
78 (void)write(fd, testname, strlen(testname));
79 (void)write(fd, "\n", 1);
/freebsd-11-stable/lib/libc/db/test/
H A Ddbtest.c191 if (write(ofd, p + 1, len - 1) != len - 1 ||
192 write(ofd, "\n", 1) != 1)
193 err("write: %s", strerror(errno));
366 (void)write(ofd, data.data, data.size);
368 (void)write(ofd, "\n", 1);
376 (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1);
414 (void)write(ofd, NOOVERWRITE, sizeof(NOOVERWRITE) - 1);
433 (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1);
467 (void)write(ofd, data.data, data.size);
469 (void)write(of
[all...]
/freebsd-11-stable/usr.bin/tip/tip/
H A Dtipout.c67 write(repdes[1],&ccc,1);
103 write(repdes[1], &reply, 1);
170 write(STDOUT_FILENO, buf, cnt);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c211 if (write(ofd, p + 1, len - 1) != (ssize_t)len - 1 ||
212 write(ofd, "\n", 1) != 1)
213 err(1, "write failed");
382 (void)write(ofd, data.data, data.size);
384 (void)write(ofd, "\n", 1);
392 (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1);
428 (void)write(ofd, NOOVERWRITE, sizeof(NOOVERWRITE) - 1);
445 (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1);
477 (void)write(ofd, data.data, data.size);
479 (void)write(of
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dmevent_test.c152 write(fd, buf, len);
153 write(0, buf, len);
178 write(1, buf, len);
/freebsd-11-stable/usr.sbin/extattrctl/
H A Dextattrctl.c129 if (write(i, &uef, sizeof(uef)) == -1)
136 wlen = write(i, zero_buf, sizeof zero_buf);
138 wlen = write(i, zero_buf, easize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DStringTableBuilder.cpp43 // Make room to write the table size later.
54 void StringTableBuilder::write(raw_ostream &OS) const { function in class:StringTableBuilder
58 write((uint8_t *)Data.data());
64 void StringTableBuilder::write(uint8_t *Buf) const { function in class:StringTableBuilder
/freebsd-11-stable/contrib/subversion/
H A Dgen-make.py66 generator.write()
318 opt_conf.write('[options]\n')
320 opt_conf.write(opt + ' = ' + val + '\n')
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_emitter_utils.c289 return write (fd, &c, 1);
296 if (write (fd, &c, 1) == -1) {
303 if (write (fd, buf, len) == -1) {
319 return write (fd, str, len);
329 return write (fd, intbuf, strlen (intbuf));
350 return write (fd, nbuf, strlen (nbuf));
/freebsd-11-stable/lib/libcompat/4.3/
H A Drexec.c338 (void) write(s, "", 1);
358 (void) write(s, num, strlen(num)+1);
370 (void) write(s, name, strlen(name) + 1);
372 (void) write(s, pass, strlen(pass) + 1);
373 (void) write(s, cmd, strlen(cmd) + 1);
380 (void) write(2, &c, 1);

Completed in 227 milliseconds

1234567891011>>