Home
last modified time | relevance | path

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

/external/libnfc-nxp/src/
DphFriNfc_NdefRecord.c551 uint32_t *BytesWritten) in phFriNfc_NdefRecord_Generate() argument
559 if(Record==NULL ||Buffer==NULL||BytesWritten==NULL||MaxBufferSize == 0) in phFriNfc_NdefRecord_Generate()
575 *BytesWritten = i_data; in phFriNfc_NdefRecord_Generate()
/external/llvm/lib/Support/
DPath.cpp877 int BytesRead = 0, BytesWritten = 0; in copy_file() local
883 BytesWritten = write(WriteFD, Buf, BytesRead); in copy_file()
884 if (BytesWritten < 0) in copy_file()
886 BytesRead -= BytesWritten; in copy_file()
888 if (BytesWritten < 0) in copy_file()
895 if (BytesRead < 0 || BytesWritten < 0) in copy_file()
/external/llvm/lib/MC/
DMachObjectWriter.cpp420 uint64_t BytesWritten = sizeof(MachO::linker_option_command); in writeLinkerOptionsLoadCommand() local
424 BytesWritten += Option.size() + 1; in writeLinkerOptionsLoadCommand()
428 writeBytes("", OffsetToAlignment(BytesWritten, is64Bit() ? 8 : 4)); in writeLinkerOptionsLoadCommand()
/external/llvm/lib/Analysis/
DConstantFolding.cpp377 uint64_t BytesWritten = EltSize - Offset; in ReadDataFromGlobal() local
378 assert(BytesWritten <= EltSize && "Not indexing into this element?"); in ReadDataFromGlobal()
379 if (BytesWritten >= BytesLeft) in ReadDataFromGlobal()
383 BytesLeft -= BytesWritten; in ReadDataFromGlobal()
384 CurPtr += BytesWritten; in ReadDataFromGlobal()