Home | History | Annotate | Download | only in src

Lines Matching defs:byte

75 /*  Purpose  : Save the current_word into the buffer, byte-swap, and        */
85 uint8 *write_pnt, byte;
88 /* check number of bytes in current_word, must always be byte-aligned!!!! */
99 /* write word, byte-by-byte */
105 byte = (current_word >> num_bits) & 0xFF;
106 if (byte != 0)
108 *write_pnt++ = byte;
115 *write_pnt++ = byte;
251 /* check whether it's byte-aligned */