Home
last modified time | relevance | path

Searched refs:lc (Results 1 – 89 of 89) sorted by relevance

/linux-4.1.27/arch/cris/arch-v32/lib/
Dmemset.c54 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.1.27/arch/cris/arch-v10/lib/
Dmemset.c54 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.1.27/lib/
Dlru_cache.c41 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 …]
Ddecompress_unlzma.c350 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.1.27/drivers/md/
Ddm-log.c294 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 …]
Ddm-log-userspace-base.c84 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 …]
Ddm-log-writes.c131 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 …]
Ddm-linear.c30 struct linear_c *lc; in linear_ctr() local
39 lc = kmalloc(sizeof(*lc), GFP_KERNEL); in linear_ctr()
40 if (lc == NULL) { in linear_ctr()
49 lc->start = tmp; in linear_ctr()
51 if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) { in linear_ctr()
59 ti->private = lc; in linear_ctr()
63 kfree(lc); in linear_ctr()
69 struct linear_c *lc = (struct linear_c *) ti->private; in linear_dtr() local
71 dm_put_device(ti, lc->dev); in linear_dtr()
72 kfree(lc); in linear_dtr()
[all …]
/linux-4.1.27/include/linux/
Dlru_cache.h254 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.1.27/arch/s390/kernel/
Dsetup.c293 struct _lowcore *lc; in setup_lowcore() local
299 lc = __alloc_bootmem_low(LC_PAGES * PAGE_SIZE, LC_PAGES * PAGE_SIZE, 0); in setup_lowcore()
300 lc->restart_psw.mask = PSW_KERNEL_BITS; in setup_lowcore()
301 lc->restart_psw.addr = in setup_lowcore()
303 lc->external_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore()
305 lc->external_new_psw.addr = in setup_lowcore()
307 lc->svc_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore()
309 lc->svc_new_psw.addr = PSW_ADDR_AMODE | (unsigned long) system_call; in setup_lowcore()
310 lc->program_new_psw.mask = PSW_KERNEL_BITS | in setup_lowcore()
312 lc->program_new_psw.addr = in setup_lowcore()
[all …]
Dsmp.c181 struct _lowcore *lc; in pcpu_alloc_lowcore() local
194 lc = pcpu->lowcore; in pcpu_alloc_lowcore()
195 memcpy(lc, &S390_lowcore, 512); in pcpu_alloc_lowcore()
196 memset((char *) lc + 512, 0, sizeof(*lc) - 512); in pcpu_alloc_lowcore()
197 lc->async_stack = async_stack + ASYNC_FRAME_OFFSET; in pcpu_alloc_lowcore()
198 lc->panic_stack = panic_stack + PANIC_FRAME_OFFSET; in pcpu_alloc_lowcore()
199 lc->cpu_nr = cpu; in pcpu_alloc_lowcore()
200 lc->spinlock_lockval = arch_spin_lockval(cpu); in pcpu_alloc_lowcore()
202 lc->vector_save_area_addr = in pcpu_alloc_lowcore()
203 (unsigned long) &lc->vector_save_area; in pcpu_alloc_lowcore()
[all …]
Dmachine_kexec.c57 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()
Dipl.c2021 struct _lowcore *lc; in s390_reset_system() local
2023 lc = (struct _lowcore *)(unsigned long) store_prefix(); in s390_reset_system()
2026 lc->panic_stack = S390_lowcore.panic_stack; in s390_reset_system()
2029 dump_prefix_page = (u32)(unsigned long) lc; in s390_reset_system()
/linux-4.1.27/net/rds/
Dloop.c121 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.1.27/fs/ocfs2/
Dstack_user.c832 struct ocfs2_live_connection *lc = conn->cc_private; in sync_wait_cb() local
833 complete(&lc->oc_sync_wait); in sync_wait_cb()
840 struct ocfs2_live_connection *lc = conn->cc_private; in sync_unlock() local
849 wait_for_completion(&lc->oc_sync_wait); in sync_unlock()
864 struct ocfs2_live_connection *lc = conn->cc_private; in sync_lock() local
875 wait_for_completion(&lc->oc_sync_wait); in sync_lock()
891 struct ocfs2_live_connection *lc = conn->cc_private; in version_lock() local
893 &lc->oc_version_lksb, VERSION_LOCK); in version_lock()
898 struct ocfs2_live_connection *lc = conn->cc_private; in version_unlock() local
899 return sync_unlock(conn, &lc->oc_version_lksb, VERSION_LOCK); in version_unlock()
[all …]
/linux-4.1.27/arch/ia64/lib/
Dxor.S23 .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 …]
Dflush.S41 .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
Dstrnlen_user.S20 .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
Dclear_user.S59 .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
Dclear_page.S36 .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
Dcopy_user.S86 .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 …]
Dmemcpy.S50 .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
Dcopy_page.S46 .save ar.lc, saved_lc
47 mov saved_lc=ar.lc
63 mov ar.lc=lcount
96 mov ar.lc=saved_lc
Dcopy_page_mck.S107 .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
Dmemset.S61 .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
Dmemcpy_mck.S118 .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 …]
Ddo_csum.S155 .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.1.27/drivers/net/ethernet/chelsio/cxgb/
Dsubr.c154 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 …]
Dcxgb2.c635 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 …]
Dcommon.h337 int t1_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
/linux-4.1.27/fs/affs/
Dsymlink.c22 char lc; in affs_symlink_readpage() local
33 lc = 0; in affs_symlink_readpage()
48 lc = '/'; in affs_symlink_readpage()
51 if (c == '/' && lc == '/' && i < 1020) { /* parent dir */ in affs_symlink_readpage()
56 lc = c; in affs_symlink_readpage()
Dnamei.c336 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.1.27/arch/powerpc/kernel/
Dio.c130 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.1.27/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_ethtool.c406 struct link_config *lc = &p->link_cfg; in set_settings() local
412 if (!(lc->supported & FW_PORT_CAP_ANEG)) { in set_settings()
417 (lc->supported & speed_to_caps(speed))) in set_settings()
425 if (!(lc->supported & cap) || in set_settings()
430 lc->requested_speed = cap; in set_settings()
431 lc->advertising = 0; in set_settings()
434 if (!(lc->supported & cap)) in set_settings()
436 lc->requested_speed = 0; in set_settings()
437 lc->advertising = cap | FW_PORT_CAP_ANEG; in set_settings()
439 lc->autoneg = cmd->autoneg; in set_settings()
[all …]
Dt4_hw.c2098 struct link_config *lc) in t4_link_start() argument
2103 lc->link_ok = 0; in t4_link_start()
2104 if (lc->requested_fc & PAUSE_RX) in t4_link_start()
2106 if (lc->requested_fc & PAUSE_TX) in t4_link_start()
2115 if (!(lc->supported & FW_PORT_CAP_ANEG)) { in t4_link_start()
2116 c.u.l1cfg.rcap = htonl((lc->supported & ADVERT_MASK) | fc); in t4_link_start()
2117 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_start()
2118 } else if (lc->autoneg == AUTONEG_DISABLE) { in t4_link_start()
2119 c.u.l1cfg.rcap = htonl(lc->requested_speed | fc | mdi); in t4_link_start()
2120 lc->fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t4_link_start()
[all …]
Dcxgb4.h1151 struct link_config *lc);
Dcxgb4_main.c4095 static inline bool is_x_10g_port(const struct link_config *lc) in is_x_10g_port() argument
4097 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 || in is_x_10g_port()
4098 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0; in is_x_10g_port()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4vf/
Dt4vf_common.h231 static inline bool is_10g_port(const struct link_config *lc) in is_10g_port() argument
233 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0; in is_10g_port()
236 static inline bool is_x_10g_port(const struct link_config *lc) in is_x_10g_port() argument
238 return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0 || in is_x_10g_port()
239 (lc->supported & FW_PORT_CAP_SPEED_40G) != 0; in is_x_10g_port()
Dt4vf_hw.c261 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.1.27/arch/s390/mm/
Dmaccess.c163 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.1.27/drivers/net/ethernet/chelsio/cxgb3/
Dt3_hw.c1212 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 …]
Dcxgb3_main.c1863 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 …]
Dcommon.h677 int t3_link_start(struct cphy *phy, struct cmac *mac, struct link_config *lc);
/linux-4.1.27/drivers/uwb/
DMakefile17 lc-dev.o \
18 lc-rc.o \
/linux-4.1.27/lib/zlib_deflate/
Ddeftree.c972 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 …]
Ddefutil.h277 int zlib_tr_tally (deflate_state *s, unsigned dist, unsigned lc);
/linux-4.1.27/arch/ia64/hp/sim/boot/
Dboot_head.S95 mov r9=ar.lc
98 mov ar.lc=r8
108 mov ar.lc=r9
/linux-4.1.27/fs/hpfs/
Dname.c54 unsigned len, int lc, int lng) in hpfs_translate_name() argument
65 if (!lc) return from; in hpfs_translate_name()
Ddir.c66 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.1.27/arch/ia64/kernel/
Dhead.S50 mov ar.lc=IA64_NUM_DBG_REGS-1;; \
58 mov ar.lc=IA64_NUM_DBG_REGS-1;; \
89 mov ar.lc=0x08-1;; \
135 SAVE_FROM_REG(ar.lc, _reg1, _reg2);; \
461 mov r20=ar.lc // preserve ar.lc
462 mov ar.lc=IA64_NUM_DBG_REGS-1
478 mov ar.lc=r20 // restore ar.lc
485 mov r20=ar.lc // preserve ar.lc
487 mov ar.lc=IA64_NUM_DBG_REGS-1
502 mov ar.lc=r20 // restore ar.lc
[all …]
Drelocate_kernel.S83 mov ar.lc=r20
156 mov ar.lc=r14;;
300 mov r5 = ar.lc
Dparavirt.c440 __DEFINE_GET_AR(LC, lc)
523 __DEFINE_SET_AR(LC, lc)
721 IA64_NATIVE_PATCH_DEFINE_AR(lc, lc);
833 IA64_NATIVE_PATCH_BUNDLE_ELEM_AR(lc, LC),
Dentry.h59 .spillsp ar.pfs,SW(AR_PFS)+16+(off); .spillsp ar.lc,SW(AR_LC)+16+(off); \
Dptrace.c824 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()
Dmca_asm.S82 mov ar.lc=r20
614 mov temp3=ar.lc
776 mov ar.lc=temp3
Dentry.S88 mov ar.unat=0; mov ar.lc=0
311 mov r21=ar.lc // I-unit
444 mov ar.lc=r17
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/engine/
Dfifo.h92 #define nvkm_fifo_create(o,e,c,fc,lc,d) \ argument
93 nvkm_fifo_create_((o), (e), (c), (fc), (lc), sizeof(**d), (void **)d)
/linux-4.1.27/drivers/staging/lustre/lnet/selftest/
Dframework.c88 #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.1.27/drivers/video/fbdev/matrox/
Dmatroxfb_misc.c192 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.1.27/net/tipc/
Dnetlink_compat.c584 struct tipc_link_config *lc; in tipc_nl_compat_link_set() local
586 lc = (struct tipc_link_config *)TLV_DATA(msg->req); in tipc_nl_compat_link_set()
592 if (nla_put_string(skb, TIPC_NLA_LINK_NAME, lc->name)) in tipc_nl_compat_link_set()
600 if (nla_put_u32(skb, TIPC_NLA_PROP_PRIO, ntohl(lc->value))) in tipc_nl_compat_link_set()
603 if (nla_put_u32(skb, TIPC_NLA_PROP_TOL, ntohl(lc->value))) in tipc_nl_compat_link_set()
606 if (nla_put_u32(skb, TIPC_NLA_PROP_WIN, ntohl(lc->value))) in tipc_nl_compat_link_set()
/linux-4.1.27/drivers/s390/char/
Dtape_3590.h77 unsigned int lc:3; member
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dlprocfs_status.c1785 __s64 lprocfs_read_helper(struct lprocfs_counter *lc, in lprocfs_read_helper() argument
1792 if (lc == NULL || header == NULL) in lprocfs_read_helper()
1800 ret = lc->lc_sum; in lprocfs_read_helper()
1802 ret += lc->lc_sum_irq; in lprocfs_read_helper()
1805 ret = lc->lc_min; in lprocfs_read_helper()
1808 ret = lc->lc_max; in lprocfs_read_helper()
1811 ret = (lc->lc_max - lc->lc_min) / 2; in lprocfs_read_helper()
1814 ret = lc->lc_sumsquare; in lprocfs_read_helper()
1817 ret = lc->lc_count; in lprocfs_read_helper()
/linux-4.1.27/lib/xz/
Dxz_dec_lzma2.c154 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.1.27/fs/cifs/
Dsmb2ops.c1368 struct create_lease *lc = (struct create_lease *)buf; in smb2_parse_lease_buf() local
1371 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) in smb2_parse_lease_buf()
1373 return le32_to_cpu(lc->lcontext.LeaseState); in smb2_parse_lease_buf()
1379 struct create_lease_v2 *lc = (struct create_lease_v2 *)buf; in smb3_parse_lease_buf() local
1381 *epoch = le16_to_cpu(lc->lcontext.Epoch); in smb3_parse_lease_buf()
1382 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) in smb3_parse_lease_buf()
1384 return le32_to_cpu(lc->lcontext.LeaseState); in smb3_parse_lease_buf()
/linux-4.1.27/tools/perf/util/
Dpmu.c100 const char *lc; in perf_pmu__parse_scale() local
119 lc = setlocale(LC_NUMERIC, NULL); in perf_pmu__parse_scale()
131 setlocale(LC_NUMERIC, lc); in perf_pmu__parse_scale()
/linux-4.1.27/scripts/
Dcheckpatch.pl5085 my $lc = $stat =~ tr@\n@@;
5086 $lc = $lc + $linenr;
5088 for (my $count = $linenr + 1; $count <= $lc; $count++) {
5099 my $lc = $stat =~ tr@\n@@;
5100 $lc = $lc + $linenr;
5102 for (my $count = $linenr + 1; $count <= $lc; $count++) {
/linux-4.1.27/drivers/net/ethernet/intel/e1000/
De1000_ethtool.c1408 int i, j, k, l, lc, good_cnt, ret_val = 0; in e1000_run_loopback_test() local
1419 lc = ((txdr->count / 64) * 2) + 1; in e1000_run_loopback_test()
1421 lc = ((rxdr->count / 64) * 2) + 1; in e1000_run_loopback_test()
1424 for (j = 0; j <= lc; j++) { /* loop count loop */ in e1000_run_loopback_test()
/linux-4.1.27/arch/arm/mach-sa1100/
DKconfig96 <http://h10025.www1.hp.com/ewfrf/wc/product?product=61677&cc=us&lc=en&dlc=en&product=61677#>
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dlprocfs_status.h512 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
835 static inline __u64 lc_read_helper(struct lprocfs_counter *lc, in lc_read_helper() argument
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
Dldlm_request.c1924 struct ldlm_cli_cancel_arg *lc = arg; in ldlm_cli_hash_cancel_unused() local
1928 lc->lc_flags, lc->lc_opaque); in ldlm_cli_hash_cancel_unused()
/linux-4.1.27/drivers/net/ethernet/intel/e1000e/
Dethtool.c1615 int lc; in e1000_run_loopback_test() local
1628 lc = ((tx_ring->count / 64) * 2) + 1; in e1000_run_loopback_test()
1630 lc = ((rx_ring->count / 64) * 2) + 1; in e1000_run_loopback_test()
1635 for (j = 0; j <= lc; j++) { in e1000_run_loopback_test()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dnvidia,tegra20-pinmux.txt89 ck32, ddrc, pmca, pmcb, pmcc, pmcd, pmce, xm2c, xm2d, ls, lc, ld17_0,
/linux-4.1.27/arch/arm/boot/dts/
Dtegra20-trimslice.dts242 nvidia,pins = "lc", "ls";
Dtegra20-tamonten.dtsi227 nvidia,pins = "lc", "ls";
Dtegra20-paz00.dts240 nvidia,pins = "lc", "ls";
Dtegra20-whistler.dts217 nvidia,pins = "ck32", "ddrc", "lc", "pmca",
Dtegra20-ventana.dts249 nvidia,pins = "lc", "ls";
Dtegra20-harmony.dts245 nvidia,pins = "lc", "ls";
Dtegra20-seaboard.dts252 nvidia,pins = "lc", "ls";
/linux-4.1.27/security/selinux/ss/
Dpolicydb.c1215 struct constraint_node *c, *lc; in read_cons_helper() local
1221 lc = NULL; in read_cons_helper()
1227 if (lc) in read_cons_helper()
1228 lc->next = c; in read_cons_helper()
1301 lc = c; in read_cons_helper()
/linux-4.1.27/arch/ia64/include/asm/
Dsal.h883 u64 lc; /* Loop Count */ member
/linux-4.1.27/drivers/net/ethernet/intel/igb/
Digb_ethtool.c1858 u16 i, j, lc, good_cnt; in igb_run_loopback_test() local
1879 lc = ((tx_ring->count / 64) * 2) + 1; in igb_run_loopback_test()
1881 lc = ((rx_ring->count / 64) * 2) + 1; in igb_run_loopback_test()
1883 for (j = 0; j <= lc; j++) { /* loop count loop */ in igb_run_loopback_test()
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/
Dixgbe_ethtool.c1894 int i, j, lc, good_cnt, ret_val = 0; in ixgbe_run_loopback_test() local
1919 lc = ((tx_ring->count / 64) * 2) + 1; in ixgbe_run_loopback_test()
1921 lc = ((rx_ring->count / 64) * 2) + 1; in ixgbe_run_loopback_test()
1923 for (j = 0; j <= lc; j++) { in ixgbe_run_loopback_test()
/linux-4.1.27/drivers/tty/serial/
Dbfin_sport_uart.c111 : [val]"d"(value), [rxmask]"d"(up->rxmask), [lc]"a"(up->csize) in rx_one_byte()
/linux-4.1.27/Documentation/usb/
DWUSB-Design-overview.txt198 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.1.27/drivers/infiniband/hw/mlx5/
Dqp.c739 enum mlx5_ib_latency_class lc = MLX5_IB_LATENCY_CLASS_LOW; in create_kernel_qp() local
750 lc = MLX5_IB_LATENCY_CLASS_FAST_PATH; in create_kernel_qp()
752 uuarn = alloc_uuar(uuari, lc); in create_kernel_qp()
/linux-4.1.27/arch/sh/
DKconfig721 in <http://lc.linux.or.jp/lc2002/papers/niibe0919p.pdf>.
/linux-4.1.27/drivers/pinctrl/
Dpinctrl-tegra20.c2169 PULL_PG(lc, 0xac, 22),
/linux-4.1.27/drivers/scsi/
DKconfig694 This is equivalent to the "eata=lc:y" boot option.
1413 This is equivalent to the "u14-34f=lc:y" boot option.