Home
last modified time | relevance | path

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

/openbmc/u-boot/fs/ext4/
H A Dext4_write.c847 char *temp_ptr = NULL; in ext4fs_write() local
933 temp_ptr = zalloc(fs->blksz); in ext4fs_write()
934 if (!temp_ptr) in ext4fs_write()
944 temp_ptr); in ext4fs_write()
945 if (ext4fs_log_journal(temp_ptr, itable_blkno)) in ext4fs_write()
948 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz); in ext4fs_write()
949 if (ext4fs_put_metadata(temp_ptr, itable_blkno)) in ext4fs_write()
965 memset(temp_ptr, '\0', fs->blksz); in ext4fs_write()
967 0, fs->blksz, temp_ptr); in ext4fs_write()
968 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno)) in ext4fs_write()
[all …]
H A Dext4_common.c197 unsigned char *temp_ptr = NULL; in put_ext4() local
219 temp_ptr = sec_buf; in put_ext4()
220 memcpy((temp_ptr + remainder), (unsigned char *)buf, size); in put_ext4()
228 temp_ptr = sec_buf; in put_ext4()
229 memcpy(temp_ptr, buf, size); in put_ext4()