/linux-4.4.14/arch/cris/arch-v10/lib/ |
D | memset.c | 54 register int lc __asm__ ("r11") = c; in memset() 67 : "=r" (lc) /* Inputs. */ in memset() 68 : "0" (lc) /* Outputs. */ in memset() 80 *dst = (char) lc; in memset() 87 *(short *) dst = lc; in memset() 153 : "0" (dst), "1" (n), "r" (lc)); in memset() 159 *(long *) dst = lc; dst += 4; in memset() 160 *(long *) dst = lc; dst += 4; in memset() 161 *(long *) dst = lc; dst += 4; in memset() 162 *(long *) dst = lc; dst += 4; in memset() [all …]
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
D | memset.c | 54 register int lc __asm__ ("r11") = c; in memset() 67 : "=r" (lc) /* Inputs. */ in memset() 68 : "0" (lc) /* Outputs. */ in memset() 80 *dst = (char) lc; in memset() 87 *(short *) dst = lc; in memset() 153 : "0" (dst), "1" (n), "r" (lc)); in memset() 159 *(long *) dst = lc; dst += 4; in memset() 160 *(long *) dst = lc; dst += 4; in memset() 161 *(long *) dst = lc; dst += 4; in memset() 162 *(long *) dst = lc; dst += 4; in memset() [all …]
|
/linux-4.4.14/lib/ |
D | lru_cache.c | 41 BUG_ON(!lc); \ 42 BUG_ON(!lc->nr_elements); \ 43 BUG_ON(test_and_set_bit(__LC_PARANOIA, &lc->flags)); \ 47 clear_bit_unlock(__LC_PARANOIA, &lc->flags); \ 51 #define PARANOIA_LC_ELEMENT(lc, e) do { \ argument 52 struct lru_cache *lc_ = (lc); \ 67 int lc_try_lock(struct lru_cache *lc) in lc_try_lock() argument 71 val = cmpxchg(&lc->flags, 0, LC_LOCKED); in lc_try_lock() 80 old = lc->flags & LC_PARANOIA; in lc_try_lock() 82 val = cmpxchg(&lc->flags, old, new); in lc_try_lock() [all …]
|
D | decompress_unlzma.c | 350 int lc, uint32_t literal_pos_mask) { in process_bit0() argument 355 * (((get_pos(wr) & literal_pos_mask) << lc) in process_bit0() 356 + (wr->previous_byte >> (8 - lc)))) in process_bit0() 546 int lc, pb, lp; in unlzma() local 592 lc = header.pos; in unlzma() 593 while (lc >= 9) { in unlzma() 595 lc -= 9; in unlzma() 621 num_probs = LZMA_BASE_SIZE + (LZMA_LIT_SIZE << (lc + lp)); in unlzma() 625 num_probs = LZMA_LITERAL + (LZMA_LIT_SIZE << (lc + lp)); in unlzma() 637 lc, literal_pos_mask)) { in unlzma()
|
/linux-4.4.14/drivers/md/ |
D | dm-log.c | 294 static int rw_header(struct log_c *lc, int rw) in rw_header() argument 296 lc->io_req.bi_rw = rw; in rw_header() 298 return dm_io(&lc->io_req, 1, &lc->header_location, NULL); in rw_header() 301 static int flush_header(struct log_c *lc) in flush_header() argument 304 .bdev = lc->header_location.bdev, in flush_header() 309 lc->io_req.bi_rw = WRITE_FLUSH; in flush_header() 311 return dm_io(&lc->io_req, 1, &null_location, NULL); in flush_header() 367 struct log_c *lc; in create_log_context() local 399 lc = kmalloc(sizeof(*lc), GFP_KERNEL); in create_log_context() 400 if (!lc) { in create_log_context() [all …]
|
D | dm-log-writes.c | 131 static void put_pending_block(struct log_writes_c *lc) in put_pending_block() argument 133 if (atomic_dec_and_test(&lc->pending_blocks)) { in put_pending_block() 135 if (waitqueue_active(&lc->wait)) in put_pending_block() 136 wake_up(&lc->wait); in put_pending_block() 140 static void put_io_block(struct log_writes_c *lc) in put_io_block() argument 142 if (atomic_dec_and_test(&lc->io_blocks)) { in put_io_block() 144 if (waitqueue_active(&lc->wait)) in put_io_block() 145 wake_up(&lc->wait); in put_io_block() 151 struct log_writes_c *lc = bio->bi_private; in log_end_io() local 159 spin_lock_irqsave(&lc->blocks_lock, flags); in log_end_io() [all …]
|
D | dm-log-userspace-base.c | 84 static int userspace_do_request(struct log_c *lc, const char *uuid, in userspace_do_request() argument 96 r = dm_consult_userspace(uuid, lc->luid, request_type, data, in userspace_do_request() 107 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_CTR, in userspace_do_request() 108 lc->usr_argv_str, in userspace_do_request() 109 strlen(lc->usr_argv_str) + 1, in userspace_do_request() 115 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_RESUME, NULL, in userspace_do_request() 159 struct log_c *lc = container_of(work, struct log_c, flush_log_work.work); in do_flush() local 161 atomic_set(&lc->sched_flush, 0); in do_flush() 163 r = userspace_do_request(lc, lc->uuid, DM_ULOG_FLUSH, NULL, 0, NULL, NULL); in do_flush() 166 dm_table_event(lc->ti->table); in do_flush() [all …]
|
D | dm-linear.c | 30 struct linear_c *lc; in linear_ctr() local 40 lc = kmalloc(sizeof(*lc), GFP_KERNEL); in linear_ctr() 41 if (lc == NULL) { in linear_ctr() 51 lc->start = tmp; in linear_ctr() 53 ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev); in linear_ctr() 62 ti->private = lc; in linear_ctr() 66 kfree(lc); in linear_ctr() 72 struct linear_c *lc = (struct linear_c *) ti->private; in linear_dtr() local 74 dm_put_device(ti, lc->dev); in linear_dtr() 75 kfree(lc); in linear_dtr() [all …]
|
/linux-4.4.14/include/linux/ |
D | lru_cache.h | 254 extern void lc_reset(struct lru_cache *lc); 255 extern void lc_destroy(struct lru_cache *lc); 256 extern void lc_set(struct lru_cache *lc, unsigned int enr, int index); 257 extern void lc_del(struct lru_cache *lc, struct lc_element *element); 259 extern struct lc_element *lc_get_cumulative(struct lru_cache *lc, unsigned int enr); 260 extern struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr); 261 extern struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr); 262 extern struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr); 263 extern unsigned int lc_put(struct lru_cache *lc, struct lc_element *e); 264 extern void lc_committed(struct lru_cache *lc); [all …]
|
/linux-4.4.14/arch/s390/kernel/ |
D | setup.c | 294 struct _lowcore *lc; in setup_lowcore() local 300 lc = __alloc_bootmem_low(LC_PAGES * PAGE_SIZE, LC_PAGES * PAGE_SIZE, 0); in setup_lowcore() 301 lc->restart_psw.mask = PSW_KERNEL_BITS; in setup_lowcore() 302 lc->restart_psw.addr = in setup_lowcore() 304 lc->external_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore() 306 lc->external_new_psw.addr = in setup_lowcore() 308 lc->svc_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore() 310 lc->svc_new_psw.addr = PSW_ADDR_AMODE | (unsigned long) system_call; in setup_lowcore() 311 lc->program_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore() 313 lc->program_new_psw.addr = in setup_lowcore() [all …]
|
D | smp.c | 183 struct _lowcore *lc; in pcpu_alloc_lowcore() local 196 lc = pcpu->lowcore; in pcpu_alloc_lowcore() 197 memcpy(lc, &S390_lowcore, 512); in pcpu_alloc_lowcore() 198 memset((char *) lc + 512, 0, sizeof(*lc) - 512); in pcpu_alloc_lowcore() 199 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET; in pcpu_alloc_lowcore() 200 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET; in pcpu_alloc_lowcore() 201 lc->cpu_nr = cpu; in pcpu_alloc_lowcore() 202 lc->spinlock_lockval = arch_spin_lockval(cpu); in pcpu_alloc_lowcore() 204 lc->vector_save_area_addr = in pcpu_alloc_lowcore() 205 (unsigned long) &lc->vector_save_area; in pcpu_alloc_lowcore() [all …]
|
D | machine_kexec.c | 57 struct _lowcore *lc; in setup_regs() local 61 lc = (struct _lowcore *)(unsigned long)S390_lowcore.prefixreg_save_area; in setup_regs() 72 save_vx_regs_safe((void *) lc->vector_save_area_addr); in setup_regs()
|
D | ipl.c | 2047 struct _lowcore *lc; in s390_reset_system() local 2049 lc = (struct _lowcore *)(unsigned long) store_prefix(); in s390_reset_system() 2052 lc->panic_stack = S390_lowcore.panic_stack; in s390_reset_system() 2055 dump_prefix_page = (u32)(unsigned long) lc; in s390_reset_system()
|
/linux-4.4.14/net/rds/ |
D | loop.c | 121 struct rds_loop_connection *lc; in rds_loop_conn_alloc() local 124 lc = kzalloc(sizeof(struct rds_loop_connection), gfp); in rds_loop_conn_alloc() 125 if (!lc) in rds_loop_conn_alloc() 128 INIT_LIST_HEAD(&lc->loop_node); in rds_loop_conn_alloc() 129 lc->conn = conn; in rds_loop_conn_alloc() 130 conn->c_transport_data = lc; in rds_loop_conn_alloc() 133 list_add_tail(&lc->loop_node, &loop_conns); in rds_loop_conn_alloc() 141 struct rds_loop_connection *lc = arg; in rds_loop_conn_free() local 144 rdsdebug("lc %p\n", lc); in rds_loop_conn_free() 146 list_del(&lc->loop_node); in rds_loop_conn_free() [all …]
|
/linux-4.4.14/fs/ocfs2/ |
D | stack_user.c | 825 struct ocfs2_live_connection *lc = conn->cc_private; in sync_wait_cb() local 826 complete(&lc->oc_sync_wait); in sync_wait_cb() 833 struct ocfs2_live_connection *lc = conn->cc_private; in sync_unlock() local 842 wait_for_completion(&lc->oc_sync_wait); in sync_unlock() 857 struct ocfs2_live_connection *lc = conn->cc_private; in sync_lock() local 868 wait_for_completion(&lc->oc_sync_wait); in sync_lock() 884 struct ocfs2_live_connection *lc = conn->cc_private; in version_lock() local 886 &lc->oc_version_lksb, VERSION_LOCK); in version_lock() 891 struct ocfs2_live_connection *lc = conn->cc_private; in version_unlock() local 892 return sync_unlock(conn, &lc->oc_version_lksb, VERSION_LOCK); in version_unlock() [all …]
|
/linux-4.4.14/arch/ia64/lib/ |
D | xor.S | 23 .save ar.lc, r30 24 mov r30 = ar.lc 37 mov ar.lc = in0 50 mov ar.lc = r30 60 .save ar.lc, r30 61 mov r30 = ar.lc 75 mov ar.lc = in0 90 mov ar.lc = r30 100 .save ar.lc, r30 101 mov r30 = ar.lc [all …]
|
D | flush.S | 41 .save ar.lc,r3 42 mov r3=ar.lc // save ar.lc 46 mov ar.lc=r8 60 mov ar.lc=r3 // restore ar.lc 95 .save ar.lc,r3 96 mov r3=ar.lc // save ar.lc 100 mov ar.lc=r8 115 mov ar.lc=r3 // restore ar.lc
|
D | strnlen_user.S | 20 .save ar.lc, r16 21 mov r16=ar.lc // preserve ar.lc 27 mov ar.lc=r3 43 mov ar.lc=r16 // restore ar.lc
|
D | clear_user.S | 59 .save ar.lc, saved_lc 60 mov saved_lc=ar.lc // preserve ar.lc (slow) 68 mov ar.lc=tmp // initialize lc for small count 89 mov ar.lc=saved_lc 125 mov ar.lc=tmp 153 mov ar.lc=saved_lc 207 mov ar.lc=saved_lc
|
D | clear_page.S | 36 .save ar.lc, saved_lc 37 mov saved_lc = ar.lc 40 mov ar.lc = (PREFETCH_LINES - 1) 50 mov ar.lc = r16 // one L3 line per iteration 74 mov ar.lc = saved_lc // restore lc
|
D | copy_user.S | 86 .save ar.lc, saved_lc 87 mov saved_lc=ar.lc // preserve ar.lc (slow) 102 mov ar.lc=len2 // initialize lc for small count 117 mov ar.lc=saved_lc 192 mov ar.lc=cnt 216 mov ar.lc=cnt 303 mov ar.lc=len1 310 mov ar.lc=saved_lc 369 mov ar.lc=tmp 401 mov ar.lc=saved_lc [all …]
|
D | memcpy.S | 50 .save ar.lc, saved_lc 51 mov saved_lc=ar.lc 77 mov ar.lc=cnt 106 mov ar.lc=saved_lc 123 mov ar.lc=cnt 149 mov ar.lc=saved_lc 243 mov ar.lc=t2 262 mov ar.lc=saved_lc
|
D | copy_page.S | 46 .save ar.lc, saved_lc 47 mov saved_lc=ar.lc 63 mov ar.lc=lcount 96 mov ar.lc=saved_lc
|
D | copy_page_mck.S | 107 .save ar.lc, saved_lc 108 mov saved_lc = ar.lc 118 mov ar.lc = 2*PREFETCH_DIST - 1 137 mov ar.lc = t1 // with 64KB pages, t1 is too big to fit in 8 bits! 182 mov ar.lc = saved_lc
|
D | memset.S | 61 .save ar.lc, save_lc 62 mov.i save_lc = ar.lc 144 mov.i ar.lc = loopcnt // 154 mov.i ar.lc = tmp // 214 mov.i ar.lc = loopcnt 224 mov.i ar.lc = tmp 262 mov.i ar.lc = loopcnt 316 mov.i ar.lc = save_lc 335 mov.i ar.lc = save_lc
|
D | memcpy_mck.S | 118 .save ar.lc, saved_lc 119 mov saved_lc=ar.lc 125 (p7) mov ar.lc=cnt // prefetch count 126 (p8) mov ar.lc=r0 147 mov ar.lc=cnt // loop setup 168 mov ar.lc=saved_lc 201 mov ar.lc = 2*PREFETCH_DIST - 1 216 mov ar.lc = cnt 279 .save ar.lc, saved_lc 280 mov saved_lc=ar.lc [all …]
|
D | do_csum.S | 155 .save ar.lc, saved_lc 156 mov saved_lc=ar.lc // save lc 219 mov ar.lc=count // set lc 287 mov ar.lc=saved_lc
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/ |
D | subr.c | 154 struct link_config *lc = &adapter->port[port_id].link_config; in t1_link_changed() local 158 lc->speed = speed < 0 ? SPEED_INVALID : speed; in t1_link_changed() 159 lc->duplex = duplex < 0 ? DUPLEX_INVALID : duplex; in t1_link_changed() 160 if (!(lc->requested_fc & PAUSE_AUTONEG)) in t1_link_changed() 161 fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t1_link_changed() 163 if (link_ok && speed >= 0 && lc->autoneg == AUTONEG_ENABLE) { in t1_link_changed() 168 lc->fc = (unsigned char)fc; in t1_link_changed() 623 int t1_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc) in t1_link_start() argument 625 unsigned int fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t1_link_start() 627 if (lc->supported & SUPPORTED_Autoneg) { in t1_link_start() [all …]
|
D | cxgb2.c | 635 struct link_config *lc = &p->link_config; in set_settings() local 637 if (!(lc->supported & SUPPORTED_Autoneg)) in set_settings() 644 if (!(lc->supported & cap) || (speed == SPEED_1000)) in set_settings() 646 lc->requested_speed = speed; in set_settings() 647 lc->requested_duplex = cmd->duplex; in set_settings() 648 lc->advertising = 0; in set_settings() 652 cmd->advertising = lc->supported; in set_settings() 653 cmd->advertising &= lc->supported; in set_settings() 656 lc->requested_speed = SPEED_INVALID; in set_settings() 657 lc->requested_duplex = DUPLEX_INVALID; in set_settings() [all …]
|
D | common.h | 337 int t1_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
|
/linux-4.4.14/fs/affs/ |
D | symlink.c | 21 char lc; in affs_symlink_readpage() local 31 lc = 0; in affs_symlink_readpage() 46 lc = '/'; in affs_symlink_readpage() 49 if (c == '/' && lc == '/' && i < 1020) { /* parent dir */ in affs_symlink_readpage() 54 lc = c; in affs_symlink_readpage()
|
D | namei.c | 336 char c, lc; in affs_symlink() local 357 lc = '/'; in affs_symlink() 368 if (c == '.' && lc == '/' && *symname == '.' && symname[1] == '/') { in affs_symlink() 372 lc = '/'; in affs_symlink() 373 } else if (c == '.' && lc == '/' && *symname == '/') { in affs_symlink() 375 lc = '/'; in affs_symlink() 378 lc = c; in affs_symlink() 381 if (lc == '/') in affs_symlink()
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | io.c | 130 u32 lc = c; in _memset_io() local 131 lc |= lc << 8; in _memset_io() 132 lc |= lc << 16; in _memset_io() 141 *((volatile u32 *)p) = lc; in _memset_io()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | t4vf_common.h | 239 static inline bool is_10g_port(const struct link_config *lc) in is_10g_port() argument 241 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0; in is_10g_port() 244 static inline bool is_x_10g_port(const struct link_config *lc) in is_x_10g_port() argument 246 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 || in is_x_10g_port() 247 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0; in is_x_10g_port()
|
D | t4vf_hw.c | 261 static void init_link_config(struct link_config *lc, unsigned int caps) in init_link_config() argument 263 lc->supported = caps; in init_link_config() 264 lc->requested_speed = 0; in init_link_config() 265 lc->speed = 0; in init_link_config() 266 lc->requested_fc = lc->fc = PAUSE_RX | PAUSE_TX; in init_link_config() 267 if (lc->supported & FW_PORT_CAP_ANEG) { in init_link_config() 268 lc->advertising = lc->supported & ADVERT_MASK; in init_link_config() 269 lc->autoneg = AUTONEG_ENABLE; in init_link_config() 270 lc->requested_fc |= PAUSE_AUTONEG; in init_link_config() 272 lc->advertising = 0; in init_link_config() [all …]
|
/linux-4.4.14/arch/s390/mm/ |
D | maccess.c | 163 unsigned long lc; in is_swapped() local 169 lc = (unsigned long) lowcore_ptr[cpu]; in is_swapped() 170 if (addr > lc + sizeof(struct _lowcore) - 1 || addr < lc) in is_swapped()
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | t3_hw.c | 1212 struct link_config *lc = &pi->link_config; in t3_link_changed() local 1216 if (!lc->link_ok && link_ok) { in t3_link_changed() 1233 if (lc->requested_fc & PAUSE_AUTONEG) in t3_link_changed() 1234 fc &= lc->requested_fc; in t3_link_changed() 1236 fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t3_link_changed() 1238 if (link_ok == lc->link_ok && speed == lc->speed && in t3_link_changed() 1239 duplex == lc->duplex && fc == lc->fc) in t3_link_changed() 1242 if (link_ok != lc->link_ok && adapter->params.rev > 0 && in t3_link_changed() 1249 lc->link_ok = link_ok; in t3_link_changed() 1250 lc->speed = speed < 0 ? SPEED_INVALID : speed; in t3_link_changed() [all …]
|
D | cxgb3_main.c | 1863 struct link_config *lc = &p->link_config; in set_settings() local 1865 if (!(lc->supported & SUPPORTED_Autoneg)) { in set_settings() 1873 if (lc->supported & cap) in set_settings() 1883 if (!(lc->supported & cap) || (speed == SPEED_1000)) in set_settings() 1885 lc->requested_speed = speed; in set_settings() 1886 lc->requested_duplex = cmd->duplex; in set_settings() 1887 lc->advertising = 0; in set_settings() 1890 cmd->advertising &= lc->supported; in set_settings() 1893 lc->requested_speed = SPEED_INVALID; in set_settings() 1894 lc->requested_duplex = DUPLEX_INVALID; in set_settings() [all …]
|
D | common.h | 677 int t3_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
|
/linux-4.4.14/net/tipc/ |
D | netlink_compat.c | 585 struct tipc_link_config *lc) in __tipc_add_link_prop() argument 589 return nla_put_u32(skb, TIPC_NLA_PROP_PRIO, ntohl(lc->value)); in __tipc_add_link_prop() 591 return nla_put_u32(skb, TIPC_NLA_PROP_TOL, ntohl(lc->value)); in __tipc_add_link_prop() 593 return nla_put_u32(skb, TIPC_NLA_PROP_WIN, ntohl(lc->value)); in __tipc_add_link_prop() 604 struct tipc_link_config *lc; in tipc_nl_compat_media_set() local 606 lc = (struct tipc_link_config *)TLV_DATA(msg->req); in tipc_nl_compat_media_set() 612 if (nla_put_string(skb, TIPC_NLA_MEDIA_NAME, lc->name)) in tipc_nl_compat_media_set() 619 __tipc_add_link_prop(skb, msg, lc); in tipc_nl_compat_media_set() 631 struct tipc_link_config *lc; in tipc_nl_compat_bearer_set() local 633 lc = (struct tipc_link_config *)TLV_DATA(msg->req); in tipc_nl_compat_bearer_set() [all …]
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_ethtool.c | 616 struct link_config *lc = &p->link_cfg; in set_settings() local 624 if (!(lc->supported & FW_PORT_CAP_ANEG)) { in set_settings() 629 (lc->supported & speed_to_caps(speed))) in set_settings() 634 old_lc = *lc; in set_settings() 638 if (!(lc->supported & cap)) in set_settings() 640 lc->requested_speed = cap; in set_settings() 641 lc->advertising = 0; in set_settings() 644 if (!(lc->supported & cap)) in set_settings() 646 lc->requested_speed = 0; in set_settings() 647 lc->advertising = cap | FW_PORT_CAP_ANEG; in set_settings() [all …]
|
D | t4_hw.c | 3578 struct link_config *lc) in t4_link_l1cfg() argument 3583 lc->link_ok = 0; in t4_link_l1cfg() 3584 if (lc->requested_fc & PAUSE_RX) in t4_link_l1cfg() 3586 if (lc->requested_fc & PAUSE_TX) in t4_link_l1cfg() 3597 if (!(lc->supported & FW_PORT_CAP_ANEG)) { in t4_link_l1cfg() 3598 c.u.l1cfg.rcap = cpu_to_be32((lc->supported & ADVERT_MASK) | in t4_link_l1cfg() 3600 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_l1cfg() 3601 } else if (lc->autoneg == AUTONEG_DISABLE) { in t4_link_l1cfg() 3602 c.u.l1cfg.rcap = cpu_to_be32(lc->requested_speed | fc | mdi); in t4_link_l1cfg() 3603 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_l1cfg() [all …]
|
D | cxgb4.h | 1222 struct link_config *lc);
|
D | cxgb4_main.c | 4272 static inline bool is_x_10g_port(const struct link_config *lc) in is_x_10g_port() argument 4274 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 || in is_x_10g_port() 4275 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0; in is_x_10g_port()
|
/linux-4.4.14/drivers/uwb/ |
D | Makefile | 17 lc-dev.o \ 18 lc-rc.o \
|
/linux-4.4.14/lib/zlib_deflate/ |
D | deftree.c | 972 unsigned lc /* match length-MIN_MATCH or unmatched char (if dist==0) */ argument 976 s->l_buf[s->last_lit++] = (uch)lc; 979 s->dyn_ltree[lc].Freq++; 985 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && 988 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++; 1025 int lc; /* match length or unmatched char (if dist == 0) */ local 1032 lc = s->l_buf[lx++]; 1034 send_code(s, lc, ltree); /* send a literal byte */ 1035 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); 1038 code = length_code[lc]; [all …]
|
D | defutil.h | 277 int zlib_tr_tally (deflate_state *s, unsigned dist, unsigned lc);
|
/linux-4.4.14/arch/ia64/hp/sim/boot/ |
D | boot_head.S | 95 mov r9=ar.lc 98 mov ar.lc=r8 108 mov ar.lc=r9
|
/linux-4.4.14/fs/hpfs/ |
D | name.c | 54 unsigned len, int lc, int lng) in hpfs_translate_name() argument 65 if (!lc) return from; in hpfs_translate_name()
|
D | dir.c | 66 int lc; in hpfs_readdir() local 107 lc = hpfs_sb(inode->i_sb)->sb_lowercase; in hpfs_readdir() 166 tempname = hpfs_translate_name(inode->i_sb, de->name, de->namelen, lc, de->not_8x3); in hpfs_readdir()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | head.S | 49 mov ar.lc=IA64_NUM_DBG_REGS-1;; \ 57 mov ar.lc=IA64_NUM_DBG_REGS-1;; \ 88 mov ar.lc=0x08-1;; \ 134 SAVE_FROM_REG(ar.lc, _reg1, _reg2);; \ 425 mov r20=ar.lc // preserve ar.lc 426 mov ar.lc=IA64_NUM_DBG_REGS-1 442 mov ar.lc=r20 // restore ar.lc 449 mov r20=ar.lc // preserve ar.lc 451 mov ar.lc=IA64_NUM_DBG_REGS-1 466 mov ar.lc=r20 // restore ar.lc [all …]
|
D | relocate_kernel.S | 83 mov ar.lc=r20 156 mov ar.lc=r14;; 300 mov r5 = ar.lc
|
D | entry.h | 59 .spillsp ar.pfs,SW(AR_PFS)+16+(off); .spillsp ar.lc,SW(AR_LC)+16+(off); \
|
D | ptrace.c | 824 unsigned long psr, ec, lc, rnat, bsp, cfm, nat_bits, val; in ptrace_getregs() local 850 || access_uarea(child, PT_AR_LC, &lc, 0) < 0 in ptrace_getregs() 872 retval |= __put_user(lc, &ppr->ar[PT_AUR_LC]); in ptrace_getregs() 968 unsigned long psr, rsc, ec, lc, rnat, bsp, cfm, nat_bits, val = 0; in ptrace_setregs() local 1008 retval |= __get_user(lc, &ppr->ar[PT_AUR_LC]); in ptrace_setregs() 1101 retval |= access_uarea(child, PT_AR_LC, &lc, 1); in ptrace_setregs()
|
D | mca_asm.S | 82 mov ar.lc=r20 614 mov temp3=ar.lc 776 mov ar.lc=temp3
|
D | entry.S | 87 mov ar.unat=0; mov ar.lc=0 308 mov r21=ar.lc // I-unit 441 mov ar.lc=r17
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
D | lprocfs_status.c | 1263 __s64 lprocfs_read_helper(struct lprocfs_counter *lc, in lprocfs_read_helper() argument 1270 if (lc == NULL || header == NULL) in lprocfs_read_helper() 1278 ret = lc->lc_sum; in lprocfs_read_helper() 1280 ret += lc->lc_sum_irq; in lprocfs_read_helper() 1283 ret = lc->lc_min; in lprocfs_read_helper() 1286 ret = lc->lc_max; in lprocfs_read_helper() 1289 ret = (lc->lc_max - lc->lc_min) / 2; in lprocfs_read_helper() 1292 ret = lc->lc_sumsquare; in lprocfs_read_helper() 1295 ret = lc->lc_count; in lprocfs_read_helper()
|
/linux-4.4.14/drivers/staging/lustre/lnet/selftest/ |
D | framework.c | 88 #define sfw_unpack_lnet_counters(lc) \ argument 90 __swab32s(&(lc).errors); \ 91 __swab32s(&(lc).msgs_max); \ 92 __swab32s(&(lc).msgs_alloc); \ 93 __swab32s(&(lc).send_count); \ 94 __swab32s(&(lc).recv_count); \ 95 __swab32s(&(lc).drop_count); \ 96 __swab32s(&(lc).route_count); \ 97 __swab64s(&(lc).send_length); \ 98 __swab64s(&(lc).recv_length); \ [all …]
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_misc.c | 192 unsigned int vd, vs, ve, vt, lc; in matroxfb_vgaHWinit() local 271 lc = vd; in matroxfb_vgaHWinit() 299 ((lc & 0x400) >> 3); in matroxfb_vgaHWinit() 314 ((lc & 0x100) >> 4) | in matroxfb_vgaHWinit() 320 ((lc & 0x200) >> 3); in matroxfb_vgaHWinit() 333 hw->CRTC[24] = lc; in matroxfb_vgaHWinit()
|
/linux-4.4.14/drivers/s390/char/ |
D | tape_3590.h | 77 unsigned int lc:3; member
|
/linux-4.4.14/lib/xz/ |
D | xz_dec_lzma2.c | 154 uint32_t lc; member 575 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs() 576 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs() 818 s->lzma.lc = props; in lzma_props() 820 if (s->lzma.lc + s->lzma.literal_pos_mask > 4) in lzma_props()
|
/linux-4.4.14/fs/cifs/ |
D | smb2ops.c | 1434 struct create_lease *lc = (struct create_lease *)buf; in smb2_parse_lease_buf() local 1437 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) in smb2_parse_lease_buf() 1439 return le32_to_cpu(lc->lcontext.LeaseState); in smb2_parse_lease_buf() 1445 struct create_lease_v2 *lc = (struct create_lease_v2 *)buf; in smb3_parse_lease_buf() local 1447 *epoch = le16_to_cpu(lc->lcontext.Epoch); in smb3_parse_lease_buf() 1448 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) in smb3_parse_lease_buf() 1450 return le32_to_cpu(lc->lcontext.LeaseState); in smb3_parse_lease_buf()
|
/linux-4.4.14/tools/perf/util/ |
D | pmu.c | 101 const char *lc; in perf_pmu__parse_scale() local 124 lc = setlocale(LC_NUMERIC, NULL); in perf_pmu__parse_scale() 136 setlocale(LC_NUMERIC, lc); in perf_pmu__parse_scale()
|
/linux-4.4.14/scripts/ |
D | checkpatch.pl | 5385 my $lc = $stat =~ tr@\n@@; 5386 $lc = $lc + $linenr; 5388 for (my $count = $linenr + 1; $count <= $lc; $count++) { 5399 my $lc = $stat =~ tr@\n@@; 5400 $lc = $lc + $linenr; 5402 for (my $count = $linenr + 1; $count <= $lc; $count++) {
|
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/ |
D | hns_ethtool.c | 496 int i, j, lc, good_cnt, ret_val = 0; in __lb_run_test() local 512 lc = 1; in __lb_run_test() 513 for (j = 0; j < lc; j++) { in __lb_run_test()
|
/linux-4.4.14/drivers/net/ethernet/intel/e1000/ |
D | e1000_ethtool.c | 1406 int i, j, k, l, lc, good_cnt, ret_val = 0; in e1000_run_loopback_test() local 1417 lc = ((txdr->count / 64) * 2) + 1; in e1000_run_loopback_test() 1419 lc = ((rxdr->count / 64) * 2) + 1; in e1000_run_loopback_test() 1422 for (j = 0; j <= lc; j++) { /* loop count loop */ in e1000_run_loopback_test()
|
/linux-4.4.14/arch/arm/mach-sa1100/ |
D | Kconfig | 96 <http://h10025.www1.hp.com/ewfrf/wc/product?product=61677&cc=us&lc=en&dlc=en&product=61677#>
|
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/ |
D | ldlm_request.c | 1624 struct ldlm_cli_cancel_arg *lc = arg; in ldlm_cli_hash_cancel_unused() local 1628 lc->lc_flags, lc->lc_opaque); in ldlm_cli_hash_cancel_unused()
|
/linux-4.4.14/drivers/net/ethernet/intel/e1000e/ |
D | ethtool.c | 1634 int lc; in e1000_run_loopback_test() local 1647 lc = ((tx_ring->count / 64) * 2) + 1; in e1000_run_loopback_test() 1649 lc = ((rx_ring->count / 64) * 2) + 1; in e1000_run_loopback_test() 1654 for (j = 0; j <= lc; j++) { in e1000_run_loopback_test()
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | nvidia,tegra20-pinmux.txt | 89 ck32, ddrc, pmca, pmcb, pmcc, pmcd, pmce, xm2c, xm2d, ls, lc, ld17_0,
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | tegra20-trimslice.dts | 242 nvidia,pins = "lc", "ls";
|
D | tegra20-tamonten.dtsi | 227 nvidia,pins = "lc", "ls";
|
D | tegra20-paz00.dts | 240 nvidia,pins = "lc", "ls";
|
D | tegra20-whistler.dts | 217 nvidia,pins = "ck32", "ddrc", "lc", "pmca",
|
D | tegra20-ventana.dts | 249 nvidia,pins = "lc", "ls";
|
D | tegra20-harmony.dts | 245 nvidia,pins = "lc", "ls";
|
D | tegra20-seaboard.dts | 253 nvidia,pins = "lc", "ls";
|
/linux-4.4.14/security/selinux/ss/ |
D | policydb.c | 1220 struct constraint_node *c, *lc; in read_cons_helper() local 1226 lc = NULL; in read_cons_helper() 1232 if (lc) in read_cons_helper() 1233 lc->next = c; in read_cons_helper() 1306 lc = c; in read_cons_helper()
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | sal.h | 883 u64 lc; /* Loop Count */ member
|
/linux-4.4.14/drivers/net/ethernet/intel/igb/ |
D | igb_ethtool.c | 1854 u16 i, j, lc, good_cnt; in igb_run_loopback_test() local 1875 lc = ((tx_ring->count / 64) * 2) + 1; in igb_run_loopback_test() 1877 lc = ((rx_ring->count / 64) * 2) + 1; in igb_run_loopback_test() 1879 for (j = 0; j <= lc; j++) { /* loop count loop */ in igb_run_loopback_test()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | lprocfs_status.h | 511 __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_ethtool.c | 1899 int i, j, lc, good_cnt, ret_val = 0; in ixgbe_run_loopback_test() local 1924 lc = ((tx_ring->count / 64) * 2) + 1; in ixgbe_run_loopback_test() 1926 lc = ((rx_ring->count / 64) * 2) + 1; in ixgbe_run_loopback_test() 1928 for (j = 0; j <= lc; j++) { in ixgbe_run_loopback_test()
|
/linux-4.4.14/drivers/tty/serial/ |
D | bfin_sport_uart.c | 111 : [val]"d"(value), [rxmask]"d"(up->rxmask), [lc]"a"(up->csize) in rx_one_byte()
|
/linux-4.4.14/Documentation/usb/ |
D | WUSB-Design-overview.txt | 198 the world [/drivers/uwb/lc-rc.c:uwb_rc_add()/]. 232 [/drivers/uwb/lc-dev.c:uwbd_dev_onair()/]. Similarly, when no beacons
|
/linux-4.4.14/drivers/infiniband/hw/mlx5/ |
D | qp.c | 731 enum mlx5_ib_latency_class lc = MLX5_IB_LATENCY_CLASS_LOW; in create_kernel_qp() local 742 lc = MLX5_IB_LATENCY_CLASS_FAST_PATH; in create_kernel_qp() 744 uuarn = alloc_uuar(uuari, lc); in create_kernel_qp()
|
/linux-4.4.14/arch/sh/ |
D | Kconfig | 722 in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-tegra20.c | 2169 PULL_PG(lc, 0xac, 22),
|
/linux-4.4.14/drivers/scsi/ |
D | Kconfig | 706 This is equivalent to the "eata=lc:y" boot option. 1425 This is equivalent to the "u14-34f=lc:y" boot option.
|