Lines Matching defs:marker
185 /* XXX check if this is the correct marker */
201 nand_bbt_block_mark(device_t self, flash_off_t block, uint8_t marker)
212 marker = (marker << ((block % 4) * 2));
214 /* set byte containing the 2 bit marker for this block */
216 bbt->nbbt_bitmap[block / 4] |= marker;
225 uint8_t byte, marker;
231 /* get byte containing the 2 bit marker for this block */
234 /* extract the 2 bit marker from the byte */
235 marker = (byte >> ((block % 4) * 2)) & 0x03;
237 switch (marker) {
247 panic("error in marker extraction");