Lines Matching refs:de_buf

353 	char *dlimit, *de_buf;
357 de_buf = first_de;
358 dlimit = de_buf + bytes;
360 while (de_buf < dlimit - OCFS2_DIR_MEMBER_LEN) {
364 de = (struct ocfs2_dir_entry *) de_buf;
386 de_buf += de_len;
1214 char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data;
1220 de_buf = start;
1221 de = (struct ocfs2_dir_entry *)de_buf;
1223 if (de_buf != trailer) {
1229 de_buf += le16_to_cpu(de->rec_len);
1230 de = (struct ocfs2_dir_entry *)de_buf;
1231 } while (de_buf < limit);
2625 char *de_buf, *limit;
2631 de_buf = dirent_bh->b_data;
2632 limit = de_buf + dir->i_sb->s_blocksize;
2634 while (de_buf < limit) {
2635 de = (struct ocfs2_dir_entry *)de_buf;
2656 de_buf += le16_to_cpu(de->rec_len);
2670 char *de_buf, *limit;
2678 de_buf = dirent_bh->b_data;
2679 limit = de_buf + dir->i_sb->s_blocksize;
2681 while (de_buf < limit) {
2682 de = (struct ocfs2_dir_entry *)de_buf;
2700 de_buf += le16_to_cpu(de->rec_len);
2713 char *de_buf, *limit;
2717 de_buf = di->id2.i_data.id_data;
2718 limit = de_buf + i_size_read(dir);
2720 while (de_buf < limit) {
2721 de = (struct ocfs2_dir_entry *)de_buf;
2726 de_buf += le16_to_cpu(de->rec_len);
2753 char *de_buf, *limit;
2764 de_buf = start;
2765 de = (struct ocfs2_dir_entry *)de_buf;
2772 de_buf += le16_to_cpu(de->rec_len);
2773 de = (struct ocfs2_dir_entry *)de_buf;
2774 } while (de_buf < limit);
3377 char *first_de, *de_buf, *limit;
3391 de_buf = first_de;
3392 limit = de_buf + i_size_read(dir);
3395 while (de_buf < limit) {
3396 de = (struct ocfs2_dir_entry *)de_buf;
3422 de_buf += le16_to_cpu(de->rec_len);