Searched refs:shift (Results 1 – 13 of 13) sorted by relevance
34 size_t shift = 0; in pop_front() local42 value |= (static_cast<size_t>(byte & 127) << shift); in pop_front()43 shift += 7; in pop_front()46 if (shift < size && (byte & 64)) { in pop_front()47 value |= -(static_cast<size_t>(1) << shift); in pop_front()
43 shift[2] = { variable79 x += shift[sign]; in rintl()80 x -= shift[sign]; in rintl()
100 size_t shift = 0; in Dequeue() local106 value |= (static_cast<uint_t>(byte & 127) << shift); in Dequeue()107 shift += 7; in Dequeue()112 if (shift < size && (byte & 64)) in Dequeue()113 value |= -(static_cast<uint_t>(1) << shift); in Dequeue()
41 __u32 shift; member
134 #define FIELD_MASK(shift,bits) (((1 << (bits))-1) << (shift)) argument137 #define FIELD_TO_BITS(val,shift,bits) (((val) & ((1 << (bits))-1)) << (shift)) argument140 #define FIELD_FROM_BITS(val,shift,bits) (((val) >> (shift)) & ((1 << (bits))-1)) argument
376 int shift = 64 - 8*bytelen; in out_vformat() local377 value = static_cast<uint64_t>((static_cast<int64_t>(value << shift)) >> shift); in out_vformat()
36 __u8 shift; member
41 int shift; member
43 move a0, a1 # shift args down
84 int32_t shift; member
101 __u32 shift; member
76 return((u_int32_t)((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift); in ns_msg_getflag()
145 struct _ns_flagdata { int mask, shift; }; member