W1_PAGE_SIZE       65 drivers/w1/slaves/w1_ds2433.c 	int	off = block * W1_PAGE_SIZE;
W1_PAGE_SIZE       79 drivers/w1/slaves/w1_ds2433.c 	w1_read_block(sl->master, &data->memory[off], W1_PAGE_SIZE);
W1_PAGE_SIZE       82 drivers/w1/slaves/w1_ds2433.c 	if (crc16(CRC16_INIT, &data->memory[off], W1_PAGE_SIZE) == CRC16_VALID)
W1_PAGE_SIZE      158 drivers/w1/slaves/w1_ds2433.c 	u8 rdbuf[W1_PAGE_SIZE + 3];
W1_PAGE_SIZE      222 drivers/w1/slaves/w1_ds2433.c 	for (idx = 0; idx < count; idx += W1_PAGE_SIZE) {
W1_PAGE_SIZE      223 drivers/w1/slaves/w1_ds2433.c 		if (crc16(CRC16_INIT, &buf[idx], W1_PAGE_SIZE) != CRC16_VALID) {
W1_PAGE_SIZE      236 drivers/w1/slaves/w1_ds2433.c 		len = W1_PAGE_SIZE - (addr & W1_PAGE_MASK);
W1_PAGE_SIZE       33 drivers/w1/slaves/w1_ds250x.c #define OFF2PG(off)	((off) / W1_PAGE_SIZE)
W1_PAGE_SIZE       42 drivers/w1/slaves/w1_ds250x.c 	DECLARE_BITMAP(page_present, W1_DS2505_SIZE / W1_PAGE_SIZE);
W1_PAGE_SIZE       49 drivers/w1/slaves/w1_ds250x.c 	int pgoff = pageno * W1_PAGE_SIZE;
W1_PAGE_SIZE       71 drivers/w1/slaves/w1_ds250x.c 	w1_read_block(sl->master, &data->eprom[pgoff], W1_PAGE_SIZE);
W1_PAGE_SIZE       74 drivers/w1/slaves/w1_ds250x.c 	if (w1_calc_crc8(&data->eprom[pgoff], W1_PAGE_SIZE) != crc8)
W1_PAGE_SIZE       97 drivers/w1/slaves/w1_ds250x.c 	epoff = pgoff = pageno * W1_PAGE_SIZE;
W1_PAGE_SIZE      121 drivers/w1/slaves/w1_ds250x.c 		pgoff = (redir ^ 0xff) * W1_PAGE_SIZE;
W1_PAGE_SIZE      125 drivers/w1/slaves/w1_ds250x.c 	w1_read_block(sl->master, &data->eprom[epoff], W1_PAGE_SIZE);
W1_PAGE_SIZE      127 drivers/w1/slaves/w1_ds250x.c 	crc = crc16(CRC16_INIT, &data->eprom[epoff], W1_PAGE_SIZE);
W1_PAGE_SIZE       75 drivers/w1/slaves/w1_ds28e04.c 	int	off = block * W1_PAGE_SIZE;
W1_PAGE_SIZE       89 drivers/w1/slaves/w1_ds28e04.c 	w1_read_block(sl->master, &data->memory[off], W1_PAGE_SIZE);
W1_PAGE_SIZE       92 drivers/w1/slaves/w1_ds28e04.c 	if (crc16(CRC16_INIT, &data->memory[off], W1_PAGE_SIZE) == CRC16_VALID)
W1_PAGE_SIZE      163 drivers/w1/slaves/w1_ds28e04.c 	u8 rdbuf[W1_PAGE_SIZE + 3];
W1_PAGE_SIZE      243 drivers/w1/slaves/w1_ds28e04.c 		for (idx = 0; idx < count; idx += W1_PAGE_SIZE) {
W1_PAGE_SIZE      244 drivers/w1/slaves/w1_ds28e04.c 			if (crc16(CRC16_INIT, &buf[idx], W1_PAGE_SIZE)
W1_PAGE_SIZE      259 drivers/w1/slaves/w1_ds28e04.c 		len = W1_PAGE_SIZE - (addr & W1_PAGE_MASK);