HomeSort by relevance Sort by last modified time
    Searched defs:BytesToWrite (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetSockOpt/
SetSockOpt.c 175 socklen_t BytesToWrite;
187 BytesToWrite = 0;
201 BytesToWrite = sizeof ( *Value.i32);
214 BytesToWrite = sizeof ( *Value.TimeVal );
223 if ( 0 == BytesToWrite ) {
230 return BytesToWrite;
249 socklen_t BytesToWrite;
298 BytesToWrite = 0;
300 || ( 0 < ( BytesToWrite = GetOptionValue ( pOption, Argv[2])))) {
325 (BOOLEAN)( 0 == BytesToWrite ));
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/NorFlashDxe/
NorFlashDxe.c 918 UINTN BytesToWrite;
967 BytesToWrite = *NumBytes;
970 while (BytesToWrite > 0) {
982 TmpBuf = *((UINT32*)(Buffer + (*NumBytes - BytesToWrite)));
986 if (BytesToWrite >= 4) {
998 BytesToWrite -= sizeof(TmpBuf);
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 318 size_t BytesToWrite = Size - (Size % NumBytes);
319 write_impl(Ptr, BytesToWrite);
320 size_t BytesRemaining = Size - BytesToWrite;
323 return write(Ptr + BytesToWrite, BytesRemaining);
325 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 305 size_t BytesToWrite = Size - (Size % NumBytes);
306 write_impl(Ptr, BytesToWrite);
307 copy_to_buffer(Ptr + BytesToWrite, Size - BytesToWrite);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
raw_ostream.cpp 243 size_t BytesToWrite = Size - (Size % NumBytes);
244 write_impl(Ptr, BytesToWrite);
245 size_t BytesRemaining = Size - BytesToWrite;
248 return write(Ptr + BytesToWrite, BytesRemaining);
250 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 239 size_t BytesToWrite = Size - (Size % NumBytes);
240 write_impl(Ptr, BytesToWrite);
241 size_t BytesRemaining = Size - BytesToWrite;
244 return write(Ptr + BytesToWrite, BytesRemaining);
246 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);

Completed in 692 milliseconds