Lines Matching defs:bytes
188 /* HB port not available. Send the message 4 bytes at a time. */
191 unsigned int bytes = min_t(size_t, msg_len, 4);
194 memcpy(&word, msg, bytes);
195 msg_len -= bytes;
196 msg += bytes;
243 /* HB port not available. Retrieve the message 4 bytes at a time. */
246 unsigned int bytes = min_t(unsigned long, reply_len, 4);
260 memcpy(reply, &ebx, bytes);
261 reply_len -= bytes;
262 reply += bytes;