Lines Matching defs:to
17 * along with this program; if not, write to the Free Software
36 int to = from + len;
38 int to_byte = to / 8;
46 c = ((unsigned char)(c << (8 - to % 8))) >> (8 - to % 8);
55 if (from_byte < to_byte && (to % 8 != 0)) {
57 c = ((unsigned char)(c << (8 - to % 8))) >> (8 - to % 8);
67 int to = from + len;
69 int to_byte = to / 8;
76 left = (c >> (to % 8)) << (to % 8);
80 c = (unsigned char)(c << (from % 8 + 8 - to % 8)) >> (8 -
81 to % 8);
98 if (to % 8 != 0) {
101 c = c >> (to % 8) << (to % 8);
102 c |= ((unsigned char)(cv << (8 - to % 8))) >> (8 -
103 to % 8);
193 bump up the slot number to the 3rd slot */