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

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dcompress.h29 extern s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count,
H A Dntfstime.h32 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000)
43 static __inline__ time_t ntfs2utc(s64 ntfs_time)
57 * NTFS uses Microsoft's standard time format which is stored in a s64 and is
63 static __inline__ s64 utc2ntfs(time_t utc_time)
66 return cpu_to_sle64((s64)utc_time * 10000000 + NTFS_TIME_OFFSET);
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 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);
65 extern int ntfs_get_nr_significant_bytes(const s64 n);
71 const s64 n);
80 extern s64 ntfs_rl_get_compressed_siz
[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 Dattrib.h180 s64 allocated_size;
181 s64 data_size;
182 s64 initialized_size;
183 s64 compressed_size;
249 const s64 allocated_size, const s64 data_size,
250 const s64 initialized_size, const s64 compressed_size,
257 extern s64 ntfs_attr_pread(ntfs_attr *na, const s64 po
[all...]
H A Dtypes.h45 typedef int64_t s64; typedef
66 typedef s64 VCN;
68 typedef s64 LCN;
76 typedef s64 LSN;
H A Dlcnalloc.h41 extern runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count,
47 s64 count);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_extent.h25 extern int extAlloc(struct inode *, s64, s64, xad_t *, bool);
27 extern int extHint(struct inode *, s64, xad_t *);
28 extern int extRealloc(struct inode *, s64, xad_t *, bool);
H A Djfs_xtree.h61 ( ((s64)((xad)->off1)) << 32 | __le32_to_cpu((xad)->off2))
63 ( ((s64)((xad)->addr1)) << 32 | __le32_to_cpu((xad)->addr2))
111 extern int xtLookup(struct inode *ip, s64 lstart, s64 llen,
112 int *pflag, s64 * paddr, int *plen, int flag);
117 int xflag, s64 xoff, int xlen, s64 * xaddrp, int flag);
118 extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen,
122 s64 xoff, int xlen, s64 xadd
[all...]
H A Djfs_dmap.h54 #define MAXL0SIZE ((s64)1 << L2MAXL0SIZE)
55 #define MAXL1SIZE ((s64)1 << L2MAXL1SIZE)
56 #define MAXL2SIZE ((s64)1 << L2MAXL2SIZE)
140 ((s64)(a) << (JFS_SBI((ip)->i_sb)->bmap->db_agl2size))
224 s64 dn_mapsize; /* number of blocks in aggregate */
225 s64 dn_nfree; /* num free blks in aggregate map */
236 s64 dn_agfree[MAXAG]; /* per AG free count */
237 s64 dn_agsize; /* num of blks per alloc group */
285 (((b) & (((s64)1 << ((m) + L2LPERCTL)) - 1)) >> (m))
297 extern int dbFree(struct inode *ipbmap, s64 blkn
[all...]
H A Djfs_extent.c31 static int extBalloc(struct inode *, s64, s64 *, s64 *);
33 static int extBrealloc(struct inode *, s64, s64, s64 *, s64 *);
35 static s64 extRoundDown(s64 nb);
86 extAlloc(struct inode *ip, s64 xle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dbitmap.h32 extern int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit,
33 const s64 count, const u8 value, const bool is_rollback);
48 const s64 start_bit, const s64 count, const u8 value)
65 static inline int ntfs_bitmap_set_run(struct inode *vi, const s64 start_bit,
66 const s64 count)
82 static inline int ntfs_bitmap_clear_run(struct inode *vi, const s64 start_bit,
83 const s64 count)
97 static inline int ntfs_bitmap_set_bit(struct inode *vi, const s64 bit)
111 static inline int ntfs_bitmap_clear_bit(struct inode *vi, const s64 bi
[all...]
H A Dtypes.h43 typedef s64 VCN;
45 typedef s64 LCN;
53 typedef s64 LSN;
61 typedef s64 USN;
H A Dattrib.h79 const s64 size, const s64 initialized_size);
81 static inline s64 ntfs_attr_size(const ATTR_RECORD *a)
84 return (s64)le32_to_cpu(a->data.resident.value_length);
96 const ATTR_TYPE type, const s64 size);
108 extern s64 ntfs_attr_extend_allocation(ntfs_inode *ni, s64 new_alloc_size,
109 const s64 new_data_size, const s64 data_start);
111 extern int ntfs_attr_set(ntfs_inode *ni, const s64 of
[all...]
H A Dlcnalloc.h44 const VCN start_vcn, const s64 count, const LCN start_lcn,
48 extern s64 __ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn,
49 s64 count, ntfs_attr_search_ctx *ctx, const bool is_rollback);
107 static inline s64 ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn,
108 s64 count, ntfs_attr_search_ctx *ctx)
H A Dtime.h30 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000)
44 * NTFS uses Microsoft's standard time format which is stored in a s64 and is
54 return cpu_to_sle64((s64)ts.tv_sec * 10000000 + ts.tv_nsec / 100 +
81 * NTFS uses Microsoft's standard time format which is stored in a s64 and is
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/celleb/
H A Dbeat_wrapper.h26 extern s64 beat_hcall_norets(u64 opcode, ...);
27 extern s64 beat_hcall_norets8(u64 opcode, u64 arg1, u64 arg2, u64 arg3,
29 extern s64 beat_hcall1(u64 opcode, u64 retbuf[1], ...);
30 extern s64 beat_hcall2(u64 opcode, u64 retbuf[2], ...);
31 extern s64 beat_hcall3(u64 opcode, u64 retbuf[3], ...);
32 extern s64 beat_hcall4(u64 opcode, u64 retbuf[4], ...);
33 extern s64 beat_hcall5(u64 opcode, u64 retbuf[5], ...);
34 extern s64 beat_hcall6(u64 opcode, u64 retbuf[6], ...);
36 static inline s64 beat_downcount_of_interrupt(u64 plug_id)
41 static inline s64 beat_set_interrupt_mas
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dpercpu_counter.h19 s64 count;
29 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
42 s64 percpu_counter_sum(struct percpu_counter *fbc);
44 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
54 static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
56 s64 ret = fbc->count;
67 s64 count;
70 static inline void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
87 static inline s64 percpu_counter_read(struct percpu_counter *fbc)
92 static inline s64 percpu_counter_read_positiv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Ddevice.c176 s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count, void *b)
178 s64 br, total;
226 s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
229 s64 written, total, ret = -1;
297 s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 po
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dtypes.h67 typedef __signed__ long s64; typedef
73 typedef __signed__ long long s64; typedef
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dtypes.h72 typedef signed long long s64; typedef
75 typedef signed long s64; typedef
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dtypes.h67 typedef __signed__ long s64; typedef
73 typedef __signed__ long long s64; typedef
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/ps3/
H A Dexports.c24 extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/sk98lin/h/
H A Dsktypes.h53 #define SK_I64 s64

Completed in 182 milliseconds

123456789