| /src/sys/lib/libsa/ |
| write.c | 1 /* $NetBSD: write.c,v 1.15 2007/12/02 04:59:26 tsutsui Exp $ */ 34 * @(#)write.c 8.1 (Berkeley) 6/11/93 67 write(int fd, const void *destp, size_t bcount) function
|
| /src/external/bsd/libfido2/dist/openbsd-compat/ |
| posix_win.h | 42 #define write(fd, buf, count) posix_write(fd, buf, count) macro
|
| /src/lib/libc/rpc/ |
| svc_fdset.h | 13 # undef write macro 14 # define write(a, b, c) rump_sys_write(a, b, c) macro
|
| /src/sys/dev/fdt/ |
| fdt_gpio.h | 46 void (*write)(device_t, void *, int, bool); member in struct:fdtbus_gpio_controller_func
|
| /src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
| vchiq_util.h | 46 int write; member in struct:__anon6396
|
| /src/sys/rump/librump/rumpvfs/ |
| vm_vfs.c | 40 uvm_aio_aiodone_pages(struct vm_page **pgs, int npages, bool write, int error) 53 KASSERT(!write); 77 bool write; local 80 write = BUF_ISWRITE(bp); 97 uvm_aio_aiodone_pages(pgs, npages, write, error); 99 if (write && (bp->b_cflags & BC_AGE) != 0) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| EndianStream.h | 27 inline void write(raw_ostream &os, value_type value, endianness endian) { function in namespace:llvm::support::endian 29 os.write((const char *)&value, sizeof(value_type)); 33 inline void write<float>(raw_ostream &os, float value, endianness endian) { function in namespace:llvm::support::endian 34 write(os, FloatToBits(value), endian); 38 inline void write<double>(raw_ostream &os, double value, function in namespace:llvm::support::endian 40 write(os, DoubleToBits(value), endian); 44 inline void write(raw_ostream &os, ArrayRef<value_type> vals, function in namespace:llvm::support::endian 47 write(os, v, endian); 50 /// Adapter to write values to a stream in a particular byte order. 55 template <typename value_type> void write(ArrayRef<value_type> Val) function in struct:llvm::support::endian::Writer 58 template <typename value_type> void write(value_type Val) { function in struct:llvm::support::endian::Writer [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| MsgPackWriter.cpp | 23 void Writer::writeNil() { EW.write(FirstByte::Nil); } 25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); } function in class:Writer 27 void Writer::write(int64_t i) { function in class:Writer 29 write(static_cast<uint64_t>(i)); 34 EW.write(static_cast<int8_t>(i)); 39 EW.write(FirstByte::Int8); 40 EW.write(static_cast<int8_t>(i)); 45 EW.write(FirstByte::Int16); 46 EW.write(static_cast<int16_t>(i)) 60 void Writer::write(uint64_t u) { function in class:Writer 88 void Writer::write(double d) { function in class:Writer 101 void Writer::write(StringRef s) { function in class:Writer 121 void Writer::write(MemoryBufferRef Buffer) { function in class:Writer [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| SampleProfWriter.cpp | 1 //===- SampleProfWriter.cpp - Write LLVM sample profile data --------------===// 69 SampleProfileWriter::write(const StringMap<FunctionSamples> &ProfileMap) { function in class:SampleProfileWriter 133 std::error_code SampleProfileWriterExtBinaryBase::write( 161 // Write out the table size. 164 // Write out FuncOffsetTable. 200 // Write out the MD5 name table. We wrote unencoded MD5 so reader can 206 Writer.write(MD5Hash(N)); 237 if (std::error_code EC = ProfSymList->write(*OutputStream)) 370 std::error_code SampleProfileWriterCompactBinary::write( 372 if (std::error_code EC = SampleProfileWriter::write(ProfileMap) [all...] |
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| test_hooks.h | 12 # define write JEMALLOC_TEST_HOOK(write, test_hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| test_hooks.h | 12 # define write JEMALLOC_TEST_HOOK(write, test_hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| hooks.h | 11 #define write JEMALLOC_HOOK(write, hooks_libc_hook) macro
|
| /src/external/bsd/libfido2/dist/fuzz/ |
| preload-fuzz.c | 90 write(int fd, const void *buf, size_t nbytes) function 93 write_f = dlsym(RTLD_NEXT, "write");
|
| /src/include/ |
| rmt.h | 62 #define write rmtwrite macro
|
| /src/sys/arch/hpc/stand/hpcboot/ |
| file_fat.cpp | 98 FatFile::write(const void *buf, size_t bytes, off_t ofs) function in class:FatFile
|
| file_ufs.cpp | 123 UfsFile::write(const void *buf, size_t bytes, off_t ofs) function in class:UfsFile
|
| /src/sys/arch/i386/stand/lib/test/ |
| sanamespace.h | 11 #undef write macro
|
| /src/external/apache2/llvm/dist/llvm/lib/XRay/ |
| FDRTraceWriter.cpp | 9 // Test a utility that can write out XRay FDR Mode formatted trace files. 26 static size_t write(support::endian::Writer &OS, Tuple &&T) { 27 OS.write(std::get<Index>(T)); 28 return sizeof(std::get<Index>(T)) + IndexedWriter<Index + 1>::write(OS, T); 36 static size_t write(support::endian::Writer &OS, Tuple &&) { function in struct:llvm::xray::__anon3270::IndexedWriter 44 // we ensure this is the case when we write out the first byte of the record. 47 // Write in field order. 48 OS.write(FirstByte); 49 auto Bytes = IndexedWriter<0>::write(OS, T); 50 assert(Bytes <= 15 && "Must only ever write at most 16 byte metadata!") [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/ |
| Writer.cpp | 57 Error Writer::write() { function in class:llvm::objcopy::wasm::Writer 61 // Write the header. 62 Out.write(Obj.Header.Magic.data(), Obj.Header.Magic.size()); 65 Out.write(reinterpret_cast<const char *>(&Version), sizeof(Version)); 67 // Write each section. 69 Out.write(SectionHeaders[I].data(), SectionHeaders[I].size()); 70 Out.write(reinterpret_cast<const char *>(Obj.Sections[I].Contents.data()),
|
| /src/external/bsd/libpcap/dist/testprogs/ |
| unix.h | 54 #define write _write macro
|
| /src/external/bsd/ntp/dist/libntp/ |
| icom.c | 23 #undef write /* ports/winnt/include/config.h: #define write _write */ macro 25 #define write(fd, data, octets) async_write(fd, data, octets) macro 71 * 1 (short write to device) 91 rc = write(fd, cmd, temp + 7); 93 msyslog(LOG_ERR, "icom_freq: write() failed: %m");
|
| /src/external/gpl2/gettext/lib/libnlspr/ |
| Makefile | 66 write-catalog.c \ 67 write-csharp.c \ 68 write-java.c \ 69 write-mo.c \ 70 write-po.c \ 71 write-properties.c \ 72 write-qt.c \ 73 write-resources.c \ 74 write-stringtable.c \ 75 write-tcl. [all...] |
| /src/sys/arch/sh3/sh3/ |
| process_machdep.c | 193 int write = 0, error; local 201 write = 1; 215 uio.uio_rw = write ? UIO_WRITE : UIO_READ;
|