/linux-4.1.27/fs/ntfs/ |
D | runlist.c | 74 static inline runlist_element *ntfs_rl_realloc(runlist_element *rl, in ntfs_rl_realloc() argument 79 old_size = PAGE_ALIGN(old_size * sizeof(*rl)); in ntfs_rl_realloc() 80 new_size = PAGE_ALIGN(new_size * sizeof(*rl)); in ntfs_rl_realloc() 82 return rl; in ntfs_rl_realloc() 88 if (likely(rl != NULL)) { in ntfs_rl_realloc() 91 memcpy(new_rl, rl, old_size); in ntfs_rl_realloc() 92 ntfs_free(rl); in ntfs_rl_realloc() 120 static inline runlist_element *ntfs_rl_realloc_nofail(runlist_element *rl, in ntfs_rl_realloc_nofail() argument 125 old_size = PAGE_ALIGN(old_size * sizeof(*rl)); in ntfs_rl_realloc_nofail() 126 new_size = PAGE_ALIGN(new_size * sizeof(*rl)); in ntfs_rl_realloc_nofail() [all …]
|
D | lcnalloc.c | 51 const runlist_element *rl) in ntfs_cluster_free_from_rl_nolock() argument 57 if (!rl) in ntfs_cluster_free_from_rl_nolock() 59 for (; rl->length; rl++) { in ntfs_cluster_free_from_rl_nolock() 62 if (rl->lcn < 0) in ntfs_cluster_free_from_rl_nolock() 64 err = ntfs_bitmap_clear_run(lcnbmp_vi, rl->lcn, rl->length); in ntfs_cluster_free_from_rl_nolock() 156 runlist_element *rl = NULL; in ntfs_cluster_alloc() local 334 if ((rlpos + 2) * sizeof(*rl) > rlsize) { in ntfs_cluster_alloc() 338 if (!rl) in ntfs_cluster_alloc() 350 memcpy(rl2, rl, rlsize); in ntfs_cluster_alloc() 351 ntfs_free(rl); in ntfs_cluster_alloc() [all …]
|
D | runlist.h | 55 runlist_element *rl; member 59 static inline void ntfs_init_runlist(runlist *rl) in ntfs_init_runlist() argument 61 rl->rl = NULL; in ntfs_init_runlist() 62 init_rwsem(&rl->lock); in ntfs_init_runlist() 79 extern LCN ntfs_rl_vcn_to_lcn(const runlist_element *rl, const VCN vcn); 83 extern runlist_element *ntfs_rl_find_vcn_nolock(runlist_element *rl, 87 const runlist_element *rl, const VCN first_vcn, 91 const int dst_len, const runlist_element *rl,
|
D | debug.c | 134 void ntfs_debug_dump_runlist(const runlist_element *rl) in ntfs_debug_dump_runlist() argument 143 if (!rl) { in ntfs_debug_dump_runlist() 149 LCN lcn = (rl + i)->lcn; in ntfs_debug_dump_runlist() 157 (long long)(rl + i)->vcn, lcn_str[index], in ntfs_debug_dump_runlist() 158 (long long)(rl + i)->length, in ntfs_debug_dump_runlist() 159 (rl + i)->length ? "" : in ntfs_debug_dump_runlist() 163 (long long)(rl + i)->vcn, in ntfs_debug_dump_runlist() 164 (long long)(rl + i)->lcn, in ntfs_debug_dump_runlist() 165 (long long)(rl + i)->length, in ntfs_debug_dump_runlist() 166 (rl + i)->length ? "" : in ntfs_debug_dump_runlist() [all …]
|
D | attrib.c | 91 runlist_element *rl; in ntfs_map_runlist_nolock() local 187 rl = ntfs_mapping_pairs_decompress(ni->vol, a, ni->runlist.rl); in ntfs_map_runlist_nolock() 188 if (IS_ERR(rl)) in ntfs_map_runlist_nolock() 189 err = PTR_ERR(rl); in ntfs_map_runlist_nolock() 191 ni->runlist.rl = rl; in ntfs_map_runlist_nolock() 304 if (likely(ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn) <= in ntfs_map_runlist() 354 if (!ni->runlist.rl) { in ntfs_attr_vcn_to_lcn_nolock() 364 lcn = ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn); in ntfs_attr_vcn_to_lcn_nolock() 378 if (unlikely(ntfs_rl_vcn_to_lcn(ni->runlist.rl, vcn) != in ntfs_attr_vcn_to_lcn_nolock() 468 runlist_element *rl; in ntfs_attr_find_vcn_nolock() local [all …]
|
D | logfile.c | 732 runlist_element *rl; in ntfs_empty_logfile() local 759 rl = log_ni->runlist.rl; in ntfs_empty_logfile() 760 if (unlikely(!rl || vcn < rl->vcn || !rl->length)) { in ntfs_empty_logfile() 768 rl = log_ni->runlist.rl; in ntfs_empty_logfile() 769 BUG_ON(!rl || vcn < rl->vcn || !rl->length); in ntfs_empty_logfile() 772 while (rl->length && vcn >= rl[1].vcn) in ntfs_empty_logfile() 773 rl++; in ntfs_empty_logfile() 783 lcn = rl->lcn; in ntfs_empty_logfile() 785 vcn = rl->vcn; in ntfs_empty_logfile() 789 if (unlikely(!rl->length || lcn < LCN_HOLE)) in ntfs_empty_logfile() [all …]
|
D | mft.c | 474 runlist_element *rl; in ntfs_sync_mft_mirror() local 520 rl = NULL; in ntfs_sync_mft_mirror() 544 if (!rl) { in ntfs_sync_mft_mirror() 547 rl = NTFS_I(vol->mftmirr_ino)->runlist.rl; in ntfs_sync_mft_mirror() 552 BUG_ON(!rl); in ntfs_sync_mft_mirror() 555 while (rl->length && rl[1].vcn <= vcn) in ntfs_sync_mft_mirror() 556 rl++; in ntfs_sync_mft_mirror() 557 lcn = ntfs_rl_vcn_to_lcn(rl, vcn); in ntfs_sync_mft_mirror() 582 if (unlikely(rl)) in ntfs_sync_mft_mirror() 678 runlist_element *rl; in write_mft_record_nolock() local [all …]
|
D | aops.c | 193 runlist_element *rl; in ntfs_read_block() local 206 BUG_ON(!ni->runlist.rl && !ni->mft_no && !NInoAttr(ni)); in ntfs_read_block() 245 rl = NULL; in ntfs_read_block() 266 if (!rl) { in ntfs_read_block() 269 rl = ni->runlist.rl; in ntfs_read_block() 271 if (likely(rl != NULL)) { in ntfs_read_block() 273 while (rl->length && rl[1].vcn <= vcn) in ntfs_read_block() 274 rl++; in ntfs_read_block() 275 lcn = ntfs_rl_vcn_to_lcn(rl, vcn); in ntfs_read_block() 306 rl = NULL; in ntfs_read_block() [all …]
|
D | lcnalloc.h | 114 const runlist_element *rl); 133 const runlist_element *rl) in ntfs_cluster_free_from_rl() argument 138 ret = ntfs_cluster_free_from_rl_nolock(vol, rl); in ntfs_cluster_free_from_rl()
|
D | file.c | 594 runlist_element *rl, *rl2; in ntfs_prepare_pages_for_non_resident_write() local 639 rl = NULL; in ntfs_prepare_pages_for_non_resident_write() 843 if (!rl) { in ntfs_prepare_pages_for_non_resident_write() 846 rl = ni->runlist.rl; in ntfs_prepare_pages_for_non_resident_write() 848 if (likely(rl != NULL)) { in ntfs_prepare_pages_for_non_resident_write() 850 while (rl->length && rl[1].vcn <= bh_cpos) in ntfs_prepare_pages_for_non_resident_write() 851 rl++; in ntfs_prepare_pages_for_non_resident_write() 852 lcn = ntfs_rl_vcn_to_lcn(rl, bh_cpos); in ntfs_prepare_pages_for_non_resident_write() 860 vcn_len = rl[1].vcn - vcn; in ntfs_prepare_pages_for_non_resident_write() 877 rl = NULL; in ntfs_prepare_pages_for_non_resident_write() [all …]
|
D | compress.c | 490 runlist_element *rl; in ntfs_read_compressed_block() local 611 rl = NULL; in ntfs_read_compressed_block() 616 if (!rl) { in ntfs_read_compressed_block() 619 rl = ni->runlist.rl; in ntfs_read_compressed_block() 621 if (likely(rl != NULL)) { in ntfs_read_compressed_block() 623 while (rl->length && rl[1].vcn <= vcn) in ntfs_read_compressed_block() 624 rl++; in ntfs_read_compressed_block() 625 lcn = ntfs_rl_vcn_to_lcn(rl, vcn); in ntfs_read_compressed_block() 662 if (rl) in ntfs_read_compressed_block()
|
D | debug.h | 47 extern void ntfs_debug_dump_runlist(const runlist_element *rl); 57 #define ntfs_debug_dump_runlist(rl) do {} while (0) argument
|
D | inode.c | 747 ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol, in ntfs_read_locked_inode() 749 if (IS_ERR(ni->attr_list_rl.rl)) { in ntfs_read_locked_inode() 750 err = PTR_ERR(ni->attr_list_rl.rl); in ntfs_read_locked_inode() 751 ni->attr_list_rl.rl = NULL; in ntfs_read_locked_inode() 1921 ni->attr_list_rl.rl = ntfs_mapping_pairs_decompress(vol, in ntfs_read_inode_mount() 1923 if (IS_ERR(ni->attr_list_rl.rl)) { in ntfs_read_inode_mount() 1924 err = PTR_ERR(ni->attr_list_rl.rl); in ntfs_read_inode_mount() 1925 ni->attr_list_rl.rl = NULL; in ntfs_read_inode_mount() 2052 nrl = ntfs_mapping_pairs_decompress(vol, a, ni->runlist.rl); in ntfs_read_inode_mount() 2059 ni->runlist.rl = nrl; in ntfs_read_inode_mount() [all …]
|
D | attrib.h | 78 extern int load_attribute_list(ntfs_volume *vol, runlist *rl, u8 *al_start,
|
D | super.c | 1093 runlist_element *rl, rl2[2]; in check_mft_mirror() local 1193 rl = mirr_ni->runlist.rl; in check_mft_mirror() 1197 if (rl2[i].vcn != rl[i].vcn || rl2[i].lcn != rl[i].lcn || in check_mft_mirror() 1198 rl2[i].length != rl[i].length) { in check_mft_mirror()
|
/linux-4.1.27/drivers/s390/scsi/ |
D | zfcp_reqlist.h | 40 struct zfcp_reqlist *rl; in zfcp_reqlist_alloc() local 42 rl = kzalloc(sizeof(struct zfcp_reqlist), GFP_KERNEL); in zfcp_reqlist_alloc() 43 if (!rl) in zfcp_reqlist_alloc() 46 spin_lock_init(&rl->lock); in zfcp_reqlist_alloc() 49 INIT_LIST_HEAD(&rl->buckets[i]); in zfcp_reqlist_alloc() 51 return rl; in zfcp_reqlist_alloc() 60 static inline int zfcp_reqlist_isempty(struct zfcp_reqlist *rl) in zfcp_reqlist_isempty() argument 65 if (!list_empty(&rl->buckets[i])) in zfcp_reqlist_isempty() 74 static inline void zfcp_reqlist_free(struct zfcp_reqlist *rl) in zfcp_reqlist_free() argument 77 BUG_ON(!zfcp_reqlist_isempty(rl)); in zfcp_reqlist_free() [all …]
|
/linux-4.1.27/crypto/ |
D | vmac.c | 66 #define ADD128(rh, rl, ih, il) \ argument 69 (rl) += (_il); \ 70 if ((rl) < (_il)) \ 77 #define PMUL64(rh, rl, i1, i2) /* Assumes m doesn't overflow */ \ argument 82 rl = MUL32(_i1, _i2); \ 83 ADD128(rh, rl, (m >> 32), (m << 32)); \ 86 #define MUL64(rh, rl, i1, i2) \ argument 92 rl = MUL32(_i1, _i2); \ 93 ADD128(rh, rl, (m1 >> 32), (m1 << 32)); \ 94 ADD128(rh, rl, (m2 >> 32), (m2 << 32)); \ [all …]
|
D | camellia_generic.c | 340 #define ROLDQ(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 343 lr = (lr << bits) + (rl >> (32 - bits)); \ 344 rl = (rl << bits) + (rr >> (32 - bits)); \ 348 #define ROLDQo32(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 351 ll = (lr << (bits - 32)) + (rl >> (64 - bits)); \ 352 lr = (rl << (bits - 32)) + (rr >> (64 - bits)); \ 353 rl = (rr << (bits - 32)) + (w0 >> (64 - bits)); \ 832 #define CAMELLIA_FLS(ll, lr, rl, rr, kll, klr, krl, krr, t0, t1, t2, t3) ({ \ argument 837 rl ^= t2; \ 841 t3 &= rl; \
|
D | crypto_user.c | 130 struct crypto_report_larval rl; in crypto_report_one() local 132 strncpy(rl.type, "larval", sizeof(rl.type)); in crypto_report_one() 134 sizeof(struct crypto_report_larval), &rl)) in crypto_report_one()
|
/linux-4.1.27/block/ |
D | blk-cgroup.h | 102 struct request_list rl; member 349 return &blkg->rl; in blk_get_rl() 362 static inline void blk_put_rl(struct request_list *rl) in blk_put_rl() argument 365 if (rl->blkg && rl->blkg->blkcg != &blkcg_root) in blk_put_rl() 366 blkg_put(rl->blkg); in blk_put_rl() 377 static inline void blk_rq_set_rl(struct request *rq, struct request_list *rl) in blk_rq_set_rl() argument 379 rq->rl = rl; in blk_rq_set_rl() 390 return rq->rl; in blk_rq_rl() 393 struct request_list *__blk_queue_next_rl(struct request_list *rl, 400 #define blk_queue_for_each_rl(rl, q) \ argument [all …]
|
D | blk-core.c | 419 struct request_list *rl; in __blk_drain_queue() local 421 blk_queue_for_each_rl(rl, q) in __blk_drain_queue() 422 for (i = 0; i < ARRAY_SIZE(rl->wait); i++) in __blk_drain_queue() 423 wake_up_all(&rl->wait[i]); in __blk_drain_queue() 483 struct request_list *rl; in blk_set_queue_dying() local 485 blk_queue_for_each_rl(rl, q) { in blk_set_queue_dying() 486 if (rl->rq_pool) { in blk_set_queue_dying() 487 wake_up(&rl->wait[BLK_RW_SYNC]); in blk_set_queue_dying() 488 wake_up(&rl->wait[BLK_RW_ASYNC]); in blk_set_queue_dying() 574 int blk_init_rl(struct request_list *rl, struct request_queue *q, in blk_init_rl() argument [all …]
|
D | blk-cgroup.c | 57 blk_exit_rl(&blkg->rl); in blkg_free() 87 if (blk_init_rl(&blkg->rl, q, gfp_mask)) in blkg_alloc() 89 blkg->rl.blkg = blkg; in blkg_alloc() 413 struct request_list *__blk_queue_next_rl(struct request_list *rl, in __blk_queue_next_rl() argument 423 if (rl == &q->root_rl) { in __blk_queue_next_rl() 429 blkg = container_of(rl, struct blkcg_gq, rl); in __blk_queue_next_rl() 441 return &blkg->rl; in __blk_queue_next_rl()
|
D | blk.h | 55 int blk_init_rl(struct request_list *rl, struct request_queue *q, 57 void blk_exit_rl(struct request_list *rl);
|
D | blk-mq.c | 201 rq->rl = NULL; in blk_mq_rq_ctx_init()
|
/linux-4.1.27/fs/dlm/ |
D | rcom.c | 388 struct rcom_lock *rl) in pack_rcom_lock() argument 390 memset(rl, 0, sizeof(*rl)); in pack_rcom_lock() 392 rl->rl_ownpid = cpu_to_le32(lkb->lkb_ownpid); in pack_rcom_lock() 393 rl->rl_lkid = cpu_to_le32(lkb->lkb_id); in pack_rcom_lock() 394 rl->rl_exflags = cpu_to_le32(lkb->lkb_exflags); in pack_rcom_lock() 395 rl->rl_flags = cpu_to_le32(lkb->lkb_flags); in pack_rcom_lock() 396 rl->rl_lvbseq = cpu_to_le32(lkb->lkb_lvbseq); in pack_rcom_lock() 397 rl->rl_rqmode = lkb->lkb_rqmode; in pack_rcom_lock() 398 rl->rl_grmode = lkb->lkb_grmode; in pack_rcom_lock() 399 rl->rl_status = lkb->lkb_status; in pack_rcom_lock() [all …]
|
D | lock.c | 5577 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf; in receive_rcom_lock_args() local 5580 lkb->lkb_ownpid = le32_to_cpu(rl->rl_ownpid); in receive_rcom_lock_args() 5581 lkb->lkb_remid = le32_to_cpu(rl->rl_lkid); in receive_rcom_lock_args() 5582 lkb->lkb_exflags = le32_to_cpu(rl->rl_exflags); in receive_rcom_lock_args() 5583 lkb->lkb_flags = le32_to_cpu(rl->rl_flags) & 0x0000FFFF; in receive_rcom_lock_args() 5585 lkb->lkb_lvbseq = le32_to_cpu(rl->rl_lvbseq); in receive_rcom_lock_args() 5586 lkb->lkb_rqmode = rl->rl_rqmode; in receive_rcom_lock_args() 5587 lkb->lkb_grmode = rl->rl_grmode; in receive_rcom_lock_args() 5590 lkb->lkb_bastfn = (rl->rl_asts & DLM_CB_BAST) ? &fake_bastfn : NULL; in receive_rcom_lock_args() 5591 lkb->lkb_astfn = (rl->rl_asts & DLM_CB_CAST) ? &fake_astfn : NULL; in receive_rcom_lock_args() [all …]
|
/linux-4.1.27/arch/arm/mm/ |
D | proc-v7-3level.S | 69 #define rl r3 macro 72 #define rl r2 macro 85 tst rl, #L_PTE_VALID 88 bicne rl, #L_PTE_VALID 94 orrne rl, #PTE_AP2 95 biceq rl, #PTE_AP2
|
/linux-4.1.27/arch/arm/vfp/ |
D | vfp.h | 76 u64 rh, rma, rmb, rl; in mul64to128() local 80 rl = (u64)nl * ml; in mul64to128() 93 rl += rma; in mul64to128() 94 rh += (rl < rma); in mul64to128() 96 *resl = rl; in mul64to128() 108 u64 rh, rl; in vfp_hi64multiply64() local 109 mul64to128(&rh, &rl, n, m); in vfp_hi64multiply64() 110 return rh | (rl != 0); in vfp_hi64multiply64()
|
/linux-4.1.27/fs/f2fs/ |
D | gc.h | 108 struct request_list *rl = &q->root_rl; in is_idle() local 109 return !(rl->count[BLK_RW_SYNC]) && !(rl->count[BLK_RW_ASYNC]); in is_idle()
|
/linux-4.1.27/net/ipv4/ |
D | inetpeer.c | 301 struct inet_peer *rr, *rl, *rlr, *rll; in peer_avl_rebalance() local 304 rl = rcu_deref_locked(r->avl_left, base); in peer_avl_rebalance() 305 rlh = node_height(rl); in peer_avl_rebalance() 307 RCU_INIT_POINTER(node->avl_right, rl); /* rl: LH or LH+1 */ in peer_avl_rebalance() 315 rlr = rcu_deref_locked(rl->avl_right, base);/* rlr: LH or LH-1 */ in peer_avl_rebalance() 316 rll = rcu_deref_locked(rl->avl_left, base);/* rll: LH or LH-1 */ in peer_avl_rebalance() 323 RCU_INIT_POINTER(rl->avl_right, r); /* r: LH+1 */ in peer_avl_rebalance() 324 RCU_INIT_POINTER(rl->avl_left, node); /* node: LH+1 */ in peer_avl_rebalance() 325 rl->avl_height = lh + 2; in peer_avl_rebalance() 326 RCU_INIT_POINTER(*nodep, rl); in peer_avl_rebalance()
|
/linux-4.1.27/include/linux/ |
D | jump_label_ratelimit.h | 18 jump_label_rate_limit(struct static_key_deferred *key, unsigned long rl); 31 unsigned long rl) in jump_label_rate_limit() argument
|
D | blkdev.h | 168 struct request_list *rl; /* rl this rq is alloced from */ member 653 static inline bool blk_rl_full(struct request_list *rl, bool sync) in blk_rl_full() argument 657 return rl->flags & flag; in blk_rl_full() 660 static inline void blk_set_rl_full(struct request_list *rl, bool sync) in blk_set_rl_full() argument 664 rl->flags |= flag; in blk_set_rl_full() 667 static inline void blk_clear_rl_full(struct request_list *rl, bool sync) in blk_clear_rl_full() argument 671 rl->flags &= ~flag; in blk_clear_rl_full()
|
/linux-4.1.27/sound/oss/ |
D | swarm_cs4297a.c | 1187 unsigned char l, r, rl, rr, vidx; in mixer_ioctl() local 1348 rl = 63; in mixer_ioctl() 1351 rl = attentbl[(10 * l) / 100]; // Convert 0-100 vol to 63-0 atten. in mixer_ioctl() 1362 if ((rl > 60) && (rr > 60)) // If both l & r are 'low', in mixer_ioctl() 1367 temp1 |= (rl << 8) | rr; in mixer_ioctl() 1386 rl = 0; in mixer_ioctl() 1389 rl = (l * 2 - 5) / 13; // Convert 0-100 range to 0-15. in mixer_ioctl() 1390 l = (rl * 13 + 5) / 2; in mixer_ioctl() 1393 if (rl < 3) { in mixer_ioctl() 1395 rl = 0; in mixer_ioctl() [all …]
|
/linux-4.1.27/net/can/ |
D | af_can.c | 474 struct hlist_head *rl; in can_rx_register() local 491 rl = find_rcv_list(&can_id, &mask, d); in can_rx_register() 500 hlist_add_head_rcu(&r->list, rl); in can_rx_register() 542 struct hlist_head *rl; in can_rx_unregister() local 558 rl = find_rcv_list(&can_id, &mask, d); in can_rx_unregister() 566 hlist_for_each_entry_rcu(r, rl, list) { in can_rx_unregister()
|
/linux-4.1.27/fs/ocfs2/ |
D | refcounttree.c | 1253 struct ocfs2_refcount_list *rl = &rb->rf_records; in ocfs2_change_refcount_rec() local 1254 struct ocfs2_refcount_rec *rec = &rl->rl_recs[index]; in ocfs2_change_refcount_rec() 1269 if (index != le16_to_cpu(rl->rl_used) - 1) { in ocfs2_change_refcount_rec() 1271 (le16_to_cpu(rl->rl_used) - index - 1) * in ocfs2_change_refcount_rec() 1273 memset(&rl->rl_recs[le16_to_cpu(rl->rl_used) - 1], in ocfs2_change_refcount_rec() 1277 le16_add_cpu(&rl->rl_used, -1); in ocfs2_change_refcount_rec() 1425 static int ocfs2_find_refcount_split_pos(struct ocfs2_refcount_list *rl, in ocfs2_find_refcount_split_pos() argument 1428 int num_used = le16_to_cpu(rl->rl_used); in ocfs2_find_refcount_split_pos() 1434 &rl->rl_recs[middle - delta - 1], in ocfs2_find_refcount_split_pos() 1435 &rl->rl_recs[middle - delta])) { in ocfs2_find_refcount_split_pos() [all …]
|
/linux-4.1.27/fs/qnx4/ |
D | inode.c | 155 int rd, rl; in qnx4_checkroot() local 162 rl = le32_to_cpu(s->RootDir.di_first_xtnt.xtnt_size); in qnx4_checkroot() 163 for (j = 0; j < rl; j++) { in qnx4_checkroot()
|
/linux-4.1.27/arch/x86/kvm/ |
D | i8254.c | 62 u64 rl, rh; in muldiv64() local 65 rl = (u64)u.l.low * (u64)b; in muldiv64() 67 rh += (rl >> 32); in muldiv64() 69 res.l.low = div64_u64(((mod_64(rh, c) << 32) + (rl & 0xffffffff)), c); in muldiv64()
|
/linux-4.1.27/include/math-emu/ |
D | op-2.h | 152 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \ 153 (rh = xh + yh + ((rl = xl + yl) < xl)) 156 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \ 157 (rh = xh - yh - ((rl = xl - yl) > xl))
|
/linux-4.1.27/drivers/staging/olpc_dcon/ |
D | olpc_dcon.c | 484 unsigned short rl; in dcon_resumeline_store() local 487 rc = kstrtou16(buf, 10, &rl); in dcon_resumeline_store() 491 resumeline = rl; in dcon_resumeline_store()
|
/linux-4.1.27/kernel/ |
D | jump_label.c | 120 unsigned long rl) in jump_label_rate_limit() argument 123 key->timeout = rl; in jump_label_rate_limit()
|
/linux-4.1.27/drivers/video/fbdev/ |
D | metronomefb.c | 276 unsigned char rl; in load_waveform() local 289 rl = mem[wfm_idx++]; in load_waveform() 290 for (i = 0; i <= rl; i++) in load_waveform()
|
/linux-4.1.27/drivers/hwmon/ |
D | asc7621.c | 813 #define PREAD(name, n, pri, rm, rl, m, s, r) \ argument 815 .priority = pri, .msb[0] = rm, .lsb[0] = rl, .mask[0] = m, \ 818 #define PWRITE(name, n, pri, rm, rl, m, s, r) \ argument 820 .priority = pri, .msb[0] = rm, .lsb[0] = rl, .mask[0] = m, \ 827 #define PWRITEM(name, n, pri, rm, rl, m, s, r) \ argument 829 .priority = pri, .msb = rm, .lsb = rl, .mask = m, .shift = s,}
|
/linux-4.1.27/Documentation/block/ |
D | request.txt | 88 struct request_list *rl B Request list this request came from
|
D | biodoc.txt | 553 struct request_list *rl;
|
/linux-4.1.27/fs/ |
D | binfmt_flat.c | 383 static void old_reloc(unsigned long rl) in old_reloc() argument 391 r.value = rl; in old_reloc()
|
/linux-4.1.27/Documentation/sound/oss/ |
D | AudioExcelDSP16 | 91 > From: Mr S J Greenaway <sjg95@unixfe.rl.ac.uk>
|
/linux-4.1.27/drivers/net/ethernet/microchip/ |
D | enc28j60.c | 301 int rl, rh; in nolock_regw_read() local 304 rl = spi_read_op(priv, ENC28J60_READ_CTRL_REG, address); in nolock_regw_read() 307 return (rh << 8) | rl; in nolock_regw_read()
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_main.c | 1089 unsigned long rl; in fill_bitmap_rle_bits() local 1122 rl = tmp - c->bit_offset; in fill_bitmap_rle_bits() 1125 if (rl == 0) { in fill_bitmap_rle_bits() 1138 if (rl == 0) { in fill_bitmap_rle_bits() 1144 bits = vli_encode_bits(&bs, rl); in fill_bitmap_rle_bits() 1153 plain_bits += rl; in fill_bitmap_rle_bits()
|
D | drbd_receiver.c | 4309 u64 rl; in recv_bm_rle_bits() local 4323 for (have = bits; have > 0; s += rl, toggle = !toggle) { in recv_bm_rle_bits() 4324 bits = vli_decode_bits(&rl, look_ahead); in recv_bm_rle_bits() 4329 e = s + rl -1; in recv_bm_rle_bits()
|
/linux-4.1.27/drivers/usb/isp1760/ |
D | isp1760-hcd.c | 541 u32 rl = RL_COUNTER; in create_ptd_atl() local 583 rl = 0; in create_ptd_atl() 594 ptd->dw2 |= TO_DW2_RL(rl); in create_ptd_atl()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pciercx-defs.h | 1040 uint32_t rl:1; member 1050 uint32_t rl:1;
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 658 rl a ; a = index*2
|
D | xircom_pgs.S | 696 rl a ; a = index*2
|
/linux-4.1.27/arch/arm/ |
D | Kconfig.debug | 126 bool "Kernel low-level debugging on rm9200, 9260/9g20, 9261/9g10, 9rl, 9x5, 9n12"
|
/linux-4.1.27/Documentation/ |
D | kernel-parameters.txt | 3832 Example: quirks=0419:aaf5:rl,0421:0433:rc
|