Lines Matching refs:checkpt_byte_offs
171 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_open()
176 dev->checkpt_byte_offs = dev->data_bytes_per_chunk; in yaffs2_checkpt_open()
246 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_flush_buffer()
271 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes; in yaffs2_checkpt_wr()
275 dev->checkpt_byte_offs++; in yaffs2_checkpt_wr()
280 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_wr()
281 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) in yaffs2_checkpt_wr()
305 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_rd()
306 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) { in yaffs2_checkpt_rd()
338 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_rd()
347 *data_bytes = dev->checkpt_buffer[dev->checkpt_byte_offs]; in yaffs2_checkpt_rd()
350 dev->checkpt_byte_offs++; in yaffs2_checkpt_rd()
364 if (dev->checkpt_byte_offs != 0) in yaffs_checkpt_close()