• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/

Lines Matching refs:s64

91 	s64 pos;		/* Logical current position on the volume. */
92 s64 part_start;
93 s64 part_length;
95 s64 geo_size, geo_cylinders;
360 static s64 ntfs_device_win32_getsize(HANDLE handle)
370 return ((s64)hiword << 32) + loword;
383 static s64 ntfs_device_win32_getdisklength(HANDLE handle)
413 static s64 ntfs_device_win32_getntfssize(HANDLE handle)
415 s64 rvl;
587 s64 part_offset, s64 part_length, int flags)
683 s64 *part_offset, s64 *part_length, int *hidden_sectors)
754 s64 part_start, part_length;
768 s64 tmp;
890 static s64 ntfs_device_win32_seek(struct ntfs_device *dev, s64 offset,
893 s64 abs_ofs;
945 static s64 ntfs_device_win32_pio(win32_fd *fd, const s64 pos,
946 const s64 count, void *b, const BOOL write)
998 static inline s64 ntfs_device_win32_pread_simple(win32_fd *fd, const s64 pos,
999 const s64 count, void *b)
1013 static s64 ntfs_device_win32_read(struct ntfs_device *dev, void *b, s64 count)
1015 s64 old_pos, to_read, i, br = 0;
1023 ~(s64)(NTFS_BLOCK_SIZE - 1);
1047 s64 vol_to_read = fd->geo_size - old_pos;
1050 old_pos & ~(s64)(NTFS_BLOCK_SIZE - 1),
1067 fd->pos & ~(s64)(NTFS_BLOCK_SIZE - 1), to_read,
1182 static inline s64 ntfs_device_win32_pwrite_simple(win32_fd *fd, const s64 pos,
1183 const s64 count, const void *b)
1197 static s64 ntfs_device_win32_write(struct ntfs_device *dev, const void *b,
1198 s64 count)
1200 s64 old_pos, to_write, i, bw = 0;
1208 ~(s64)(NTFS_BLOCK_SIZE - 1);
1231 s64 end;
1243 old_pos & ~(s64)(NTFS_BLOCK_SIZE - 1),
1261 end & ~(s64)(NTFS_BLOCK_SIZE - 1),
1274 s64 vol_to_write = fd->geo_size - old_pos;
1277 old_pos & ~(s64)(NTFS_BLOCK_SIZE - 1),
1294 fd->pos & ~(s64)(NTFS_BLOCK_SIZE - 1), to_write,
1425 *(s64 *)argp = fd->part_length;
1454 static s64 ntfs_device_win32_pread(struct ntfs_device *dev, void *b,
1455 s64 count, s64 offset)
1460 static s64 ntfs_device_win32_pwrite(struct ntfs_device *dev, const void *b,
1461 s64 count, s64 offset)