Home | History | Annotate | Download | only in src

Lines Matching defs:send_size

68   send_size,		/* how big are individual sends		*/
501 /* we should pick a default send_size, it should not be larger than */
507 if (send_size == 0) {
508 send_size = 1024;
521 /* send_size is bigger than the socket size, so we must check... the */
525 send_width = (lsw_size/send_size) + 1;
530 send_size,
534 send_message.maxlen = send_size;
535 send_message.len = send_size;
731 bytes_remaining -= send_size;
747 send_message.len = (send_size - 1);
787 /* send_size, so we really didn't send what he asked for ;-) */
789 bytes_sent = ((double) send_size * (double) nummessages) + (double) len;
864 send_size, /* how large were the sends */
888 send_size, /* how large were the sends */
1677 /* send_size, so we really didn't send what he asked for ;-) We use */
1957 /* now, we want to see if we need to set the send_size */
1958 if (send_size == 0) {
1959 send_size = 1024;
1969 message = (char *)malloc(send_size * (send_width + 1) + local_send_align + local_send_offset);
1971 printf("malloc(%d) failed!\n", send_size * (send_width + 1) + local_send_align + local_send_offset);
1979 send_message.maxlen = send_size;
1980 send_message.len = send_size;
2003 dlpi_cl_stream_request->message_size = send_size;
2181 bytes_sent = send_size * messages_sent;
2185 bytes_recvd = send_size * messages_recvd;
2263 send_size, /* how large were the sends */
2291 send_size, /* how large were the sends */
2505 /* message of less than send_size bytes... */
2543 /* The loop now exits due timer or < send_size bytes received. */
3086 /* send_size, so we really didn't send what he asked for ;-) We use */
4003 send_size = atoi(optarg);