Lines Matching defs:byte
70 /* Set @pos to the position of the byte containing @start_bit. */
73 /* Calculate the position of @start_bit in the first byte. */
76 /* If the first byte is partial, modify the appropriate bits in it. */
78 u8 *byte = kaddr + pos;
82 *byte |= 1 << bit++;
84 *byte &= ~(1 << bit++);
101 /* Update @len to point to the first not-done byte in the page. */
126 * The currently mapped page is the last one. If the last byte is
128 * position of the last byte inside the page.
131 u8 *byte;
136 byte = kaddr + len;
139 *byte |= 1 << bit;
141 *byte &= ~(1 << bit);