/linux-4.4.14/include/linux/ |
D | percpu_counter.h | 21 s64 count; 30 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp, 41 void percpu_counter_set(struct percpu_counter *fbc, s64 amount); 42 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch); 43 s64 __percpu_counter_sum(struct percpu_counter *fbc); 44 int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch); 46 static inline int percpu_counter_compare(struct percpu_counter *fbc, s64 rhs) in percpu_counter_compare() 51 static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) in percpu_counter_add() 56 static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) in percpu_counter_sum_positive() 58 s64 ret = __percpu_counter_sum(fbc); in percpu_counter_sum_positive() [all …]
|
D | ktime.h | 38 s64 tv64; 50 static inline ktime_t ktime_set(const s64 secs, const unsigned long nsecs) in ktime_set() 55 return (ktime_t) { .tv64 = secs * NSEC_PER_SEC + (s64)nsecs }; in ktime_set() 169 extern s64 __ktime_divns(const ktime_t kt, s64 div); 170 static inline s64 ktime_divns(const ktime_t kt, s64 div) in ktime_divns() 178 s64 ns = kt.tv64; in ktime_divns() 188 static inline s64 ktime_divns(const ktime_t kt, s64 div) in ktime_divns() 199 static inline s64 ktime_to_us(const ktime_t kt) in ktime_to_us() 204 static inline s64 ktime_to_ms(const ktime_t kt) in ktime_to_ms() 209 static inline s64 ktime_us_delta(const ktime_t later, const ktime_t earlier) in ktime_us_delta() [all …]
|
D | math64.h | 27 static inline s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder) in div_s64_rem() 53 static inline s64 div64_s64(s64 dividend, s64 divisor) in div64_s64() 72 extern s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder); 84 extern s64 div64_s64(s64 dividend, s64 divisor); 108 static inline s64 div_s64(s64 dividend, s32 divisor) in div_s64()
|
D | time.h | 57 extern void set_normalized_timespec(struct timespec *ts, time_t sec, s64 nsec); 191 static inline s64 timespec_to_ns(const struct timespec *ts) in timespec_to_ns() 193 return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec; in timespec_to_ns() 203 static inline s64 timeval_to_ns(const struct timeval *tv) in timeval_to_ns() 205 return ((s64) tv->tv_sec * NSEC_PER_SEC) + in timeval_to_ns() 215 extern struct timespec ns_to_timespec(const s64 nsec); 223 extern struct timeval ns_to_timeval(const s64 nsec);
|
D | time64.h | 39 #define TIME64_MAX ((s64)~((u64)1 << 63)) 40 #define KTIME_MAX ((s64)~((u64)1 << 63)) 135 extern void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec); 198 static inline s64 timespec64_to_ns(const struct timespec64 *ts) in timespec64_to_ns() 200 return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec; in timespec64_to_ns() 209 extern struct timespec64 ns_to_timespec64(const s64 nsec);
|
D | pm_domain.h | 57 s64 power_off_latency_ns; 59 s64 power_on_latency_ns; 61 s64 max_off_time_ns; /* Maximum allowed "suspended" time. */ 84 s64 suspend_latency_ns; 85 s64 resume_latency_ns; 86 s64 effective_constraint_ns;
|
D | vmw_vmci_api.h | 66 s64 vmci_qpair_produce_free_space(const struct vmci_qp *qpair); 67 s64 vmci_qpair_produce_buf_ready(const struct vmci_qp *qpair); 68 s64 vmci_qpair_consume_free_space(const struct vmci_qp *qpair); 69 s64 vmci_qpair_consume_buf_ready(const struct vmci_qp *qpair);
|
D | timex.h | 122 #define PPM_SCALE ((s64)NSEC_PER_USEC << (NTP_SCALE_SHIFT - SHIFT_USEC)) 129 #define MAXFREQ_SCALED ((s64)MAXFREQ << NTP_SCALE_SHIFT)
|
D | timekeeper_internal.h | 100 s64 xtime_remainder; 111 s64 ntp_error;
|
D | backing-dev.h | 58 enum wb_stat_item item, s64 amount) in __add_wb_stat() 93 static inline s64 wb_stat(struct bdi_writeback *wb, enum wb_stat_item item) in wb_stat() 98 static inline s64 __wb_stat_sum(struct bdi_writeback *wb, in __wb_stat_sum() 104 static inline s64 wb_stat_sum(struct bdi_writeback *wb, enum wb_stat_item item) in wb_stat_sum() 106 s64 sum; in wb_stat_sum()
|
D | hrtimer.h | 229 static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64) in hrtimer_set_expires_tv64() 257 static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer) in hrtimer_get_expires_tv64() 261 static inline s64 hrtimer_get_softexpires_tv64(const struct hrtimer *timer) in hrtimer_get_softexpires_tv64() 266 static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer) in hrtimer_get_expires_ns()
|
D | kernel.h | 42 #define S64_MAX ((s64)(U64_MAX>>1)) 43 #define S64_MIN ((s64)(-S64_MAX - 1)) 211 #define abs(x) __builtin_choose_expr(sizeof(x) == sizeof(s64), ({ \ 212 s64 __x = (x); \ 340 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) in kstrtos64() 376 …t __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) in kstrtos64_from_user()
|
D | dirent.h | 6 s64 d_off;
|
D | quota.h | 337 s64 d_ino_timer; /* zero if within inode limits */ 339 s64 d_spc_timer; /* similar to above; for space */ 345 s64 d_rt_spc_timer; /* similar to above; for RT space */
|
D | cgroup-defs.h | 384 s64 (*read_s64)(struct cgroup_subsys_state *css, struct cftype *cft); 405 s64 val);
|
D | vmw_vmci_defs.h | 827 static s64 864 static inline s64 869 s64 free_space; in vmci_q_header_buf_ready()
|
D | timecounter.h | 93 static inline void timecounter_adjtime(struct timecounter *tc, s64 delta) in timecounter_adjtime()
|
D | ptp_clock_kernel.h | 106 int (*adjtime)(struct ptp_clock_info *ptp, s64 delta);
|
D | fixp-arith.h | 128 s64 tmp; in fixp_sin32_rad()
|
D | lockdep.h | 115 s64 min; 116 s64 max; 117 s64 total;
|
/linux-4.4.14/arch/mips/fw/cfe/ |
D | cfe_api_int.h | 56 typedef s64 cfe_xptr_t; 71 s64 enum_idx; /* 0-based enumeration index */ 73 s64 name_length; /* size of name buffer */ 75 s64 val_length; /* size of value string buffer */ 88 s64 ticks; /* current time in ticks */ 92 s64 status; 96 s64 mi_idx; /* 0-based enumeration index */ 97 s64 mi_type; /* type of memory block */ 103 s64 fwi_version; /* major, minor, eco version */ 104 s64 fwi_totalmem; /* total installed mem */ [all …]
|
/linux-4.4.14/include/drm/ |
D | drm_fixed.h | 79 static inline s64 drm_int2fixp(int a) in drm_int2fixp() 81 return ((s64)a) << DRM_FIXED_POINT; in drm_int2fixp() 84 static inline int drm_fixp2int(s64 a) in drm_fixp2int() 86 return ((s64)a) >> DRM_FIXED_POINT; in drm_fixp2int() 89 static inline int drm_fixp2int_ceil(s64 a) in drm_fixp2int_ceil() 97 static inline unsigned drm_fixp_msbset(s64 a) in drm_fixp_msbset() 108 static inline s64 drm_fixp_mul(s64 a, s64 b) in drm_fixp_mul() 111 s64 result; in drm_fixp_mul() 131 static inline s64 drm_fixp_div(s64 a, s64 b) in drm_fixp_div() 134 s64 result; in drm_fixp_div() [all …]
|
/linux-4.4.14/fs/jfs/ |
D | jfs_dmap.h | 54 #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 blkno, s64 nblocks); [all …]
|
D | jfs_xtree.h | 55 ( ((s64)((xad)->off1)) << 32 | __le32_to_cpu((xad)->off2)) 104 extern int xtLookup(struct inode *ip, s64 lstart, s64 llen, 105 int *pflag, s64 * paddr, int *plen, int flag); 108 int xflag, s64 xoff, int xlen, s64 * xaddrp, int flag); 109 extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen, 113 s64 xoff, int xlen, s64 xaddr, int flag); 116 extern int xtDelete(tid_t tid, struct inode *ip, s64 xoff, int xlen, 118 extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type); 119 extern s64 xtTruncate_pmap(tid_t tid, struct inode *ip, s64 committed_size); 121 xad_t * oxad, s64 nxaddr, int xtype); [all …]
|
D | jfs_extent.c | 31 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 xlen, s64 pno, xad_t * xp, bool abnr) in extAlloc() 89 s64 nxlen, nxaddr, xoff, hint, xaddr = 0; in extAlloc() 146 dbFree(ip, nxaddr, (s64) nxlen); in extAlloc() 215 int extRealloc(struct inode *ip, s64 nxlen, xad_t * xp, bool abnr) in extRealloc() 218 s64 xaddr, xlen, nxaddr, delta, xoff; in extRealloc() 219 s64 ntail, nextend, ninsert; in extRealloc() 262 dbFree(ip, nxaddr, (s64) nxlen); in extRealloc() [all …]
|
D | jfs_dmap.c | 77 static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, 83 static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, 85 static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results); 86 static int dbAllocNext(struct bmap * bmp, struct dmap * dp, s64 blkno, 88 static int dbAllocNear(struct bmap * bmp, struct dmap * dp, s64 blkno, 90 int l2nb, s64 * results); 91 static int dbAllocDmap(struct bmap * bmp, struct dmap * dp, s64 blkno, 95 s64 * results); 96 static int dbAllocAG(struct bmap * bmp, int agno, s64 nblocks, int l2nb, 97 s64 * results); [all …]
|
D | jfs_extent.h | 25 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);
|
D | jfs_xtree.c | 95 s64 off; 96 s64 addr; 117 static int xtSearch(struct inode *ip, s64 xoff, s64 *next, int *cmpp, 125 struct metapage ** rmpp, s64 * rbnp); 146 int xtLookup(struct inode *ip, s64 lstart, in xtLookup() 147 s64 llen, int *pflag, s64 * paddr, s32 * plen, int no_check) in xtLookup() 152 s64 bn; in xtLookup() 157 s64 next, size, xoff, xend; in xtLookup() 159 s64 xaddr; in xtLookup() 239 static int xtSearch(struct inode *ip, s64 xoff, s64 *nextp, in xtSearch() [all …]
|
D | resize.c | 62 int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize) in jfs_extendfs() 71 s64 newLogAddress, newFSCKAddress; in jfs_extendfs() 73 s64 newMapSize = 0, mapSize; in jfs_extendfs() 74 s64 XAddress, XSize, nblocks, xoff, xaddr, t64; in jfs_extendfs() 75 s64 oldLVSize; in jfs_extendfs() 76 s64 newFSSize; in jfs_extendfs() 77 s64 VolumeSize; in jfs_extendfs() 83 s64 old_agsize; in jfs_extendfs()
|
D | jfs_filsys.h | 139 #define MAXFILESIZE ((s64)1 << 52) 155 #define SIZE2PN(size) ( ((s64)((size) - 1)) >> (L2PSIZE) ) 157 #define SIZE2BN(size, l2bsize) ( ((s64)((size) - 1)) >> (l2bsize) )
|
D | jfs_dtree.c | 208 static struct metapage *read_index_page(struct inode *inode, s64 blkno) in read_index_page() 211 s64 xaddr; in read_index_page() 227 static struct metapage *get_index_page(struct inode *inode, s64 blkno) in get_index_page() 230 s64 xaddr; in get_index_page() 250 struct metapage ** mp, s64 *lblock) in find_index() 253 s64 blkno; in find_index() 254 s64 offset; in find_index() 334 static u32 add_index(tid_t tid, struct inode *ip, s64 bn, int slot) in add_index() 345 s64 offset; in add_index() 348 s64 xaddr; in add_index() [all …]
|
D | jfs_logmgr.h | 375 s64 base; /* @8: log extent address (inline log ) */ 462 s64 l_blkno; /* 8: log page block number */ 507 extern int lmLogFormat(struct jfs_log *log, s64 logAddress, int logSize);
|
D | jfs_imap.c | 84 static void duplicateIXtree(struct super_block *, s64, int, s64 *); 312 s64 blkno, agstart; in diRead() 606 s64 blkno; in diWrite() 2176 s64 blkno, hint; in diNewExt() 2268 hint = ((s64) agno << sbi->bmap->db_agl2size) - 1; in diNewExt() 2273 if ((rc = dbAlloc(ipimap, hint, (s64) imap->im_nbperiext, &blkno))) in diNewExt() 2461 s64 xaddr = 0; in diNewIAG() 2462 s64 blkno; in diNewIAG() 2522 if ((rc = dbAlloc(ipimap, 0, (s64) xlen, &xaddr))) { in diNewIAG() 2544 dbFree(ipimap, xaddr, (s64) xlen); in diNewIAG() [all …]
|
D | super.c | 152 s64 maxinodes; in jfs_statfs() 170 maxinodes = min((s64) atomic_read(&imap->im_numinos) + in jfs_statfs() 172 << L2INOSPEREXT), (s64) 0xffffffffLL); in jfs_statfs() 232 static int parse_options(char *options, struct super_block *sb, s64 *newLVSize, in parse_options() 431 s64 newLVSize = 0; in jfs_remount() 494 s64 newLVSize = 0; in jfs_fill_super()
|
D | xattr.c | 223 s64 blkno; in ea_write() 372 s64 blkno; in ea_read() 448 s64 blkno; in ea_get() 527 rc = dbAlloc(inode, INOHINT(inode), (s64) blocks_needed, in ea_get() 543 dbFree(inode, blkno, (s64) blocks_needed); in ea_get() 554 dbFree(inode, blkno, (s64) blocks_needed); in ea_get()
|
D | jfs_superblock.h | 117 extern int jfs_extendfs(struct super_block *, s64, int);
|
D | namei.c | 41 static s64 commitZeroLink(tid_t, struct inode *); 488 s64 new_size = 0; in jfs_unlink() 638 static s64 commitZeroLink(tid_t tid, struct inode *ip) in commitZeroLink() 731 s64 xaddr = addressDXD(&JFS_IP(ip)->ea); in jfs_free_zero_link() 752 s64 xaddr = addressDXD(&JFS_IP(ip)->acl); in jfs_free_zero_link() 898 s64 xlen = 0; in jfs_symlink() 900 s64 xaddr; in jfs_symlink() 1096 s64 new_size = 0; in jfs_rename()
|
/linux-4.4.14/fs/ntfs/ |
D | bitmap.h | 32 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) in ntfs_bitmap_set_bits_in_run() 65 static inline int ntfs_bitmap_set_run(struct inode *vi, const s64 start_bit, in ntfs_bitmap_set_run() 66 const s64 count) in ntfs_bitmap_set_run() 82 static inline int ntfs_bitmap_clear_run(struct inode *vi, const s64 start_bit, in ntfs_bitmap_clear_run() 83 const s64 count) in ntfs_bitmap_clear_run() 97 static inline int ntfs_bitmap_set_bit(struct inode *vi, const s64 bit) in ntfs_bitmap_set_bit() 111 static inline int ntfs_bitmap_clear_bit(struct inode *vi, const s64 bit) in ntfs_bitmap_clear_bit()
|
D | attrib.h | 79 const s64 size, const s64 initialized_size); 81 static inline s64 ntfs_attr_size(const ATTR_RECORD *a) in ntfs_attr_size() 84 return (s64)le32_to_cpu(a->data.resident.value_length); in ntfs_attr_size() 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 ofs, const s64 cnt,
|
D | lcnalloc.h | 44 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, in ntfs_cluster_free() 108 s64 count, ntfs_attr_search_ctx *ctx) in ntfs_cluster_free()
|
D | types.h | 43 typedef s64 VCN; 45 typedef s64 LCN; 53 typedef s64 LSN; 61 typedef s64 USN;
|
D | endian.h | 43 static inline s64 sle64_to_cpu(sle64 x) in sle64_to_cpu() 58 static inline s64 sle64_to_cpup(sle64 *x) in sle64_to_cpup() 73 static inline sle64 cpu_to_sle64(s64 x) in cpu_to_sle64() 88 static inline sle64 cpu_to_sle64p(s64 *x) in cpu_to_sle64p()
|
D | bitmap.c | 47 int __ntfs_bitmap_set_bits_in_run(struct inode *vi, const s64 start_bit, in __ntfs_bitmap_set_bits_in_run() 48 const s64 count, const u8 value, const bool is_rollback) in __ntfs_bitmap_set_bits_in_run() 50 s64 cnt = count; in __ntfs_bitmap_set_bits_in_run() 111 len = min_t(s64, cnt >> 3, PAGE_CACHE_SIZE - pos); in __ntfs_bitmap_set_bits_in_run() 135 len = min_t(s64, cnt >> 3, PAGE_CACHE_SIZE); in __ntfs_bitmap_set_bits_in_run()
|
D | runlist.h | 45 s64 length; /* Run length in clusters. */ 95 runlist *const runlist, const s64 new_length); 98 const VCN start, const s64 length);
|
D | time.h | 30 #define NTFS_TIME_OFFSET ((s64)(369 * 365 + 89) * 24 * 3600 * 10000000) 54 return cpu_to_sle64((s64)ts.tv_sec * 10000000 + ts.tv_nsec / 100 + in utc2ntfs()
|
D | runlist.c | 302 s64 merged_length; in ntfs_rl_insert() 709 drl[ds].length = (s64)0; in ntfs_runlists_merge() 754 s64 deltaxcn; /* Change in [vl]cn. */ in ntfs_mapping_pairs_decompress() 835 deltaxcn = (s64)-1; in ntfs_mapping_pairs_decompress() 959 rl[rlpos].length = (s64)0; in ntfs_mapping_pairs_decompress() 1084 static inline int ntfs_get_nr_significant_bytes(const s64 n) in ntfs_get_nr_significant_bytes() 1086 s64 l = n; in ntfs_get_nr_significant_bytes() 1158 s64 delta, length = rl->length; in ntfs_get_size_for_mapping_pairs() 1168 s64 s1 = last_vcn + 1; in ntfs_get_size_for_mapping_pairs() 1195 s64 length = rl->length; in ntfs_get_size_for_mapping_pairs() [all …]
|
D | inode.h | 49 s64 initialized_size; /* Copy from the attribute record. */ 50 s64 allocated_size; /* Copy from the attribute record. */ 113 s64 size; /* Copy of compressed_size from
|
D | file.c | 109 static int ntfs_attr_extend_initialized(ntfs_inode *ni, const s64 new_init_size) in ntfs_attr_extend_initialized() 111 s64 old_init_size; in ntfs_attr_extend_initialized() 245 ni->initialized_size = (s64)(index + 1) << PAGE_CACHE_SHIFT; in ntfs_attr_extend_initialized() 335 s64 end, ll; in ntfs_prepare_file_for_write() 585 unsigned nr_pages, s64 pos, size_t bytes) in ntfs_prepare_pages_for_non_resident_write() 589 s64 bh_pos, vcn_len, end, initialized_size; in ntfs_prepare_pages_for_non_resident_write() 656 bh_pos = (s64)page->index << PAGE_CACHE_SHIFT; in ntfs_prepare_pages_for_non_resident_write() 660 s64 bh_end; in ntfs_prepare_pages_for_non_resident_write() 1211 bh_pos = ((s64)page->index << PAGE_CACHE_SHIFT) + in ntfs_prepare_pages_for_non_resident_write() 1353 ((s64)page->index << PAGE_CACHE_SHIFT) + in ntfs_prepare_pages_for_non_resident_write() [all …]
|
D | compress.c | 101 const s64 initialized_size) in zero_partial_compressed_page() 107 if (((s64)page->index << PAGE_CACHE_SHIFT) >= initialized_size) { in zero_partial_compressed_page() 124 const loff_t i_size, const s64 initialized_size) in handle_bounds_compressed_page() 173 const s64 initialized_size) in ntfs_decompress() 485 s64 initialized_size; in ntfs_read_compressed_block() 501 VCN start_vcn = (((s64)index << PAGE_CACHE_SHIFT) & ~cb_size_mask) >> in ntfs_read_compressed_block() 507 VCN end_vcn = ((((s64)(index + 1UL) << PAGE_CACHE_SHIFT) + cb_size - 1) in ntfs_read_compressed_block()
|
D | logfile.c | 52 RESTART_PAGE_HEADER *rp, s64 pos) in ntfs_check_restart_page_header() 350 RESTART_PAGE_HEADER *rp, s64 pos, RESTART_PAGE_HEADER **wrp, in ntfs_check_and_load_restart_page() 486 s64 size, pos; in ntfs_check_logfile() 523 size &= ~(s64)(log_page_size - 1); in ntfs_check_logfile() 777 s64 len; in ntfs_empty_logfile()
|
D | aops.c | 73 s64 file_ofs, init_size; in ntfs_end_buffer_async_read() 77 file_ofs = ((s64)page->index << PAGE_CACHE_SHIFT) + in ntfs_end_buffer_async_read() 189 s64 init_size; in ntfs_read_block() 232 iblock = (s64)page->index << (PAGE_CACHE_SHIFT - blocksize_bits); in ntfs_read_block() 554 s64 initialized_size; in ntfs_write_block() 602 block = (s64)page->index << (PAGE_CACHE_SHIFT - blocksize_bits); in ntfs_write_block() 1136 mft_no = (((s64)page->index << PAGE_CACHE_SHIFT) + ofs) in ntfs_write_mst_block() 1252 mft_no = (((s64)page->index << PAGE_CACHE_SHIFT) + ofs) in ntfs_write_mst_block() 1565 s64 ofs, size; in ntfs_bmap() 1589 ofs = (s64)block << blocksize_bits; in ntfs_bmap()
|
D | lcnalloc.c | 147 const s64 count, const LCN start_lcn, in ntfs_cluster_alloc() 153 s64 clusters; in ntfs_cluster_alloc() 849 s64 __ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn, s64 count, in __ntfs_cluster_free() 852 s64 delta, to_free, total_freed, real_freed; in __ntfs_cluster_free()
|
D | attrib.c | 711 const s64 size, const s64 initialized_size) in load_attribute_list() 1343 const s64 size) in ntfs_attr_size_bounds_check() 1537 s64 new_size; in ntfs_attr_make_non_resident() 1904 s64 ntfs_attr_extend_allocation(ntfs_inode *ni, s64 new_alloc_size, in ntfs_attr_extend_allocation() 1905 const s64 new_data_size, const s64 data_start) in ntfs_attr_extend_allocation() 1908 s64 ll, allocated_size, start = data_start; in ntfs_attr_extend_allocation() 1942 start &= ~(s64)vol->cluster_size_mask; in ntfs_attr_extend_allocation() 1944 ~(s64)vol->cluster_size_mask; in ntfs_attr_extend_allocation() 2493 int ntfs_attr_set(ntfs_inode *ni, const s64 ofs, const s64 cnt, const u8 val) in ntfs_attr_set()
|
D | dir.c | 1101 s64 ia_pos, ia_start, prev_ia_pos, bmp_pos; in ntfs_readdir() 1155 ir_pos = (s64)actor->pos; in ntfs_readdir() 1231 ia_pos = (s64)actor->pos - vol->mft_record_size; in ntfs_readdir() 1288 if ((prev_ia_pos & (s64)PAGE_CACHE_MASK) != in ntfs_readdir() 1289 (ia_pos & (s64)PAGE_CACHE_MASK)) { in ntfs_readdir() 1311 ~(s64)(ndir->itype.index.block_size - 1))); in ntfs_readdir() 1327 ~(s64)(ndir->itype.index.block_size - 1)) >> in ntfs_readdir() 1359 ia_start = ia_pos & ~(s64)(ndir->itype.index.block_size - 1); in ntfs_readdir()
|
/linux-4.4.14/include/media/ |
D | v4l2-ctrls.h | 51 s64 *p_s64; 200 s64 minimum, maximum, default_value; 211 const s64 *qmenu_int; 310 s64 min; 311 s64 max; 313 s64 def; 319 const s64 *qmenu_int; 339 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags); 470 u32 id, s64 min, s64 max, u64 step, s64 def); 535 u32 id, u8 max, u8 def, const s64 *qmenu_int); [all …]
|
D | mt9v032.h | 7 const s64 *link_freqs; 8 s64 link_def_freq;
|
D | ov2659.h | 31 s64 link_frequency;
|
/linux-4.4.14/arch/x86/platform/uv/ |
D | bios_uv.c | 31 s64 uv_bios_call(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, u64 a4, u64 a5) in uv_bios_call() 34 s64 ret; in uv_bios_call() 48 s64 uv_bios_call_irqsave(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, in uv_bios_call_irqsave() 52 s64 ret; in uv_bios_call_irqsave() 61 s64 uv_bios_call_reentrant(enum uv_bios_cmd which, u64 a1, u64 a2, u64 a3, in uv_bios_call_reentrant() 64 s64 ret; in uv_bios_call_reentrant() 86 s64 uv_bios_get_sn_info(int fc, int *uvtype, long *partid, long *coher, in uv_bios_get_sn_info() 89 s64 ret; in uv_bios_get_sn_info() 118 s64 ret; in uv_bios_mq_watchlist_alloc() 141 s64 [all …]
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | pal.h | 108 typedef s64 pal_status_t; 779 s64 status; 880 static inline s64 897 static inline s64 906 static inline s64 924 static inline s64 947 static inline s64 960 static inline s64 972 static inline s64 982 static inline s64 [all …]
|
D | sal.h | 668 extern s64 ia64_sal_cache_flush (u64 cache_type); 672 static inline s64 684 static inline s64 729 static inline s64 754 static inline s64 765 static inline s64 778 static inline s64 792 static inline s64 806 static inline s64 821 static inline s64
|
/linux-4.4.14/arch/x86/include/asm/uv/ |
D | bios.h | 89 extern s64 uv_bios_call(enum uv_bios_cmd, u64, u64, u64, u64, u64); 90 extern s64 uv_bios_call_irqsave(enum uv_bios_cmd, u64, u64, u64, u64, u64); 91 extern s64 uv_bios_call_reentrant(enum uv_bios_cmd, u64, u64, u64, u64, u64); 93 extern s64 uv_bios_get_sn_info(int, int *, long *, long *, long *, long *); 94 extern s64 uv_bios_freq_base(u64, u64 *); 98 extern s64 uv_bios_change_memprotect(u64, u64, enum uv_memprotect); 99 extern s64 uv_bios_reserved_page_pa(u64, u64 *, u64 *, u64 *);
|
/linux-4.4.14/kernel/ |
D | delayacct.c | 54 s64 ns = ktime_get_ns() - *start; in delayacct_end() 88 s64 tmp; in __delayacct_add_tsk() 91 tmp = (s64)d->cpu_run_real_total; in __delayacct_add_tsk() 93 d->cpu_run_real_total = (tmp < (s64)d->cpu_run_real_total) ? 0 : tmp; in __delayacct_add_tsk() 96 tmp = (s64)d->cpu_scaled_run_real_total; in __delayacct_add_tsk() 99 (tmp < (s64)d->cpu_scaled_run_real_total) ? 0 : tmp; in __delayacct_add_tsk() 111 tmp = (s64)d->cpu_delay_total + t2; in __delayacct_add_tsk() 112 d->cpu_delay_total = (tmp < (s64)d->cpu_delay_total) ? 0 : tmp; in __delayacct_add_tsk() 114 tmp = (s64)d->cpu_run_virtual_total + t3; in __delayacct_add_tsk() 116 (tmp < (s64)d->cpu_run_virtual_total) ? 0 : tmp; in __delayacct_add_tsk()
|
/linux-4.4.14/drivers/iio/common/ms_sensors/ |
D | ms_sensors_i2c.c | 442 *temperature = (((s64)(adc >> 8) * 175720) >> 16) - 46850; in ms_sensors_ht_read_temperature() 580 s64 off, sens, t2, off2, sens2; in ms_sensors_read_temp_and_pressure() 610 temp = 2000 + (((s64)dt * prom[6]) >> 23); in ms_sensors_read_temp_and_pressure() 614 s64 tmp = (s64)temp - 2000; in ms_sensors_read_temp_and_pressure() 616 t2 = (3 * ((s64)dt * (s64)dt)) >> 33; in ms_sensors_read_temp_and_pressure() 621 s64 tmp = (s64)temp + 1500; in ms_sensors_read_temp_and_pressure() 627 t2 = (5 * ((s64)dt * (s64)dt)) >> 38; in ms_sensors_read_temp_and_pressure() 633 off = (((s64)prom[2]) << 17) + ((((s64)prom[4]) * (s64)dt) >> 6); in ms_sensors_read_temp_and_pressure() 637 sens = (((s64)prom[1]) << 16) + (((s64)prom[3] * dt) >> 7); in ms_sensors_read_temp_and_pressure() 642 *pressure = (u32)(((((s64)p_adc * sens) >> 21) - off) >> 15); in ms_sensors_read_temp_and_pressure()
|
/linux-4.4.14/drivers/iio/pressure/ |
D | bmp280.c | 191 s64 var1, var2, p; in bmp280_compensate_press() 202 var1 = ((s64)data->t_fine) - 128000; in bmp280_compensate_press() 203 var2 = var1 * var1 * (s64)(s16)le16_to_cpu(buf[P6]); in bmp280_compensate_press() 204 var2 += (var1 * (s64)(s16)le16_to_cpu(buf[P5])) << 17; in bmp280_compensate_press() 205 var2 += ((s64)(s16)le16_to_cpu(buf[P4])) << 35; in bmp280_compensate_press() 206 var1 = ((var1 * var1 * (s64)(s16)le16_to_cpu(buf[P3])) >> 8) + in bmp280_compensate_press() 207 ((var1 * (s64)(s16)le16_to_cpu(buf[P2])) << 12); in bmp280_compensate_press() 208 var1 = ((((s64)1) << 47) + var1) * ((s64)le16_to_cpu(buf[P1])) >> 33; in bmp280_compensate_press() 213 p = ((((s64)1048576 - adc_press) << 31) - var2) * 3125; in bmp280_compensate_press() 215 var1 = (((s64)(s16)le16_to_cpu(buf[P9])) * (p >> 13) * (p >> 13)) >> 25; in bmp280_compensate_press() [all …]
|
D | ms5611_core.c | 92 s64 off, sens, dt; in ms5611_temp_and_pressure_compensate() 95 off = ((s64)chip_info->prom[2] << 16) + ((chip_info->prom[4] * dt) >> 7); in ms5611_temp_and_pressure_compensate() 96 sens = ((s64)chip_info->prom[1] << 15) + ((chip_info->prom[3] * dt) >> 8); in ms5611_temp_and_pressure_compensate() 100 s64 off2, sens2, t2; in ms5611_temp_and_pressure_compensate() 107 s64 tmp = (t + 1500) * (t + 1500); in ms5611_temp_and_pressure_compensate() 128 s64 off, sens, dt; in ms5607_temp_and_pressure_compensate() 131 off = ((s64)chip_info->prom[2] << 17) + ((chip_info->prom[4] * dt) >> 6); in ms5607_temp_and_pressure_compensate() 132 sens = ((s64)chip_info->prom[1] << 16) + ((chip_info->prom[3] * dt) >> 7); in ms5607_temp_and_pressure_compensate() 136 s64 off2, sens2, t2; in ms5607_temp_and_pressure_compensate() 143 s64 tmp = (t + 1500) * (t + 1500); in ms5607_temp_and_pressure_compensate()
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_est.c | 117 e->cps += ((s64)rate - (s64)e->cps) >> 2; in estimation_timer() 121 e->inpps += ((s64)rate - (s64)e->inpps) >> 2; in estimation_timer() 125 e->outpps += ((s64)rate - (s64)e->outpps) >> 2; in estimation_timer() 130 e->inbps += ((s64)rate - (s64)e->inbps) >> 2; in estimation_timer() 134 e->outbps += ((s64)rate - (s64)e->outbps) >> 2; in estimation_timer()
|
/linux-4.4.14/kernel/time/ |
D | ntp.c | 58 static s64 time_offset; 70 static s64 time_freq; 78 static s64 ntp_tick_adj; 105 static s64 pps_freq; /* frequency offset (scaled ns/s) */ 120 static inline s64 ntp_offset_chunk(s64 offset) in ntp_offset_chunk() 164 static inline void pps_set_freq(s64 freq) in pps_set_freq() 205 static inline s64 ntp_offset_chunk(s64 offset) in ntp_offset_chunk() 213 static inline void pps_set_freq(s64 freq) {} in pps_set_freq() 276 static inline s64 ntp_update_offset_fll(s64 offset64, long secs) in ntp_update_offset_fll() 293 s64 freq_adj; in ntp_update_offset() [all …]
|
D | timekeeping.c | 301 static inline s64 timekeeping_get_ns(struct tk_read_base *tkr) in timekeeping_get_ns() 304 s64 nsec; in timekeeping_get_ns() 452 s64 remainder; in old_vsyscall_fixup() 600 s64 nsec; in timekeeping_forward_now() 629 s64 nsecs = 0; in __getnstimeofday64() 669 s64 nsecs; in ktime_get() 712 s64 nsecs; in ktime_get_with_offset() 756 s64 nsecs; in ktime_get_raw() 781 s64 nsec; in ktime_get_ts64() 863 s64 nsecs_raw, nsecs_real; in ktime_get_raw_and_real_ts64() [all …]
|
D | time.c | 361 void set_normalized_timespec(struct timespec *ts, time_t sec, s64 nsec) in set_normalized_timespec() 389 struct timespec ns_to_timespec(const s64 nsec) in ns_to_timespec() 414 struct timeval ns_to_timeval(const s64 nsec) in ns_to_timeval() 441 void set_normalized_timespec64(struct timespec64 *ts, time64_t sec, s64 nsec) in set_normalized_timespec64() 469 struct timespec64 ns_to_timespec64(const s64 nsec) in ns_to_timespec64()
|
D | itimer.c | 132 static inline u32 cputime_sub_ns(cputime_t ct, s64 real_ns) in cputime_sub_ns() 135 s64 cpu_ns; in cputime_sub_ns() 148 s64 ns_ninterval, ns_nval; in set_cpu_itimer()
|
D | timekeeping_internal.h | 20 return (s64) ret > 0 ? ret : 0; in clocksource_delta()
|
/linux-4.4.14/drivers/thermal/ |
D | tegra_soctherm.c | 205 static s64 div64_s64_precise(s64 a, s64 b) in div64_s64_precise() 207 s64 r, al; in div64_s64_precise() 225 s64 tmp; in calculate_tsensor_calibration() 243 therma = div64_s64_precise((s64) delta_temp * (1LL << 13) * mult, in calculate_tsensor_calibration() 244 (s64) delta_sens * div); in calculate_tsensor_calibration() 246 tmp = (s64)actual_tsensor_ft * shared->actual_temp_cp - in calculate_tsensor_calibration() 247 (s64)actual_tsensor_cp * shared->actual_temp_ft; in calculate_tsensor_calibration() 248 thermb = div64_s64_precise(tmp, (s64)delta_sens); in calculate_tsensor_calibration() 250 therma = div64_s64_precise((s64)therma * sensor->fuse_corr_alpha, in calculate_tsensor_calibration() 251 (s64)1000000LL); in calculate_tsensor_calibration() [all …]
|
D | power_allocator.c | 41 static inline s64 mul_frac(s64 x, s64 y) in mul_frac() 54 static inline s64 div_frac(s64 x, s64 y) in div_frac() 76 s64 err_integral; 196 s64 p, i, d, power_range; in pid_controller() 227 s64 i_next = i + mul_frac(tz->tzp->k_i, err); in pid_controller() 251 power_range = clamp(power_range, (s64)0, (s64)max_allocatable_power); in pid_controller()
|
/linux-4.4.14/lib/ |
D | percpu_counter.c | 60 void percpu_counter_set(struct percpu_counter *fbc, s64 amount) in percpu_counter_set() 75 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch) in __percpu_counter_add() 77 s64 count; in __percpu_counter_add() 98 s64 __percpu_counter_sum(struct percpu_counter *fbc) in __percpu_counter_sum() 100 s64 ret; in __percpu_counter_sum() 115 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp, in __percpu_counter_init() 200 int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch) in __percpu_counter_compare() 202 s64 count; in __percpu_counter_compare()
|
D | div64.c | 62 s64 div_s64_rem(s64 dividend, s32 divisor, s32 *remainder) in div_s64_rem() 161 s64 div64_s64(s64 dividend, s64 divisor) in div64_s64() 163 s64 quot, t; in div64_s64()
|
D | flex_proportions.c | 65 s64 events; in fprop_new_period() 143 s64 num, den; in fprop_fraction_single() 205 s64 val = percpu_counter_read(&pl->events); in fprop_reflect_period_percpu() 231 s64 num, den; in fprop_fraction_percpu()
|
D | test-kstrtox.c | 343 DECLARE_TEST_OK(s64, struct test_s64); in test_kstrtos64_ok() 377 TEST_OK(kstrtos64, s64, "%lld", test_s64_ok); in test_kstrtos64_ok() 390 TEST_FAIL(kstrtos64, s64, "%lld", test_s64_fail); in test_kstrtos64_fail()
|
D | test_rhashtable.c | 156 static s64 __init test_rhashtable(struct rhashtable *ht) in test_rhashtable() 161 s64 start, end; in test_rhashtable() 321 s64 time; in test_rht_init()
|
/linux-4.4.14/drivers/misc/mic/scif/ |
D | scif_rma.h | 187 s64 nr_pages; 243 s64 nr_pages; 248 s64 offset; 310 s64 offset, int nr_pages, s64 *out_offset); 313 struct scif_window *window, s64 offset); 316 s64 offset, bool temp); 364 s64 offset; 375 dma_addr_t scif_off_to_dma_addr(struct scif_window *window, s64 off, 379 dma_addr_t __scif_off_to_dma_addr(struct scif_window *window, s64 off) in __scif_off_to_dma_addr()
|
D | scif_rma_list.h | 35 s64 offset; 55 int scif_rma_list_unregister(struct scif_window *window, s64 offset,
|
D | scif_mmap.c | 381 static int scif_rma_list_mmap(struct scif_window *start_window, s64 offset, in scif_rma_list_mmap() 384 s64 end_offset, loop_offset = offset; in scif_rma_list_mmap() 459 s64 offset, int nr_pages) in scif_rma_list_munmap() 462 s64 loop_offset = offset, end_offset; in scif_rma_list_munmap() 505 s64 offset; /* offset within remote window */ 556 s64 offset; in scif_munmap() 616 s64 start_offset = vma->vm_pgoff << PAGE_SHIFT; in scif_mmap()
|
D | scif_rma_list.c | 148 s64 end_offset, offset = req->offset; in scif_query_window() 204 s64 offset, int nr_pages) in scif_rma_list_unregister() 208 s64 end_offset; in scif_rma_list_unregister()
|
D | scif_dma.c | 42 s64 dst_offset; 65 s64 src_offset; 66 s64 dst_offset; 395 (s64 *)out_offset); in scif_register_temp() 780 dma_addr_t scif_off_to_dma_addr(struct scif_window *window, s64 off, in scif_off_to_dma_addr() 784 s64 start, end; in scif_off_to_dma_addr() 824 static void scif_rma_local_cpu_copy(s64 offset, struct scif_window *window, in scif_rma_local_cpu_copy() 830 s64 end_offset; in scif_rma_local_cpu_copy() 909 s64 end_offset, offset; in scif_rma_list_dma_copy_unaligned() 1131 s64 end_src_offset, end_dst_offset; in _scif_rma_list_dma_copy_aligned() [all …]
|
/linux-4.4.14/arch/mips/kernel/ |
D | mips-r2-to-r6-emul.c | 92 (s64)regs->regs[MIPSInst_RS(ir)] + in mipsr6_emul() 93 (s64)MIPSInst_SIMM(ir); in mipsr6_emul() 151 (s64)(((u64)regs->regs[MIPSInst_RT(ir)]) << in mipsr6_emul() 160 (s64)(((u64)regs->regs[MIPSInst_RT(ir)]) >> in mipsr6_emul() 178 (s64)((u64)regs->regs[MIPSInst_RS(ir)] - in mipsr6_emul() 403 s64 res; in mult_func() 408 res = (s64)rt * (s64)rs; in mult_func() 411 regs->lo = (s64)rs; in mult_func() 413 res = (s64)rt; in mult_func() 437 regs->lo = (s64)rt; in multu_func() [all …]
|
/linux-4.4.14/drivers/base/power/ |
D | domain_governor.c | 16 s64 *constraint_ns_p = data; in dev_update_qos_constraint() 47 s64 constraint_ns; in default_stop_ok() 106 s64 min_off_time_ns; in default_power_down_ok() 107 s64 off_on_time_ns; in default_power_down_ok() 139 s64 sd_max_off_ns = sd->max_off_time_ns; in default_power_down_ok() 161 s64 constraint_ns; in default_power_down_ok()
|
D | sysfs.c | 461 s64 msec = 0; in wakeup_total_time_show() 478 s64 msec = 0; in wakeup_max_time_show() 495 s64 msec = 0; in wakeup_last_time_show() 514 s64 msec = 0; in wakeup_prevent_sleep_time_show()
|
/linux-4.4.14/include/trace/events/ |
D | thermal_power_allocator.h | 59 s64 p, s64 i, s64 d, s32 output), 65 __field(s64, p ) 66 __field(s64, i ) 67 __field(s64, d )
|
D | nmi.h | 12 TP_PROTO(void *handler, s64 delta_ns, int handled), 18 __field( s64, delta_ns)
|
D | timer.h | 173 __field( s64, expires ) 174 __field( s64, softexpires ) 208 __field( s64, now )
|
/linux-4.4.14/drivers/misc/mic/host/ |
D | mic_smpt.h | 40 s64 ref_count; 70 s64 ref_count; 71 s64 map_count; 72 s64 unmap_count;
|
D | mic_smpt.c | 78 static void mic_add_smpt_entry(int spt, s64 *ref, u64 addr, in mic_add_smpt_entry() 100 int entries, s64 *ref, size_t size) in mic_smpt_op() 140 smpt_info->ref_count += (s64)size; in mic_smpt_op() 151 size_t size, s64 *ref, u64 *smpt_start) in mic_get_smpt_ref_count() 210 s64 *ref; in mic_map() 216 ref = kmalloc_array(mdev->smpt->info.num_reg, sizeof(s64), GFP_ATOMIC); in mic_map() 257 s64 *ref; in mic_unmap() 273 ref = kmalloc_array(mdev->smpt->info.num_reg, sizeof(s64), GFP_ATOMIC); in mic_unmap() 282 smpt_info->ref_count -= (s64)size; in mic_unmap()
|
/linux-4.4.14/net/sched/ |
D | act_police.c | 29 s64 tcfp_burst; 31 s64 tcfp_toks; 32 s64 tcfp_ptoks; 33 s64 tcfp_mtu_ptoks; 34 s64 tcfp_t_c; 221 police->tcfp_mtu_ptoks = (s64) psched_l2t_ns(&police->peak, in tcf_act_police_locate() 259 s64 now; in tcf_act_police() 260 s64 toks; in tcf_act_police() 261 s64 ptoks = 0; in tcf_act_police() 283 toks = min_t(s64, now - police->tcfp_t_c, in tcf_act_police() [all …]
|
D | sch_tbf.c | 105 s64 buffer; /* Token bucket depth/rate: MUST BE >= MTU/B */ 106 s64 mtu; 111 s64 tokens; /* Current number of B tokens */ 112 s64 ptokens; /* Current number of P tokens */ 113 s64 t_c; /* Time check-point */ 239 s64 now; in tbf_dequeue() 240 s64 toks; in tbf_dequeue() 241 s64 ptoks = 0; in tbf_dequeue() 245 toks = min_t(s64, now - q->t_c, q->buffer); in tbf_dequeue() 251 ptoks -= (s64) psched_l2t_ns(&q->peak, len); in tbf_dequeue() [all …]
|
D | sch_htb.c | 101 s64 buffer, cbuffer;/* token bucket depth/rate */ 102 s64 mbuffer; /* max wait time */ 124 s64 tokens, ctokens;/* current number of tokens */ 125 s64 t_c; /* checkpoint time */ 137 s64 pq_key; 169 s64 now; /* cached dequeue time */ 173 s64 near_ev_cache[TC_HTB_MAXDEPTH]; 296 struct htb_class *cl, s64 delay) in htb_add_to_wait_tree() 467 static inline s64 htb_lowater(const struct htb_class *cl) in htb_lowater() 474 static inline s64 htb_hiwater(const struct htb_class *cl) in htb_hiwater() [all …]
|
/linux-4.4.14/arch/metag/include/asm/ |
D | div64.h | 7 extern s64 div_s64(s64 dividend, s64 divisor);
|
/linux-4.4.14/arch/mn10300/lib/ |
D | negdi2.c | 39 s64 ll; 46 s64 __negdi2(s64 u) in __negdi2()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | vio.h | 74 s64 in; 75 s64 inlen; 76 s64 out; 77 s64 outlen;
|
D | compat.h | 30 typedef s64 compat_loff_t; 41 typedef s64 compat_s64;
|
/linux-4.4.14/drivers/media/platform/sti/bdisp/ |
D | bdisp.h | 160 s64 last_duration; 161 s64 min_duration; 162 s64 max_duration; 163 s64 tot_duration;
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/core/ |
D | subdev.c | 88 s64 time; in nvkm_subdev_fini() 116 s64 time; in nvkm_subdev_preinit() 137 s64 time; in nvkm_subdev_init() 144 s64 time; in nvkm_subdev_init() 175 s64 time; in nvkm_subdev_del()
|
D | object.c | 115 s64 time; in nvkm_object_fini() 157 s64 time; in nvkm_object_init() 194 s64 time; in nvkm_object_dtor()
|
/linux-4.4.14/fs/gfs2/ |
D | super.h | 41 extern void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free, 42 s64 dinodes);
|
D | quota.c | 615 static void do_qc(struct gfs2_quota_data *qd, s64 change) in do_qc() 620 s64 x; in do_qc() 778 s64 change, struct gfs2_quota_data *qd, in gfs2_adjust_quota() 801 if (((s64)be64_to_cpu(q.qu_value)) < 0) in gfs2_adjust_quota() 1042 s64 value; in need_sync() 1060 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >= in need_sync() 1061 (s64)be64_to_cpu(qd->qd_qb.qb_limit)) in need_sync() 1066 value += (s64)be64_to_cpu(qd->qd_qb.qb_value); in need_sync() 1067 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit)) in need_sync() 1160 s64 value, warn, limit; in gfs2_quota_check() [all …]
|
D | incore.h | 450 s64 qd_change; 451 s64 qd_change_sync; 525 s64 sc_total; 526 s64 sc_free; 527 s64 sc_dinodes;
|
D | quota.h | 29 extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | atomic.h | 166 static __inline__ void atomic64_##op(s64 i, atomic64_t *v) \ 176 static __inline__ s64 atomic64_##op##_return(s64 i, atomic64_t *v) \ 179 s64 ret; \ 201 atomic64_set(atomic64_t *v, s64 i) in atomic64_set() 211 static __inline__ s64
|
D | compat.h | 26 typedef s64 compat_loff_t; 36 typedef s64 compat_s64;
|
/linux-4.4.14/drivers/macintosh/ |
D | windfarm_pid.c | 36 s64 error, integ, deriv; in wf_pid_run() 68 target = (s32)((integ * (s64)st->param.gr + deriv * (s64)st->param.gd + in wf_pid_run() 69 error * (s64)st->param.gp) >> 36); in wf_pid_run() 91 s64 integ, deriv, prop; in wf_cpu_pid_run()
|
D | windfarm_pm81.c | 359 scaled = ((((s64)new_setpoint) * (s64)st->scale0) >> 12) + st->offset0; in wf_smu_sys_fans_tick() 364 cputarget = ((((s64)cputarget) * (s64)st->scale1) >> 12) + st->offset1; in wf_smu_sys_fans_tick() 516 systarget = ((((s64)systarget) * (s64)st->scale) >> 12) in wf_smu_cpu_fans_tick()
|
D | windfarm_smu_sensors.c | 93 s64 scaled; in smu_cputemp_get() 103 scaled = (s64)(((u64)val) * (u64)cpudiode->m_value); in smu_cputemp_get() 105 scaled += ((s64)cpudiode->b_value) << 9; in smu_cputemp_get()
|
/linux-4.4.14/arch/arm64/kernel/ |
D | module.c | 79 s64 sval = do_reloc(op, place, val); in reloc_data() 89 *(s64 *)place = sval; in reloc_data() 100 sval = (s64)(sval & ~(imm_mask >> 1)) >> (len - 1); in reloc_data() 117 s64 sval; in reloc_insn_movw() 131 if ((s64)imm >= 0) { in reloc_insn_movw() 175 s64 sval; in reloc_insn_imm() 194 sval = (s64)(sval & ~(imm_mask >> 1)) >> (len - 1); in reloc_insn_imm()
|
D | cpufeature.c | 320 static u64 arm64_ftr_set_value(struct arm64_ftr_bits *ftrp, s64 reg, s64 ftr_val) in arm64_ftr_set_value() 329 static s64 arm64_ftr_safe_value(struct arm64_ftr_bits *ftrp, s64 new, s64 cur) in arm64_ftr_safe_value() 331 s64 ret = 0; in arm64_ftr_safe_value() 387 s64 ftr_new = arm64_ftr_value(ftrp, new); in init_cpu_ftr_reg() 436 s64 ftr_cur = arm64_ftr_value(ftrp, reg->sys_val); in update_cpu_ftr_reg() 437 s64 ftr_new = arm64_ftr_value(ftrp, new); in update_cpu_ftr_reg()
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
D | ivtv-controls.h | 26 int ivtv_g_pts_frame(struct ivtv *itv, s64 *pts, s64 *frame);
|
D | ivtv-controls.c | 106 int ivtv_g_pts_frame(struct ivtv *itv, s64 *pts, s64 *frame) in ivtv_g_pts_frame() 111 *pts = (s64)((u64)itv->last_dec_timing[2] << 32) | in ivtv_g_pts_frame() 125 *pts = (s64)((u64) data[2] << 32) | (u64) data[1]; in ivtv_g_pts_frame()
|
/linux-4.4.14/include/net/ |
D | af_vsock.h | 74 s64 vsock_stream_has_data(struct vsock_sock *vsk); 75 s64 vsock_stream_has_space(struct vsock_sock *vsk); 118 s64 (*stream_has_data)(struct vsock_sock *); 119 s64 (*stream_has_space)(struct vsock_sock *);
|
D | red.h | 233 s64 delta = ktime_us_delta(ktime_get(), v->qidlestart); in red_calc_qavg_from_idle_time() 234 long us_idle = min_t(s64, delta, p->Scell_max); in red_calc_qavg_from_idle_time()
|
D | netlink.h | 922 static inline int nla_put_s64(struct sk_buff *skb, int attrtype, s64 value) in nla_put_s64() 924 return nla_put(skb, attrtype, sizeof(s64), &value); in nla_put_s64() 1117 static inline s64 nla_get_s64(const struct nlattr *nla) in nla_get_s64() 1119 s64 tmp; in nla_get_s64()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-ctrls.c | 577 const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len) in v4l2_ctrl_get_int_menu() 579 static const s64 qmenu_int_vpx_num_partitions[] = { in v4l2_ctrl_get_int_menu() 583 static const s64 qmenu_int_vpx_num_ref_frames[] = { in v4l2_ctrl_get_int_menu() 922 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags) in v4l2_ctrl_fill() 1378 s64 val; in std_validate() 1389 if (ctrl->maximum >= 0 && val >= ctrl->maximum - (s64)(ctrl->step / 2)) in std_validate() 1392 val += (s64)(ctrl->step / 2); in std_validate() 1393 val = clamp_t(s64, val, ctrl->minimum, ctrl->maximum); in std_validate() 1640 s64 min, s64 max, u64 step, s64 def) in check_range() 1903 s64 min, s64 max, u64 step, s64 def, in v4l2_ctrl_new() [all …]
|
D | v4l2-common.c | 87 s64 min = _min; in v4l2_ctrl_query_fill() 88 s64 max = _max; in v4l2_ctrl_query_fill() 90 s64 def = _def; in v4l2_ctrl_query_fill()
|
/linux-4.4.14/include/linux/ceph/ |
D | osdmap.h | 31 s64 id; 38 s64 read_tier; 39 s64 write_tier; /* wins for read+write ops */ 57 s64 pool;
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | mn10300_ksyms.c | 36 extern s64 __negdi2(s64);
|
/linux-4.4.14/drivers/media/pci/pt1/ |
D | va1j5jf8007s.c | 89 x2 = (s64)x1 * x1 >> 31; in va1j5jf8007s_read_snr() 90 x3 = (s64)x2 * x1 >> 31; in va1j5jf8007s_read_snr() 91 x4 = (s64)x2 * x2 >> 31; in va1j5jf8007s_read_snr() 92 x5 = (s64)x4 * x1 >> 31; in va1j5jf8007s_read_snr() 95 y -= (s64)x1 * ((89565ll << 24) / 1000) >> 30; in va1j5jf8007s_read_snr() 96 y += (s64)x2 * ((88977ll << 24) / 1000) >> 28; in va1j5jf8007s_read_snr() 97 y -= (s64)x3 * ((50259ll << 25) / 1000) >> 27; in va1j5jf8007s_read_snr() 98 y += (s64)x4 * ((14341ll << 27) / 1000) >> 27; in va1j5jf8007s_read_snr() 99 y -= (s64)x5 * ((16346ll << 30) / 10000) >> 28; in va1j5jf8007s_read_snr()
|
D | va1j5jf8007t.c | 87 y = ((s64)y * x >> 30) - (16ll << 40) / 10000; in va1j5jf8007t_read_snr() 88 y = ((s64)y * x >> 29) + (398ll << 35) / 10000; in va1j5jf8007t_read_snr() 89 y = ((s64)y * x >> 30) + (5491ll << 29) / 10000; in va1j5jf8007t_read_snr() 90 y = ((s64)y * x >> 30) + (30965ll << 23) / 10000; in va1j5jf8007t_read_snr()
|
/linux-4.4.14/arch/mips/math-emu/ |
D | dp_cmp.c | 26 s64 vx; in ieee754dp_cmp() 27 s64 vy; in ieee754dp_cmp()
|
D | ieee754.h | 68 union ieee754sp ieee754sp_flong(s64 x); 72 s64 ieee754sp_tlong(union ieee754sp x); 102 union ieee754dp ieee754dp_flong(s64 x); 106 s64 ieee754dp_tlong(union ieee754dp x); 272 static inline s64 ieee754di_indef(void) in ieee754di_indef()
|
D | dp_flong.c | 24 union ieee754dp ieee754dp_flong(s64 x) in ieee754dp_flong()
|
D | sp_flong.c | 24 union ieee754sp ieee754sp_flong(s64 x) in ieee754sp_flong()
|
D | sp_tlong.c | 25 s64 ieee754sp_tlong(union ieee754sp x) in ieee754sp_tlong()
|
D | dp_tlong.c | 24 s64 ieee754dp_tlong(union ieee754dp x) in ieee754dp_tlong()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | cpufeature.h | 59 s64 safe_val; /* safe value for discrete features */ 122 return (s64)(features << (64 - width - field)) >> (64 - width); in cpuid_feature_extract_field_width() 148 static inline s64 arm64_ftr_value(struct arm64_ftr_bits *ftrp, u64 val) in arm64_ftr_value()
|
D | compat.h | 49 typedef s64 compat_loff_t; 61 typedef s64 compat_s64;
|
/linux-4.4.14/drivers/iio/temperature/ |
D | tsys01.c | 51 s64 temp = 0; in tsys01_read_temperature() 67 (s64)dev_data->prom[5 - i]; in tsys01_read_temperature() 68 temp *= (s64)adc; in tsys01_read_temperature() 72 temp += coeff_mul[0] * (s64)dev_data->prom[5]; in tsys01_read_temperature()
|
/linux-4.4.14/kernel/sched/ |
D | clock.c | 181 return (s64)(x - y) < 0 ? x : y; in wrap_min() 186 return (s64)(x - y) > 0 ? x : y; in wrap_max() 198 s64 delta; in sched_clock_local() 270 if (likely((s64)(remote_clock - this_clock) < 0)) { in sched_clock_remote()
|
/linux-4.4.14/arch/metag/lib/ |
D | cmpdi2.S | 11 ! s64 a (D0Ar2, D1Ar1) 12 ! s64 b (D0Ar4, D1Ar3)
|
/linux-4.4.14/arch/parisc/kernel/ |
D | signal32.h | 82 void sigset_32to64(sigset_t *s64, compat_sigset_t *s32); 83 void sigset_64to32(compat_sigset_t *s32, sigset_t *s64);
|
D | signal32.c | 50 sigset_32to64(sigset_t *s64, compat_sigset_t *s32) in sigset_32to64() argument 52 s64->sig[0] = s32->sig[0] | ((unsigned long)s32->sig[1] << 32); in sigset_32to64() 56 sigset_64to32(compat_sigset_t *s32, sigset_t *s64) in sigset_64to32() argument 58 s32->sig[0] = s64->sig[0] & 0xffffffffUL; in sigset_64to32() 59 s32->sig[1] = (s64->sig[0] >> 32) & 0xffffffffUL; in sigset_64to32()
|
/linux-4.4.14/net/ipv4/ |
D | tcp_lp.c | 137 s64 rhz = lp->remote_hz << 6; /* remote HZ << 6 */ in tcp_lp_remote_hz_estimator() 138 s64 m = 0; in tcp_lp_remote_hz_estimator() 190 s64 owd = 0; in tcp_lp_owd_calculator() 223 s64 mowd = tcp_lp_owd_calculator(sk); in tcp_lp_rtt_sample()
|
/linux-4.4.14/arch/s390/kernel/ |
D | uprobes.c | 229 s64 s64; member 322 rc = emu_cmp_ril(regs, (s16 __user *)uptr, &rx->s64); in handle_insn_ril() 334 rc = emu_cmp_ril(regs, (s64 __user *)uptr, &rx->s64); in handle_insn_ril() 340 rc = emu_cmp_ril(regs, (s32 __user *)uptr, &rx->s64); in handle_insn_ril()
|
D | vtime.c | 142 if ((s64) steal > 0) { in do_account_vtime() 294 if (likely((s64) timer->expires < in internal_add_vtimer() 295 (s64) atomic64_read(&virt_timer_current))) in internal_add_vtimer()
|
/linux-4.4.14/kernel/bpf/ |
D | core.c | 363 (*(s64 *) &DST) >>= SRC; in __bpf_prog_run() 366 (*(s64 *) &DST) >>= IMM; in __bpf_prog_run() 526 if (((s64) DST) > ((s64) SRC)) { in __bpf_prog_run() 532 if (((s64) DST) > ((s64) IMM)) { in __bpf_prog_run() 538 if (((s64) DST) >= ((s64) SRC)) { in __bpf_prog_run() 544 if (((s64) DST) >= ((s64) IMM)) { in __bpf_prog_run()
|
/linux-4.4.14/tools/perf/util/ |
D | annotate.h | 57 s64 offset; 76 double disasm__calc_percent(struct annotation *notes, int evidx, s64 offset, 77 s64 end, const char **path, u64 *nr_samples);
|
D | string.c | 10 s64 perf_atoll(const char *str) in perf_atoll() 12 s64 length; in perf_atoll()
|
D | tool.h | 34 typedef s64 (*event_op3)(struct perf_tool *tool, union perf_event *event,
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
D | opal-nvram.c | 31 s64 rc; in opal_nvram_read() 48 s64 rc = OPAL_BUSY; in opal_nvram_write()
|
D | eeh-powernv.c | 481 s64 rc; in pnv_eeh_set_option() 551 s64 rc; in pnv_eeh_get_phb_diag() 565 s64 rc; in pnv_eeh_get_phb_state() 604 s64 rc; in pnv_eeh_get_pe_state() 735 static s64 pnv_eeh_phb_poll(struct pnv_phb *phb) in pnv_eeh_phb_poll() 737 s64 rc = OPAL_HARDWARE; in pnv_eeh_phb_poll() 756 s64 rc = OPAL_HARDWARE; in pnv_eeh_phb_reset() 797 s64 rc = OPAL_HARDWARE; in pnv_eeh_root_reset() 934 s64 rc; in pnv_eeh_reset() 1054 s64 rc; in pnv_eeh_err_inject() [all …]
|
D | opal.c | 257 s64 ret; in opal_handle_message() 320 s64 rc; in opal_get_chars() 339 s64 len, rc; in opal_put_chars() 502 s64 rc; in opal_hmi_exception_early() 520 s64 rc; in opal_handle_hmi_exception()
|
/linux-4.4.14/arch/sh/kernel/cpu/sh5/ |
D | unwind.c | 135 offset_r14 = (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); in lookup_prev_stack_frame() 143 offset_r18 = (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); in lookup_prev_stack_frame() 172 (u64)(((((s64)op >> 10) & 0x3ff) << 54) >> 54); in lookup_prev_stack_frame()
|
/linux-4.4.14/drivers/staging/lustre/lustre/lov/ |
D | lov_merge.c | 55 s64 current_mtime = lvb->lvb_mtime; in lov_merge_lvb_kms() 56 s64 current_atime = lvb->lvb_atime; in lov_merge_lvb_kms() 57 s64 current_ctime = lvb->lvb_ctime; in lov_merge_lvb_kms()
|
/linux-4.4.14/fs/nfs/objlayout/ |
D | objlayout.h | 60 s64 delta_space_used; /* consumed by write ops */ 133 objlayout_add_delta_space_used(struct objlayout *objlay, s64 space_used) in objlayout_add_delta_space_used()
|
/linux-4.4.14/drivers/media/pci/cx88/ |
D | cx88-dsp.c | 110 s32 s = x[i] + ((s64)coeff*s_prev/32768) - s_prev2; in int_goertzel() 115 tmp = (s64)s_prev2 * s_prev2 + (s64)s_prev * s_prev - in int_goertzel() 116 (s64)coeff * s_prev2 * s_prev / 32768; in int_goertzel()
|
/linux-4.4.14/fs/ocfs2/ |
D | quota.h | 32 s64 dq_origspace; /* Last globally synced space usage */ 33 s64 dq_originodes; /* Last globally synced inode usage */
|
/linux-4.4.14/arch/arm/vfp/ |
D | vfp.h | 130 while ((s64)remh < 0) { in vfp_estimate_div128to64() 300 static inline void vfp_double_unpack(struct vfp_double *s, s64 val) in vfp_double_unpack() 318 static inline s64 vfp_double_pack(struct vfp_double *s) in vfp_double_pack() 324 return (s64)val; in vfp_double_pack()
|
/linux-4.4.14/fs/adfs/ |
D | inode.c | 176 static const s64 nsec_unix_epoch_diff_risc_os_epoch = in adfs_adfs2unix_time() 178 s64 nsec; in adfs_adfs2unix_time() 189 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */ in adfs_adfs2unix_time()
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | gelic_udbg.c | 105 s64 result; in map_dma_mem() 131 s64 result; in unmap_dma_mem() 148 s64 result; in gelic_debug_init()
|
D | exports.c | 22 extern s64 _lv1_##name(LV1_##in##_IN_##out##_OUT_ARG_DECL); \
|
/linux-4.4.14/drivers/misc/sgi-xp/ |
D | xpc_sn2.c | 616 s64 status; in xpc_get_partition_rsvd_page_pa_sn2() 1708 xpc_notify_senders_sn2(struct xpc_channel *ch, enum xp_retval reason, s64 put) in xpc_notify_senders_sn2() 1712 s64 get = ch->sn.sn2.w_remote_GP.get - 1; in xpc_notify_senders_sn2() 1763 s64 get; in xpc_clear_local_msgqueue_flags_sn2() 1783 s64 put, remote_nentries = ch->remote_nentries; in xpc_clear_remote_msgqueue_flags_sn2() 1910 xpc_pull_remote_msg_sn2(struct xpc_channel *ch, s64 get) in xpc_pull_remote_msg_sn2() 1980 s64 get; in xpc_get_deliverable_payload_sn2() 2030 xpc_send_msgs_sn2(struct xpc_channel *ch, s64 initial_put) in xpc_send_msgs_sn2() 2034 s64 put = initial_put + 1; in xpc_send_msgs_sn2() 2096 s64 put; in xpc_allocate_msg_sn2() [all …]
|
D | xpc.h | 304 s64 get; /* Get value */ 305 s64 put; /* Put value */ 356 s64 number; /* FOR XPC INTERNAL USE ONLY */ 525 s64 next_msg_to_pull; /* Put value of next msg to pull */
|
/linux-4.4.14/drivers/input/misc/ |
D | hp_sdc_rtc.c | 456 (s64)tv.tv_sec, (long)tv.tv_nsec/1000000L); in hp_sdc_rtc_proc_show() 463 (s64)tv.tv_sec, (long)tv.tv_nsec/1000000L); in hp_sdc_rtc_proc_show() 470 (s64)tv.tv_sec, (long)tv.tv_nsec/1000000L); in hp_sdc_rtc_proc_show() 477 (s64)tv.tv_sec, (long)tv.tv_nsec/1000000L); in hp_sdc_rtc_proc_show() 484 (s64)tv.tv_sec, (long)tv.tv_nsec/1000000L); in hp_sdc_rtc_proc_show()
|
/linux-4.4.14/tools/perf/ui/gtk/ |
D | annotate.c | 32 if (dl->offset == (s64) -1) in perf_gtk__get_percent() 58 if (dl->offset == (s64) -1) in perf_gtk__get_offset() 75 if (dl->offset != (s64) -1) in perf_gtk__get_line()
|
/linux-4.4.14/arch/x86/kvm/ |
D | i8254.c | 107 static s64 __kpit_elapsed(struct kvm *kvm) in __kpit_elapsed() 109 s64 elapsed; in __kpit_elapsed() 131 static s64 kpit_elapsed(struct kvm *kvm, struct kvm_kpit_channel_state *c, in kpit_elapsed() 144 s64 d, t; in pit_get_count() 174 s64 d, t; in pit_get_out() 337 s64 interval; in create_pit_timer() 365 s64 min_period = min_timer_period_us * 1000LL; in create_pit_timer()
|
D | i8254.h | 28 s64 period; /* unit: ns */
|
/linux-4.4.14/drivers/iio/light/ |
D | acpi-als.c | 72 (sizeof(s64) + (ACPI_ALS_EVT_NR_SOURCES * sizeof(s32))) 121 s64 time_ns = iio_get_time_ns(); in acpi_als_notify()
|
/linux-4.4.14/include/linux/sched/ |
D | deadline.h | 26 return (s64)(a - b) < 0; in dl_time_before()
|
/linux-4.4.14/drivers/infiniband/hw/mthca/ |
D | mthca_profile.h | 54 s64 mthca_make_profile(struct mthca_dev *mdev,
|
/linux-4.4.14/drivers/iio/imu/inv_mpu6050/ |
D | inv_mpu_ring.c | 108 s64 timestamp; in inv_mpu6050_irq_handler() 129 s64 timestamp; in inv_mpu6050_read_fifo()
|
/linux-4.4.14/net/dccp/ |
D | ackvec.c | 134 static void dccp_ackvec_update_old(struct dccp_ackvec *av, s64 distance, in dccp_ackvec_update_old() 259 s64 num_packets = dccp_delta_seqno(av->av_buf_ackno, seqno); in dccp_ackvec_input() 289 s64 delta; in dccp_ackvec_clear_state()
|
/linux-4.4.14/tools/testing/selftests/powerpc/ |
D | utils.h | 14 typedef signed long long s64; typedef
|
/linux-4.4.14/drivers/iio/ |
D | inkern.c | 513 s64 raw64 = raw; in iio_convert_raw_to_processed_unlocked() 534 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked() 542 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked() 546 *processed = div_s64(raw64 * (s64)scale_val * scale, in iio_convert_raw_to_processed_unlocked() 550 *processed = (raw64 * (s64)scale_val * scale) >> scale_val2; in iio_convert_raw_to_processed_unlocked()
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | annotate.c | 385 s64 len = symbol__size(sym); in annotate_browser__calc_percent() 526 s64 offset, s64 *idx) in annotate_browser__find_offset() 547 s64 idx; in annotate_browser__jump() 565 char *s, s64 *idx) in annotate_browser__find_string() 589 s64 idx; in __annotate_browser__search() 604 char *s, s64 *idx) in annotate_browser__find_string_reverse() 628 s64 idx; in __annotate_browser__search_reverse() 1081 if (pos->offset < (s64)size) in symbol__tui_annotate()
|
/linux-4.4.14/include/linux/lockd/ |
D | nlm.h | 15 # define NLM4_OFFSET_MAX ((s64) ((~(u64)0) >> 1))
|
/linux-4.4.14/net/dccp/ccids/lib/ |
D | loss_interval.c | 92 s64 len; in tfrc_lh_update_i_mean() 99 if (len - (s64)cur->li_length <= 0) /* duplicate or reordered */ in tfrc_lh_update_i_mean()
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | utprint.c | 272 if ((s64) number < 0) { in acpi_ut_format_number() 274 number = -(s64) number; in acpi_ut_format_number() 553 number = (s64) number; in acpi_ut_vsnprintf()
|
/linux-4.4.14/drivers/ptp/ |
D | ptp_clock.c | 58 s64 seconds; in enqueue_external_timestamp() 92 s64 ppb = 1 + ppm; in scaled_ppm_to_ppb() 138 s64 delta; in ptp_clock_adjtime()
|
/linux-4.4.14/arch/powerpc/boot/ |
D | types.h | 13 typedef long long s64; typedef
|
/linux-4.4.14/include/linux/iio/ |
D | trigger_consumer.h | 40 s64 timestamp;
|
/linux-4.4.14/arch/arm/crypto/ |
D | aesbs-core.S_shipped | 1612 vshr.s64 q6, q8, #63 1618 vshr.s64 q7, q9, #63 1624 vshr.s64 q6, q10, #63 1631 vshr.s64 q7, q11, #63 1639 vshr.s64 q6, q12, #63 1647 vshr.s64 q7, q13, #63 1655 vshr.s64 q6, q14, #63 1663 vshr.s64 q7, q15, #63 1715 vshr.s64 q7, q8, #63 1721 vshr.s64 q6, q9, #63 [all …]
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | compat.h | 24 typedef s64 compat_loff_t; 35 typedef s64 compat_s64;
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | pm-debug.c | 64 s64 t; in pm_dbg_update_time() 206 s64 t; in pwrdms_setup()
|
D | powerdomain.h | 144 s64 timer; 145 s64 state_timer[PWRDM_MAX_PWRSTS];
|
/linux-4.4.14/include/asm-generic/ |
D | int-ll64.h | 24 typedef signed long long s64; typedef
|
/linux-4.4.14/arch/powerpc/perf/ |
D | core-fsl-emb.c | 181 s64 val, delta, prev; in fsl_emb_pmu_read() 327 s64 left = local64_read(&event->hw.period_left); in fsl_emb_pmu_add() 395 s64 left; in fsl_emb_pmu_start() 610 s64 prev, delta, left; in record_and_restart()
|
/linux-4.4.14/fs/lockd/ |
D | xdr4.c | 29 static inline s64 32 s64 res; in loff_t_to_s64() 143 s64 start, len; in nlm4_encode_testres()
|
/linux-4.4.14/tools/include/linux/ |
D | types.h | 29 typedef int64_t s64; typedef
|
/linux-4.4.14/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_tlv.h | 114 s32 fm10k_tlv_attr_put_value(u32 *, u16, s64, u32); 147 fm10k_tlv_attr_get_value(attr, ptr, sizeof(s64))
|
/linux-4.4.14/arch/x86/include/asm/ |
D | compat.h | 29 typedef s64 compat_loff_t; 40 typedef s64 __attribute__((aligned(4))) compat_s64;
|
/linux-4.4.14/arch/mips/include/asm/ |
D | compat.h | 29 typedef s64 compat_loff_t; 42 typedef s64 compat_s64;
|
D | kvm_host.h | 412 s64 count_dyn_bias; 629 const struct kvm_one_reg *reg, s64 *v); 631 const struct kvm_one_reg *reg, s64 v); 789 int kvm_mips_set_count_ctl(struct kvm_vcpu *vcpu, s64 count_ctl); 790 int kvm_mips_set_count_resume(struct kvm_vcpu *vcpu, s64 count_resume); 791 int kvm_mips_set_count_hz(struct kvm_vcpu *vcpu, s64 count_hz);
|
/linux-4.4.14/arch/x86/kernel/ |
D | module.c | 182 if ((s64)val != *(s32 *)loc) in apply_relocate_add() 189 if ((s64)val != *(s32 *)loc) in apply_relocate_add()
|
/linux-4.4.14/kernel/trace/ |
D | trace_clock.c | 116 if ((s64)(now - trace_clock_struct.prev_time) < 0) in trace_clock_global()
|
/linux-4.4.14/fs/ |
D | sync.c | 297 if ((s64)offset < 0) in SYSCALL_DEFINE4() 299 if ((s64)endbyte < 0) in SYSCALL_DEFINE4()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/ltc/ |
D | gf100.c | 129 s64 taken; in gf100_ltc_invalidate() 144 s64 taken; in gf100_ltc_flush()
|
/linux-4.4.14/tools/perf/ |
D | builtin-diff.c | 69 static s64 compute_wdiff_w1; 70 static s64 compute_wdiff_w2; 247 static s64 compute_wdiff(struct hist_entry *he, struct hist_entry *pair) in compute_wdiff() 521 s64 l = left->diff.wdiff; in __hist_entry__cmp_compute() 522 s64 r = right->diff.wdiff; in __hist_entry__cmp_compute() 868 s64 wdiff; in __hpp__color_compare() 955 s64 wdiff; in hpp__entry_pair()
|
/linux-4.4.14/drivers/staging/iio/ |
D | iio_simple_dummy.h | 49 s64 event_timestamp;
|
/linux-4.4.14/drivers/s390/block/ |
D | dasd_diag.h | 44 typedef s64 sblocknum_t;
|
/linux-4.4.14/samples/kprobes/ |
D | kretprobe_example.c | 60 s64 delta; in ret_handler()
|
/linux-4.4.14/drivers/iio/adc/ |
D | ad7476.c | 45 unsigned char data[ALIGN(2, sizeof(s64)) + sizeof(s64)]
|
/linux-4.4.14/arch/metag/kernel/perf/ |
D | perf_event.c | 193 s64 delta; in metag_pmu_event_update() 224 s64 left = local64_read(&hwc->period_left); in metag_pmu_event_set_period() 225 s64 period = hwc->sample_period; in metag_pmu_event_set_period() 246 if (left > (s64)metag_pmu->max_period) in metag_pmu_event_set_period()
|
/linux-4.4.14/arch/arm64/crypto/ |
D | crc32-arm64.c | 43 s64 length = len; in crc32_arm64_le_hw() 67 s64 length = len; in crc32c_arm64_le_hw()
|
/linux-4.4.14/drivers/cpufreq/ |
D | ia64-acpi-cpufreq.c | 44 s64 retval; in processor_set_pstate() 64 s64 retval; in processor_get_pstate()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | sal.c | 283 s64 291 s64 rc; in ia64_sal_cache_flush()
|