Home
last modified time | relevance | path

Searched refs:bytesToSend (Results 1 – 2 of 2) sorted by relevance

/external/pytorch/torch/csrc/distributed/c10d/
DUtils.hpp623 size_t bytesToSend = sizeof(T) * length; in sendBytes() local
624 if (bytesToSend == 0) { in sendBytes()
643 while (bytesToSend > 0) { in sendBytes()
646 bytesSent = ::send(socket, currentBytes, bytesToSend, flags)) in sendBytes()
651 bytesToSend -= bytesSent; in sendBytes()
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
DOutboundFlowController.java315 void write(Buffer buffer, int bytesToSend, boolean endOfStream) { in write() argument
316 int bytesToWrite = bytesToSend; in write()