Home
last modified time | relevance | path

Searched refs:checkpt_byte_offs (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/fs/yaffs2/
H A Dyaffs_checkptrw.c170 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_open()
175 dev->checkpt_byte_offs = dev->data_bytes_per_chunk; in yaffs2_checkpt_open()
245 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_flush_buffer()
270 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes; in yaffs2_checkpt_wr()
274 dev->checkpt_byte_offs++; in yaffs2_checkpt_wr()
279 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_wr()
280 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) in yaffs2_checkpt_wr()
304 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_rd()
305 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) { in yaffs2_checkpt_rd()
337 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_rd()
[all …]
H A Dyaffs_guts.h657 int checkpt_byte_offs; member