Lines Matching defs:cur_byte
172 unsigned int cur_byte;
190 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT)
197 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
202 result = *(data + cur_byte) >> (-cur_bitshift);
207 ++cur_byte;
209 --cur_byte;
214 result |= (unsigned long)*(data + cur_byte) << cur_bitshift;
219 ++cur_byte;
222 --cur_byte;
239 unsigned int cur_byte;
250 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT)
257 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT;
263 *(data + cur_byte) &=
266 *(data + cur_byte) |=
271 ++cur_byte;
273 --cur_byte;
281 *(data + cur_byte) &=
283 *(data + cur_byte) |= (stuff_to_put >> cur_bitshift);
286 *(data + cur_byte) = ((stuff_to_put >> cur_bitshift)
290 ++cur_byte;
292 --cur_byte;