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

12

/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcompress.h29 extern s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count,
32 extern s64 ntfs_compressed_pwrite(ntfs_attr *na, runlist_element *brl, s64 wpos,
33 s64 offs, s64 to_write, s64 rounded,
38 s64 offs, VCN *update_from);
H A Ddevice.h96 s64 (*seek)(struct ntfs_device *dev, s64 offset, int whence);
97 s64 (*read)(struct ntfs_device *dev, void *buf, s64 count);
98 s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count);
99 s64 (*pread)(struct ntfs_device *dev, void *buf, s64 count, s64 offset);
100 s64 (*pwrit
[all...]
H A Dlcnalloc.h41 extern runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
45 extern int ntfs_cluster_free_basic(ntfs_volume *vol, s64 lcn, s64 count);
48 s64 count);
H A Drunlist.h49 s64 length; /* Run length in clusters. */
57 extern s64 ntfs_rl_pread(const ntfs_volume *vol, const runlist_element *rl,
58 const s64 pos, s64 count, void *b);
59 extern s64 ntfs_rl_pwrite(const ntfs_volume *vol, const runlist_element *rl,
60 s64 ofs, const s64 pos, s64 count, void *b);
68 extern int ntfs_get_nr_significant_bytes(const s64 n);
74 const s64
[all...]
H A Dbitmap.h42 extern int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count);
43 extern int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count);
54 static __inline__ int ntfs_bitmap_set_bit(ntfs_attr *na, s64 bit)
68 static __inline__ int ntfs_bitmap_clear_bit(ntfs_attr *na, s64 bit)
H A Dtypes.h45 typedef int64_t s64; typedef
66 typedef s64 VCN;
68 typedef s64 LCN;
76 typedef s64 LSN;
H A Dattrib.h192 s64 allocated_size;
193 s64 data_size;
194 s64 initialized_size;
195 s64 compressed_size;
283 const s64 allocated_size, const s64 data_size,
284 const s64 initialized_size, const s64 compressed_size,
293 extern s64 ntfs_attr_pread(ntfs_attr *na, const s64 po
[all...]
H A Dntfstime.h57 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000)
71 s64 cputime;
76 - (s64)spec.tv_sec*10000000)*100;
101 s64 units;
103 units = (s64)spec.tv_sec * 10000000
H A Ddevice.c202 s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count, void *b)
204 s64 br, total;
252 s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
255 s64 written, total, ret = -1;
326 s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 po
[all...]
H A Dwin32_io.c91 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_offse
[all...]
H A Dunix_io.c223 static s64 ntfs_device_unix_io_seek(struct ntfs_device *dev, s64 offset,
239 static s64 ntfs_device_unix_io_read(struct ntfs_device *dev, void *buf,
240 s64 count)
255 static s64 ntfs_device_unix_io_write(struct ntfs_device *dev, const void *buf,
256 s64 count)
277 static s64 ntfs_device_unix_io_pread(struct ntfs_device *dev, void *buf,
278 s64 count, s64 offset)
294 static s64 ntfs_device_unix_io_pwrit
[all...]
H A Dbitmap.c115 static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit,
116 s64 count, int value)
118 s64 bufsize, br;
268 int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count)
290 int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count)
H A Dendians.h167 #define sle64_to_cpu(x) (s64)__le64_to_cpu((s64)(x))
171 #define sle64_to_cpup(x) (s64)__le64_to_cpu(*(s64*)(x))
187 #define cpu_to_sle64(x) (s64)__cpu_to_le64((s64)(x))
191 #define cpu_to_sle64p(x) (s64)__cpu_to_le64(*(s64*)(x))
H A Dmft.h33 const s64 count, MFT_RECORD *b);
68 const s64 count, MFT_RECORD *b);
H A Dcompress.c563 s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count, void *b)
565 s64 br, to_read, ofs, total, total2;
680 s64 tdata_size, tinitialized_size;
736 s64 tdata_size, tinitialized_size;
827 s64 offs, u32 to_read, char *inbuf)
832 s64 xpos;
869 s64 offs, s32 to_write, const char *outbuf)
873 s64 xpo
[all...]
H A Defs.c79 s64 attr_size = 0;
88 if (attr_size <= (s64)size) {
258 (u8*)NULL,(s64)size);
275 res = ntfs_attr_truncate(na, (s64)size);
279 (s64)0, (s64)size, value);
280 if (written != (s64)size) {
H A Dlayout.h78 /*0x28*/s64 number_of_sectors; /* Number of sectors in volume. Gives
83 s64 mft_lcn; /* Cluster location of mft data. */
84 s64 mftmirr_lcn; /* Cluster location of copy of mft. */
327 #define ERR_MREF(x) ((u64)((s64)(x)))
328 #define MREF_ERR(x) ((int)((s64)(x)))
624 /* 90*/ s64 min_size; /* Optional minimum attribute size. */
625 /* 98*/ s64 max_size; /* Maximum size of attribute. */
792 /* 40*/ s64 allocated_size; /* Byte size of disk space
800 /* 48*/ s64 data_size; /* Byte size of the attribute
803 /* 56*/ s64 initialized_siz
[all...]
H A Dlcnalloc.c116 static s64 max_empty_bit_range(unsigned char *buf, int size)
120 s64 start_pos = -1;
137 start_pos = (s64)i * 8 - run;
153 start_pos = (s64)i * 8 + (j - run);
166 start_pos = (s64)i * 8 - run;
171 static int bitmap_writeback(ntfs_volume *vol, s64 pos, s64 size, void *b,
174 s64 written;
235 runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
242 s64 cluster
[all...]
H A Dobject_id.c280 s64 size;
287 if (size >= (s64)sizeof(GUID)) {
348 res = ntfs_attr_truncate(na, (s64)sizeof(GUID));
352 (s64)0, (s64)sizeof(GUID),
354 if (written != (s64)sizeof(GUID)) {
404 AT_UNNAMED, 0, &dummy, (s64)0);
474 s64 attr_size;
492 if (full_size <= (s64)size) {
H A Drunlist.c308 s64 merged_length;
694 drl[ds].length = (s64)0;
788 s64 deltaxcn; /* Change in [vl]cn. */
866 deltaxcn = (s64)-1;
983 rl[rlpos].length = (s64)0;
1096 s64 ntfs_rl_pread(const ntfs_volume *vol, const runlist_element *rl,
1097 const s64 pos, s64 count, void *b)
1099 s64 bytes_read, to_read, ofs, total;
1147 if (bytes_read == (s64)
[all...]
H A Ddir.h110 const int name_len, const int name_type, const s64 pos,
113 extern int ntfs_readdir(ntfs_inode *dir_ni, s64 *pos,
/haiku-fatelf/src/servers/app/drawing/
H A Ddrawing_support.h22 uint64* s64 = (uint64*)src; local
25 *d64++ = *s64++;
26 *d64++ = *s64++;
27 *d64++ = *s64++;
28 *d64++ = *s64++;
32 *d64++ = *s64++;
33 *d64++ = *s64++;
37 *d64++ = *s64++;
69 uint64* s64 = (uint64*)src; local
72 *d64++ = *s64
99 uint64 s64 = ((uint64)color << 32) | color; local
[all...]
/haiku-fatelf/headers/libs/x86emu/x86emu/
H A Dtypes.h57 #define s64 x86emus64 macro
73 typedef int64_t s64; typedef
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dutils.h45 int utils_parse_size(const char *value, s64 *size, BOOL scale);
46 int utils_parse_range(const char *string, s64 *start, s64 *finish, BOOL scale);
/haiku-fatelf/src/tests/servers/app/newerClipping/
H A Dmain.cpp235 uint64* s64 = (uint64*)src; local
238 *d64++ = *s64++;
239 *d64++ = *s64++;
240 *d64++ = *s64++;
241 *d64++ = *s64++;
245 *d64++ = *s64++;
246 *d64++ = *s64++;
250 *d64++ = *s64++;

Completed in 179 milliseconds

12