Lines Matching refs:this_tx
127 int this_tx; in yaffs_summary_write() local
147 this_tx = n_bytes; in yaffs_summary_write()
148 if (this_tx > sum_bytes_per_chunk) in yaffs_summary_write()
149 this_tx = sum_bytes_per_chunk; in yaffs_summary_write()
151 memcpy(buffer + sizeof(hdr), sum_buffer, this_tx); in yaffs_summary_write()
152 tags.n_bytes = this_tx + sizeof(hdr); in yaffs_summary_write()
162 n_bytes -= this_tx; in yaffs_summary_write()
163 sum_buffer += this_tx; in yaffs_summary_write()
190 int this_tx; in yaffs_summary_read() local
202 this_tx = n_bytes; in yaffs_summary_read()
203 if (this_tx > sum_bytes_per_chunk) in yaffs_summary_read()
204 this_tx = sum_bytes_per_chunk; in yaffs_summary_read()
212 tags.n_bytes != (this_tx + sizeof(hdr))) in yaffs_summary_read()
223 memcpy(sum_buffer, buffer + sizeof(hdr), this_tx); in yaffs_summary_read()
224 n_bytes -= this_tx; in yaffs_summary_read()
225 sum_buffer += this_tx; in yaffs_summary_read()