Home
last modified time | relevance | path

Searched refs:s64 (Results 1 – 25 of 131) sorted by relevance

123456

/third_party/ntfs-3g/include/ntfs-3g/
Ddevice.h106 s64 (*seek)(struct ntfs_device *dev, s64 offset, int whence);
107 s64 (*read)(struct ntfs_device *dev, void *buf, s64 count);
108 s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count);
109 s64 (*pread)(struct ntfs_device *dev, void *buf, s64 count, s64 offset);
110 s64 (*pwrite)(struct ntfs_device *dev, const void *buf, s64 count,
111 s64 offset);
123 extern s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count,
125 extern s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
128 extern s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 pos, s64 count,
130 extern s64 ntfs_mst_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
[all …]
Dattrib.h193 s64 allocated_size;
194 s64 data_size;
195 s64 initialized_size;
196 s64 compressed_size;
289 const s64 allocated_size, const s64 data_size,
290 const s64 initialized_size, const s64 compressed_size,
299 extern s64 ntfs_attr_pread(ntfs_attr *na, const s64 pos, s64 count,
301 extern s64 ntfs_attr_pwrite(ntfs_attr *na, const s64 pos, s64 count,
306 ntfschar *name, u32 name_len, s64 *data_size);
308 extern s64 ntfs_attr_mst_pread(ntfs_attr *na, const s64 pos,
[all …]
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);
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 n);
83 extern s64 ntfs_rl_get_compressed_size(ntfs_volume *vol, runlist *rl);
Dendians.h205 #define sle64_to_cpu(x) (s64)__le64_to_cpu((s64)(x))
209 #define sle64_to_cpup(x) (s64)__le64_to_cpu(*(s64*)(x))
225 #define cpu_to_sle64(x) (s64)__cpu_to_le64((s64)(x))
229 #define cpu_to_sle64p(x) (s64)__cpu_to_le64(*(s64*)(x))
245 #define sbe64_to_cpu(x) (s64)__be64_to_cpu((s64)(x))
249 #define sbe64_to_cpup(x) (s64)__be64_to_cpu(*(s64*)(x))
265 #define cpu_to_sbe64(x) (s64)__cpu_to_be64((s64)(x))
269 #define cpu_to_sbe64p(x) (s64)__cpu_to_be64(*(s64*)(x))
283 #define const_sle64_to_cpu(x) ((s64) __constant_le64_to_cpu((le64) x))
299 #define const_sbe64_to_cpu(x) ((s64) __constant_be64_to_cpu((be64) x))
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) in ntfs_bitmap_set_bit()
68 static __inline__ int ntfs_bitmap_clear_bit(ntfs_attr *na, s64 bit) in ntfs_bitmap_clear_bit()
Dntfstime.h57 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000)
71 s64 cputime; in ntfs2timespec()
76 - (s64)spec.tv_sec*10000000)*100; in ntfs2timespec()
101 s64 units; in timespec2ntfs()
103 units = (s64)spec.tv_sec * 10000000 in timespec2ntfs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64LegalizerInfo.cpp40 const LLT s64 = LLT::scalar(64); in AArch64LegalizerInfo() local
62 .legalFor({p0, s1, s8, s16, s32, s64, v2s32, v4s32, v2s64}) in AArch64LegalizerInfo()
63 .clampScalar(0, s1, s64) in AArch64LegalizerInfo()
68 (Query.Types[0].getElementType() != s64 || in AArch64LegalizerInfo()
73 if (EltTy == s64) in AArch64LegalizerInfo()
79 .legalFor({p0, s16, s32, s64, v2s32, v4s32, v2s64}) in AArch64LegalizerInfo()
80 .clampScalar(0, s16, s64) in AArch64LegalizerInfo()
84 .legalFor({s32, s64, v4s32, v2s32, v2s64}) in AArch64LegalizerInfo()
85 .clampScalar(0, s32, s64) in AArch64LegalizerInfo()
89 .legalFor({s32, s64, v2s32, v4s32, v2s64, v8s16, v16s8}) in AArch64LegalizerInfo()
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/linear/
Dshift-assign1.c3 typedef __INT64_TYPE__ s64; typedef
10 s16 s16s64(s16 a, s64 b) { a >>= b; return a; } in s16s64()
16 s32 s32s64(s32 a, s64 b) { a >>= b; return a; } in s32s64()
20 s64 s64s16(s64 a, s16 b);
21 s64 s64s32(s64 a, s32 b);
22 s64 s64s64(s64 a, s64 b) { a >>= b; return a; } in s64s64()
23 s64 s64u16(s64 a, u16 b) { a >>= b; return a; } in s64u16()
24 s64 s64u32(s64 a, u32 b) { a >>= b; return a; } in s64u32()
25 s64 s64u64(s64 a, u64 b) { a >>= b; return a; } in s64u64()
28 u16 u16s64(u16 a, s64 b) { a >>= b; return a; } in u16s64()
[all …]
Dshift-assign2.c3 typedef __INT64_TYPE__ s64; typedef
8 s64 s64s16(s64 a, s16 b) { a >>= b; return a; } in s64s16()
9 s64 s64s32(s64 a, s32 b) { a >>= b; return a; } in s64s32()
/third_party/ntfs-3g/libntfs-3g/
Ddevice.c205 s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count, void *b) in ntfs_pread()
207 s64 br, total; in ntfs_pread()
255 s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count, in ntfs_pwrite()
258 s64 written, total, ret = -1; in ntfs_pwrite()
329 s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 pos, s64 count, in ntfs_mst_pread()
332 s64 br, i; in ntfs_mst_pread()
386 s64 ntfs_mst_pwrite(struct ntfs_device *dev, const s64 pos, s64 count, in ntfs_mst_pwrite()
389 s64 written, i; in ntfs_mst_pwrite()
433 s64 ntfs_cluster_read(const ntfs_volume *vol, const s64 lcn, const s64 count, in ntfs_cluster_read()
436 s64 br; in ntfs_cluster_read()
[all …]
Dwin32_io.c283 s64 pos; /* Logical current position on the volume. */
284 s64 part_start;
285 s64 part_length;
287 s64 geo_size, geo_cylinders;
289 s64 volume_size;
595 static s64 ntfs_device_win32_getsize(HANDLE handle) in ntfs_device_win32_getsize()
608 return ((s64)hiword << 32) + (ULONG)loword; in ntfs_device_win32_getsize()
621 static s64 ntfs_device_win32_getdisklength(HANDLE handle) in ntfs_device_win32_getdisklength()
651 static s64 ntfs_device_win32_getntfssize(HANDLE handle) in ntfs_device_win32_getntfssize()
653 s64 rvl; in ntfs_device_win32_getntfssize()
[all …]
Dunix_io.c244 static s64 ntfs_device_unix_io_seek(struct ntfs_device *dev, s64 offset, in ntfs_device_unix_io_seek()
260 static s64 ntfs_device_unix_io_read(struct ntfs_device *dev, void *buf, in ntfs_device_unix_io_read()
261 s64 count) in ntfs_device_unix_io_read()
276 static s64 ntfs_device_unix_io_write(struct ntfs_device *dev, const void *buf, in ntfs_device_unix_io_write()
277 s64 count) in ntfs_device_unix_io_write()
298 static s64 ntfs_device_unix_io_pread(struct ntfs_device *dev, void *buf, in ntfs_device_unix_io_pread()
299 s64 count, s64 offset) in ntfs_device_unix_io_pread()
315 static s64 ntfs_device_unix_io_pwrite(struct ntfs_device *dev, const void *buf, in ntfs_device_unix_io_pwrite()
316 s64 count, s64 offset) in ntfs_device_unix_io_pwrite()
Dcompress.c709 s64 ntfs_compressed_attr_pread(ntfs_attr *na, s64 pos, s64 count, void *b) in ntfs_compressed_attr_pread()
711 s64 br, to_read, ofs, total, total2; in ntfs_compressed_attr_pread()
832 s64 tdata_size, tinitialized_size; in ntfs_compressed_attr_pread()
888 s64 tdata_size, tinitialized_size; in ntfs_compressed_attr_pread()
982 s64 offs, u32 to_read, char *inbuf) in read_clusters()
987 s64 xpos; in read_clusters()
1024 s64 offs, s32 to_write, const char *outbuf) in write_clusters()
1028 s64 xpos; in write_clusters()
1069 s64 offs, u32 insz, const char *inbuf) in ntfs_comp_set()
1239 s64 freelcn; in ntfs_compress_overwr_free()
[all …]
Dlcnalloc.c116 static s64 max_empty_bit_range(unsigned char *buf, int size) in max_empty_bit_range()
120 s64 start_pos = -1; in max_empty_bit_range()
137 start_pos = (s64)i * 8 - run; in max_empty_bit_range()
153 start_pos = (s64)i * 8 + (j - run); in max_empty_bit_range()
166 start_pos = (s64)i * 8 - run; in max_empty_bit_range()
171 static int bitmap_writeback(ntfs_volume *vol, s64 pos, s64 size, void *b, in bitmap_writeback()
174 s64 written; in bitmap_writeback()
235 runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count, in ntfs_cluster_alloc()
242 s64 clusters, br; in ntfs_cluster_alloc()
580 s64 nr_freed = 0; in ntfs_cluster_free_from_rl()
[all …]
Dbitmap.c115 static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, in ntfs_bitmap_set_bits_in_run()
116 s64 count, int value) in ntfs_bitmap_set_bits_in_run()
118 s64 bufsize, br; in ntfs_bitmap_set_bits_in_run()
268 int ntfs_bitmap_set_run(ntfs_attr *na, s64 start_bit, s64 count) in ntfs_bitmap_set_run()
290 int ntfs_bitmap_clear_run(ntfs_attr *na, s64 start_bit, s64 count) in ntfs_bitmap_clear_run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86LegalizerInfo.cpp113 const LLT s64 = LLT::scalar(64); in setLegalizerInfo32bit() local
189 for (const auto &Ty : {s16, s32, s64}) { in setLegalizerInfo32bit()
209 const LLT s64 = LLT::scalar(64); in setLegalizerInfo64bit() local
212 setAction({G_IMPLICIT_DEF, s64}, Legal); in setLegalizerInfo64bit()
217 setAction({G_PHI, s64}, Legal); in setLegalizerInfo64bit()
220 setAction({BinOp, s64}, Legal); in setLegalizerInfo64bit()
223 setAction({MemOp, s64}, Legal); in setLegalizerInfo64bit()
226 setAction({G_PTR_ADD, 1, s64}, Legal); in setLegalizerInfo64bit()
228 .legalForCartesianProduct({s1, s8, s16, s32, s64}, {p0}) in setLegalizerInfo64bit()
229 .maxScalar(0, s64) in setLegalizerInfo64bit()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsLegalizerInfo.cpp58 const LLT s64 = LLT::scalar(64); in MipsLegalizerInfo() local
88 {s64, p0, 64, ST.hasMips32r6()}})) in MipsLegalizerInfo()
101 .legalFor({s32, s64}); in MipsLegalizerInfo()
104 .legalFor({{s32, s64}}); in MipsLegalizerInfo()
107 .legalFor({{s64, s32}}); in MipsLegalizerInfo()
123 .legalForCartesianProduct({p0, s32, s64}, {s32}) in MipsLegalizerInfo()
138 .legalFor({p0, s32, s64}) in MipsLegalizerInfo()
154 .libcallFor({s64}); in MipsLegalizerInfo()
207 .legalFor({s32, s64}); in MipsLegalizerInfo()
211 if (CheckTyN(0, Query, {s32, s64})) in MipsLegalizerInfo()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_blit_copy.c66 __m64* s64 = (__m64*)src; in SDL_memcpyMMX() local
69 d64[0] = s64[0]; in SDL_memcpyMMX()
70 d64[1] = s64[1]; in SDL_memcpyMMX()
71 d64[2] = s64[2]; in SDL_memcpyMMX()
72 d64[3] = s64[3]; in SDL_memcpyMMX()
73 d64[4] = s64[4]; in SDL_memcpyMMX()
74 d64[5] = s64[5]; in SDL_memcpyMMX()
75 d64[6] = s64[6]; in SDL_memcpyMMX()
76 d64[7] = s64[7]; in SDL_memcpyMMX()
79 s64 += 8; in SDL_memcpyMMX()
/third_party/ntfs-3g/ntfsprogs/
Dntfswipe.c82 s64 size_alloc;
83 s64 size_data; /* Actual size of data */
104 s64 size_alloc;
105 s64 size_data; /* Actual size of data */
107 s64 size_init;
116 s64 inode; /* MFT record number */
122 s64 max_size; /* Largest size we find */
484 static s64 wipe_unused(ntfs_volume *vol, int byte, enum action act) in wipe_unused()
486 s64 i; in wipe_unused()
487 s64 total = 0; in wipe_unused()
[all …]
Dntfsresize.c155 s64 bytes;
160 s64 size;
176 s64 lcn; /* last used LCN for a "special" file/attr type */
177 s64 inode; /* inode using it */
197 s64 inuse; /* num of clusters in use */
208 s64 new_volume_size; /* in clusters; 0 = --info w/o --size */
213 s64 inuse; /* num of clusters in use */
215 s64 mftmir_old; /* $MFTMirr AT_DATA's old LCN */
218 s64 badclusters; /* num of physically dead clusters */
231 s64 last_unsupp; /* last unsupported cluster */
[all …]
Dntfsfallocate.c86 s64 opt_alloc_offs;
87 s64 opt_alloc_len;
201 static s64 option_value(const char *arg) in option_value()
203 s64 ll; in option_value()
205 s64 fact; in option_value()
426 static void free_common(ntfs_volume *vol, runlist_element *brl, s64 blth, in free_common()
427 runlist_element *grl, s64 glth) in free_common()
495 s64 cofs; in ntfs_inner_zero()
496 s64 pos; in ntfs_inner_zero()
497 s64 zeroed; in ntfs_inner_zero()
[all …]
Dntfsclone.c174 s64 size;
188 s64 inuse; /* number of clusters in use */
633 static s64 is_critical_metadata(ntfs_walk_clusters_ctx *image, runlist *rl)
635 s64 inode = image->ni->mft_no;
649 s64 s = (s64)16384 - rl->vcn * vol->cluster_size;
868 static s64 lseek_out(int fd, s64 pos, int mode)
870 s64 ret;
879 static void lseek_to_cluster(s64 lcn)
895 static void gap_to_cluster(s64 gap)
909 static void image_skip_clusters(s64 count)
[all …]
/third_party/elfutils/tests/
Dread_unaligned.c76 union s64 union
529 union s64 s64; in main() local
532 for (size_t i = 0; i < sizeof (s64_nums) / sizeof (s64); i++) in main()
536 s64.v = s64_nums[i]; in main()
537 printf (" 0x%02" PRIx8 ", ", s64.c[0]); in main()
538 printf ("0x%02" PRIx8 ", ", s64.c[1]); in main()
539 printf ("0x%02" PRIx8 ", ", s64.c[2]); in main()
540 printf ("0x%02" PRIx8 ", ", s64.c[3]); in main()
541 printf ("0x%02" PRIx8 ", ", s64.c[4]); in main()
542 printf ("0x%02" PRIx8 ", ", s64.c[5]); in main()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp75 const LLT s64 = LLT::scalar(64); in ARMLegalizerInfo() local
95 .legalFor({s32, s64}) in ARMLegalizerInfo()
174 .legalFor({s32, s64}); in ARMLegalizerInfo()
177 .legalForTypesWithMemDesc({{s64, p0, 64, 32}}) in ARMLegalizerInfo()
179 PhiBuilder.legalFor({s64}); in ARMLegalizerInfo()
182 {s32, s64}); in ARMLegalizerInfo()
184 getActionDefinitionsBuilder(G_MERGE_VALUES).legalFor({{s64, s32}}); in ARMLegalizerInfo()
185 getActionDefinitionsBuilder(G_UNMERGE_VALUES).legalFor({{s32, s64}}); in ARMLegalizerInfo()
187 getActionDefinitionsBuilder(G_FPEXT).legalFor({{s64, s32}}); in ARMLegalizerInfo()
188 getActionDefinitionsBuilder(G_FPTRUNC).legalFor({{s32, s64}}); in ARMLegalizerInfo()
[all …]

123456