Lines Matching defs:de_buf
355 char *dlimit, *de_buf;
359 de_buf = first_de;
360 dlimit = de_buf + bytes;
362 while (de_buf < dlimit - OCFS2_DIR_MEMBER_LEN) {
366 de = (struct ocfs2_dir_entry *) de_buf;
388 de_buf += de_len;
1195 char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data;
1201 de_buf = start;
1202 de = (struct ocfs2_dir_entry *)de_buf;
1204 if (de_buf != trailer) {
1210 de_buf += le16_to_cpu(de->rec_len);
1211 de = (struct ocfs2_dir_entry *)de_buf;
1212 } while (de_buf < limit);
2603 char *de_buf, *limit;
2609 de_buf = dirent_bh->b_data;
2610 limit = de_buf + dir->i_sb->s_blocksize;
2612 while (de_buf < limit) {
2613 de = (struct ocfs2_dir_entry *)de_buf;
2634 de_buf += le16_to_cpu(de->rec_len);
2648 char *de_buf, *limit;
2656 de_buf = dirent_bh->b_data;
2657 limit = de_buf + dir->i_sb->s_blocksize;
2659 while (de_buf < limit) {
2660 de = (struct ocfs2_dir_entry *)de_buf;
2678 de_buf += le16_to_cpu(de->rec_len);
2691 char *de_buf, *limit;
2695 de_buf = di->id2.i_data.id_data;
2696 limit = de_buf + i_size_read(dir);
2698 while (de_buf < limit) {
2699 de = (struct ocfs2_dir_entry *)de_buf;
2704 de_buf += le16_to_cpu(de->rec_len);
2731 char *de_buf, *limit;
2742 de_buf = start;
2743 de = (struct ocfs2_dir_entry *)de_buf;
2750 de_buf += le16_to_cpu(de->rec_len);
2751 de = (struct ocfs2_dir_entry *)de_buf;
2752 } while (de_buf < limit);
3355 char *first_de, *de_buf, *limit;
3369 de_buf = first_de;
3370 limit = de_buf + i_size_read(dir);
3373 while (de_buf < limit) {
3374 de = (struct ocfs2_dir_entry *)de_buf;
3400 de_buf += le16_to_cpu(de->rec_len);