Lines Matching defs:bytes
172 /* HB port not available. Send the message 4 bytes at a time. */
175 unsigned int bytes = min_t(size_t, msg_len, 4);
178 memcpy(&word, msg, bytes);
179 msg_len -= bytes;
180 msg += bytes;
226 /* HB port not available. Retrieve the message 4 bytes at a time. */
229 unsigned int bytes = min_t(unsigned long, reply_len, 4);
243 memcpy(reply, &ebx, bytes);
244 reply_len -= bytes;
245 reply += bytes;