Home
last modified time | relevance | path

Searched refs:CALC_DENT_SIZE (Results 1 – 3 of 3) sorted by relevance

/linux/fs/ubifs/
H A Ddir.c332 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_create()
781 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_link()
851 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_unlink()
960 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_rmdir()
1032 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_mkdir()
1121 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_mknod()
1207 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_symlink()
1382 new_sz = CALC_DENT_SIZE(fname_len(&new_nm)); in do_rename()
1383 old_sz = CALC_DENT_SIZE(fname_len(&old_nm)); in do_rename()
1441 old_sz -= CALC_DENT_SIZE(fname_le in do_rename()
[all...]
H A Ddebug.c1156 size += CALC_DENT_SIZE(fname_len(&nm)); in dbg_check_dir()
2126 fscki1->calc_xsz += CALC_DENT_SIZE(nlen); in check_leaf()
2130 fscki1->calc_sz += CALC_DENT_SIZE(nlen); in check_leaf()
H A Dubifs.h113 #define CALC_DENT_SIZE(name_len) ALIGN(UBIFS_DENT_NODE_SZ + (name_len) + 1, 8) macro