Home
last modified time | relevance | path

Searched refs:BytesWritten (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp128 size_t BytesWritten = 0; in writeLoadCommandData() local
135 BytesWritten += sizeof(MachO::section); in writeLoadCommandData()
137 return BytesWritten; in writeLoadCommandData()
143 size_t BytesWritten = 0; in writeLoadCommandData() local
151 BytesWritten += sizeof(MachO::section_64); in writeLoadCommandData()
153 return BytesWritten; in writeLoadCommandData()
157 size_t BytesWritten = 0; in writePayloadString() local
160 BytesWritten = LC.PayloadString.length(); in writePayloadString()
162 return BytesWritten; in writePayloadString()
189 size_t BytesWritten = 0; in writeLoadCommandData() local
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpixtract/
H A Daxutils.c523 int BytesWritten; in AxConvertAndWrite() local
541 BytesWritten = fwrite (Gbl_BinaryData, 1, BytesConverted, OutputFile); in AxConvertAndWrite()
542 if (BytesWritten != BytesConverted) in AxConvertAndWrite()
548 return (BytesWritten); in AxConvertAndWrite()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp249 uint32_t BytesWritten = 0; in readBytes() local
261 ::memcpy(WriteBuffer + BytesWritten, ChunkStart, BytesInChunk); in readBytes()
263 BytesWritten += BytesInChunk; in readBytes()
397 uint32_t BytesWritten = 0; in writeBytes() local
403 const uint8_t *Chunk = Buffer.data() + BytesWritten; in writeBytes()
411 BytesWritten += BytesToWriteInChunk; in writeBytes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DPath.cpp990 int BytesRead = 0, BytesWritten = 0; in copy_file_internal() local
996 BytesWritten = write(WriteFD, Buf, BytesRead); in copy_file_internal()
997 if (BytesWritten < 0) in copy_file_internal()
999 BytesRead -= BytesWritten; in copy_file_internal()
1001 if (BytesWritten < 0) in copy_file_internal()
1006 if (BytesRead < 0 || BytesWritten < 0) in copy_file_internal()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp65 size_t BytesWritten = in printFileHeaders() local
67 if (BytesWritten) in printFileHeaders()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMachObjectWriter.cpp440 uint64_t BytesWritten = sizeof(MachO::linker_option_command); in writeLinkerOptionsLoadCommand() local
444 BytesWritten += Option.size() + 1; in writeLinkerOptionsLoadCommand()
449 offsetToAlignment(BytesWritten, is64Bit() ? Align(8) : Align(4))); in writeLinkerOptionsLoadCommand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp524 uint64_t BytesWritten = EltSize - Offset; in ReadDataFromGlobal() local
525 assert(BytesWritten <= EltSize && "Not indexing into this element?"); in ReadDataFromGlobal()
526 if (BytesWritten >= BytesLeft) in ReadDataFromGlobal()
530 BytesLeft -= BytesWritten; in ReadDataFromGlobal()
531 CurPtr += BytesWritten; in ReadDataFromGlobal()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwinioctl.d425 LARGE_INTEGER BytesWritten;