Home
last modified time | relevance | path

Searched refs:NTFS_BUF_SIZE (Results 1 – 7 of 7) sorted by relevance

/third_party/ntfs-3g/libntfs-3g/
Dlogfile.c731 char buf[NTFS_BUF_SIZE]; in ntfs_empty_logfile()
744 memset(buf, -1, NTFS_BUF_SIZE); in ntfs_empty_logfile()
749 if (count > NTFS_BUF_SIZE) in ntfs_empty_logfile()
750 count = NTFS_BUF_SIZE; in ntfs_empty_logfile()
Dattrib.c1257 buf = ntfs_calloc(NTFS_BUF_SIZE); in ntfs_attr_fill_zero()
1270 size = min(end - pos, NTFS_BUF_SIZE); in ntfs_attr_fill_zero()
/third_party/ntfs-3g/ntfsprogs/
Dntfscmp.c604 u8 buf1[NTFS_BUF_SIZE]; in cmp_attribute_data()
605 u8 buf2[NTFS_BUF_SIZE]; in cmp_attribute_data()
609 count1 = ntfs_attr_pread(na1, pos, NTFS_BUF_SIZE, buf1); in cmp_attribute_data()
610 count2 = ntfs_attr_pread(na2, pos, NTFS_BUF_SIZE, buf2); in cmp_attribute_data()
Dntfscp.c1120 buf = malloc(NTFS_BUF_SIZE); in main()
1134 br = fread(buf, 1, NTFS_BUF_SIZE, in); in main()
Dntfsclone.c1858 u8 bm[NTFS_BUF_SIZE];
1865 count = ntfs_attr_pread(vol->lcnbmp_na, pos, NTFS_BUF_SIZE, bm);
Dntfsresize.c938 u8 bm[NTFS_BUF_SIZE]; in compare_bitmaps()
945 count = ntfs_attr_pread(vol->lcnbmp_na, pos, NTFS_BUF_SIZE, bm); in compare_bitmaps()
/third_party/ntfs-3g/include/ntfs-3g/
Dvolume.h176 #define NTFS_BUF_SIZE 8192 macro