Searched refs:s64 (Results 1 - 25 of 50) sorted by relevance

12

/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dcompress.h29 extern s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count,
H A Ddevice.h91 s64 (*seek)(struct ntfs_device *dev, s64 offset, int whence);
92 s64 (*read)(struct ntfs_device *dev, void *buf, s64 count);
93 s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count);
94 s64 (*pread)(struct ntfs_device *dev, void *buf, s64 count, s64 offset);
95 s64 (*pwrit
[all...]
H A Dcrypto.h43 extern s64 ntfs_crypto_attr_pread(ntfs_attr *na, const s64 pos, s64 count,
H A Drunlist.h49 s64 length; /* Run length in clusters. */
54 extern s64 ntfs_rl_pread(const ntfs_volume *vol, const runlist_element *rl,
55 const s64 pos, s64 count, void *b);
56 extern s64 ntfs_rl_pwrite(const ntfs_volume *vol, const runlist_element *rl,
57 const s64 pos, s64 count, void *b);
60 s64 pos, const s64 count);
68 extern int ntfs_get_nr_significant_bytes(const s64
[all...]
H A Dntfstime.h32 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000)
57 * NTFS uses Microsoft's standard time format which is stored in a s64 and is
66 return cpu_to_sle64((s64)utc_time * 10000000 + NTFS_TIME_OFFSET);
H A Dlcnalloc.h41 extern runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
47 s64 count);
H A Dbitmap.h103 extern int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count);
104 extern int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count);
115 static __inline__ int ntfs_bitmap_set_bit(ntfs_attr *na, s64 bit)
129 static __inline__ int ntfs_bitmap_clear_bit(ntfs_attr *na, s64 bit)
H A Dattrib.h191 s64 allocated_size;
192 s64 data_size;
193 s64 initialized_size;
194 s64 compressed_size;
280 const s64 allocated_size, const s64 data_size,
281 const s64 initialized_size, const s64 compressed_size,
288 extern s64 ntfs_attr_pread(ntfs_attr *na, const s64 po
[all...]
H A Dtypes.h47 typedef int64_t s64; typedef
84 typedef s64 VCN;
86 typedef s64 LCN;
94 typedef s64 LSN;
H A Dmft.h31 const s64 count, MFT_RECORD *b);
58 const s64 count, MFT_RECORD *b);
H A Ddir.h106 const int name_len, const int name_type, const s64 pos,
109 extern int ntfs_readdir(ntfs_inode *dir_ni, s64 *pos,
H A Dendians.h171 #define sle64_to_cpu(x) (s64)__le64_to_cpu((sle64)(x))
175 #define sle64_to_cpup(x) (s64)__le64_to_cpu(*(const sle64*)(x))
191 #define cpu_to_sle64(x) (__force sle64)__cpu_to_le64((s64)(x))
195 #define cpu_to_sle64p(x) (__force sle64)__cpu_to_le64(*(const s64*)(x))
216 (sle64)cpu_to_sle64((s64)1);
222 (s64)sle64_to_cpu((__force sle64)1);
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscat.h34 s64 inode; /* Inode to work with */
H A Dntfscluster.h49 s64 range_begin; /* Look for objects in this range */
50 s64 range_end;
H A Dntfsundelete.h56 s64 size_begin; /* Range for file size */
57 s64 size_end;
58 s64 mft_begin; /* Range for mft copy */
59 s64 mft_end;
H A Dutils.h46 int utils_parse_size(const char *value, s64 *size, BOOL scale);
47 int utils_parse_range(const char *string, s64 *start, s64 *finish, BOOL scale);
H A Dntfsresize.c144 s64 bytes;
149 s64 size;
165 s64 lcn; /* last used LCN for a "special" file/attr type */
166 s64 inode; /* inode using it */
174 s64 inuse; /* num of clusters in use */
185 s64 new_volume_size; /* in clusters; 0 = --info w/o --size */
190 s64 inuse; /* num of clusters in use */
192 s64 mftmir_old; /* $MFTMirr AT_DATA's old LCN */
195 s64 badclusters; /* num of physically dead clusters */
206 s64 last_unsup
[all...]
H A Dntfsclone.c128 s64 size;
142 s64 inuse; /* number of clusters in use */
198 s64 device_size;
199 s64 nr_clusters;
200 s64 inuse;
491 static s64 is_critical_metadata(ntfs_walk_clusters_ctx *image, runlist *rl)
493 s64 inode = image->ni->mft_no;
507 s64 s = (s64)16384 - rl->vcn * vol->cluster_size;
620 static void lseek_to_cluster(s64 lc
[all...]
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Ddevice.c166 static s64 fake_pread(struct ntfs_device *dev, void *b, s64 count,
167 s64 pos __attribute__((unused)))
191 s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count, void *b)
193 s64 br, total;
195 s64 (*_pread)(struct ntfs_device *, void *, s64, s64);
[all...]
H A Dunix_io.c176 static s64 ntfs_device_unix_io_seek(struct ntfs_device *dev, s64 offset,
192 static s64 ntfs_device_unix_io_read(struct ntfs_device *dev, void *buf,
193 s64 count)
208 static s64 ntfs_device_unix_io_write(struct ntfs_device *dev, const void *buf,
209 s64 count)
230 static s64 ntfs_device_unix_io_pread(struct ntfs_device *dev, void *buf,
231 s64 count, s64 offset)
247 static s64 ntfs_device_unix_io_pwrit
[all...]
H A Dbitmap.c59 static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit,
60 s64 count, int value)
63 s64 bufsize, br, left = count;
226 int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count)
242 int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count)
H A Drunlist.c272 s64 merged_length;
687 drl[ds].length = (s64)0;
738 s64 deltaxcn; /* Change in [vl]cn. */
816 deltaxcn = (s64)-1;
933 rl[rlpos].length = (s64)0;
1035 s64 ntfs_rl_pread(const ntfs_volume *vol, const runlist_element *rl,
1036 const s64 pos, s64 count, void *b)
1038 s64 bytes_read, to_read, ofs, total;
1083 if (bytes_read == (s64)
[all...]
H A Dcompress.c324 s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count, void *b)
326 s64 br, to_read, ofs, total, total2;
437 s64 tdata_size, tinitialized_size;
482 s64 tdata_size, tinitialized_size;
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Djfs.h104 typedef long long s64; typedef
136 #define addressPXD(pxd) (((s64)((pxd)->addr1)) << 32 | ((pxd)->addr2))
174 s64 s_size; /* 8: aggregate size in hardware/LVM blocks;
231 s64 s_xsize; /* 8: extendfs s_size */
380 s64 next; /* 8: next sibling */
381 s64 prev; /* 8: previous sibling */
414 #define offsetXAD(xad) (((s64)((xad)->off1)) << 32 | ((xad)->off2))
415 #define addressXAD(xad) (((s64)((xad)->addr1)) << 32 | ((xad)->addr2))
427 s64 next; /* 8: */
428 s64 pre
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/jfs/
H A Djfs_superblock.h48 s64 s_size; /* 8: aggregate size in hardware/LVM blocks;
105 s64 s_xsize; /* 8: extendfs s_size */

Completed in 87 milliseconds

12