Lines Matching defs:no_bytes
242 uint16_t no_bytes = 0, total_bytes = 0, pending_bytes = 0;
266 no_bytes = (pending_bytes > sizeof(purex->els_frame_payload)) ?
269 memcpy(buf, &purex->els_frame_payload[0], no_bytes);
270 buffer_copy_offset += no_bytes;
271 pending_bytes -= no_bytes;
297 no_bytes = (pending_bytes > sizeof(new_pkt->data)) ?
299 if ((buffer_copy_offset + no_bytes) <= total_bytes) {
301 no_bytes);
302 buffer_copy_offset += no_bytes;
303 pending_bytes -= no_bytes;
861 uint16_t no_bytes = 0, total_bytes = 0, pending_bytes = 0;
882 no_bytes = (pending_bytes > payload_size) ? payload_size :
895 memcpy(iocb_pkt, &purls->payload[0], no_bytes);
897 memcpy(iocb_pkt, &purex->els_frame_payload[0], no_bytes);
898 buffer_copy_offset += no_bytes;
899 pending_bytes -= no_bytes;
935 no_bytes = (pending_bytes > sizeof(new_pkt->data)) ?
937 if ((buffer_copy_offset + no_bytes) <= total_bytes) {
939 new_pkt->data, no_bytes);
940 buffer_copy_offset += no_bytes;
941 pending_bytes -= no_bytes;
1158 uint16_t no_bytes = 0, total_bytes = 0, pending_bytes = 0;
1168 no_bytes = (pending_bytes > sizeof(purex->els_frame_payload)) ?
1180 memcpy(fpin_pkt, &purex->els_frame_payload[0], no_bytes);
1181 buffer_copy_offset += no_bytes;
1182 pending_bytes -= no_bytes;
1215 no_bytes = (pending_bytes > sizeof(new_pkt->data)) ?
1217 if ((buffer_copy_offset + no_bytes) <= total_bytes) {
1220 no_bytes);
1221 buffer_copy_offset += no_bytes;
1222 pending_bytes -= no_bytes;