Home
last modified time | relevance | path

Searched refs:tl (Results 1 – 63 of 63) sorted by relevance

/linux-4.1.27/include/linux/
Dipmi-fru.h53 struct fru_type_length tl[0]; /* type-length stuff follows */ member
86 static inline int fru_type(struct fru_type_length *tl) in fru_type() argument
88 return tl->type_length & 0xc0; in fru_type()
91 static inline int fru_length(struct fru_type_length *tl) in fru_length() argument
93 return (tl->type_length & 0x3f) + 1; /* len of whole record */ in fru_length()
97 static inline int fru_strlen(struct fru_type_length *tl) in fru_strlen() argument
99 return fru_length(tl) - 1; in fru_strlen()
102 static inline char *fru_strcpy(char *dest, struct fru_type_length *tl) in fru_strcpy() argument
104 int len = fru_strlen(tl); in fru_strcpy()
105 memcpy(dest, tl->data, len); in fru_strcpy()
[all …]
Dbpf.h130 void bpf_register_prog_type(struct bpf_prog_type_list *tl);
131 void bpf_register_map_type(struct bpf_map_type_list *tl);
142 static inline void bpf_register_prog_type(struct bpf_prog_type_list *tl) in bpf_register_prog_type() argument
Dsched.h1073 extern void set_sched_topology(struct sched_domain_topology_level *tl);
/linux-4.1.27/drivers/fmc/
Dfru-parse.c17 struct fru_type_length *tl; in __fru_get_board_tl() local
20 tl = bia->tl; in __fru_get_board_tl()
21 while (nr > 0 && !fru_is_eof(tl)) { in __fru_get_board_tl()
22 tl = fru_next_tl(tl); in __fru_get_board_tl()
25 if (fru_is_eof(tl)) in __fru_get_board_tl()
27 return tl; in __fru_get_board_tl()
32 struct fru_type_length *tl; in __fru_alloc_get_tl() local
36 tl = __fru_get_board_tl(header, nr); in __fru_alloc_get_tl()
37 if (!tl) in __fru_alloc_get_tl()
39 len = fru_strlen(tl); in __fru_alloc_get_tl()
[all …]
/linux-4.1.27/drivers/isdn/hisax/
Dfsm.c101 ft->tl.function = (void *) FsmExpireTimer; in FsmInitTimer()
102 ft->tl.data = (long) ft; in FsmInitTimer()
107 init_timer(&ft->tl); in FsmInitTimer()
117 del_timer(&ft->tl); in FsmDelTimer()
131 if (timer_pending(&ft->tl)) { in FsmAddTimer()
136 init_timer(&ft->tl); in FsmAddTimer()
139 ft->tl.expires = jiffies + (millisec * HZ) / 1000; in FsmAddTimer()
140 add_timer(&ft->tl); in FsmAddTimer()
155 if (timer_pending(&ft->tl)) in FsmRestartTimer()
156 del_timer(&ft->tl); in FsmRestartTimer()
[all …]
Disdnl3.c172 t->tl.function = (void *) L3ExpireTimer; in L3InitTimer()
173 t->tl.data = (long) t; in L3InitTimer()
174 init_timer(&t->tl); in L3InitTimer()
180 del_timer(&t->tl); in L3DelTimer()
187 if (timer_pending(&t->tl)) { in L3AddTimer()
191 init_timer(&t->tl); in L3AddTimer()
193 t->tl.expires = jiffies + (millisec * HZ) / 1000; in L3AddTimer()
194 add_timer(&t->tl); in L3AddTimer()
Dfsm.h45 struct timer_list tl; member
Delsa.c430 del_timer(&cs->hw.elsa.tl); in release_io_elsa()
615 del_timer(&cs->hw.elsa.tl); in elsa_led_handler()
643 init_timer(&cs->hw.elsa.tl); in elsa_led_handler()
644 cs->hw.elsa.tl.expires = jiffies + ((blink * HZ) / 1000); in elsa_led_handler()
645 add_timer(&cs->hw.elsa.tl); in elsa_led_handler()
1150 cs->hw.elsa.tl.function = (void *) elsa_led_handler; in setup_elsa_common()
1151 cs->hw.elsa.tl.data = (long) cs; in setup_elsa_common()
1152 init_timer(&cs->hw.elsa.tl); in setup_elsa_common()
Ddiva.c723 del_timer(&cs->hw.diva.tl); in release_io_diva()
807 del_timer(&cs->hw.diva.tl); in diva_led_handler()
829 init_timer(&cs->hw.diva.tl); in diva_led_handler()
830 cs->hw.diva.tl.expires = jiffies + ((blink * HZ) / 1000); in diva_led_handler()
831 add_timer(&cs->hw.diva.tl); in diva_led_handler()
979 cs->hw.diva.tl.function = (void *) diva_led_handler; in setup_diva_common()
980 cs->hw.diva.tl.data = (long) cs; in setup_diva_common()
981 init_timer(&cs->hw.diva.tl); in setup_diva_common()
Dhisax.h192 struct timer_list tl; member
199 struct timer_list tl; member
565 struct timer_list tl; member
622 struct timer_list tl; member
/linux-4.1.27/drivers/s390/net/
Dfsm.c145 this->tl.function = (void *)fsm_expire_timer; in fsm_settimer()
146 this->tl.data = (long)this; in fsm_settimer()
151 init_timer(&this->tl); in fsm_settimer()
161 del_timer(&this->tl); in fsm_deltimer()
173 init_timer(&this->tl); in fsm_addtimer()
174 this->tl.function = (void *)fsm_expire_timer; in fsm_addtimer()
175 this->tl.data = (long)this; in fsm_addtimer()
178 this->tl.expires = jiffies + (millisec * HZ) / 1000; in fsm_addtimer()
179 add_timer(&this->tl); in fsm_addtimer()
193 del_timer(&this->tl); in fsm_modtimer()
[all …]
Dfsm.h91 struct timer_list tl; member
/linux-4.1.27/drivers/isdn/mISDN/
Dfsm.c113 ft->tl.function = (void *) FsmExpireTimer; in mISDN_FsmInitTimer()
114 ft->tl.data = (long) ft; in mISDN_FsmInitTimer()
119 init_timer(&ft->tl); in mISDN_FsmInitTimer()
131 del_timer(&ft->tl); in mISDN_FsmDelTimer()
146 if (timer_pending(&ft->tl)) { in mISDN_FsmAddTimer()
155 init_timer(&ft->tl); in mISDN_FsmAddTimer()
158 ft->tl.expires = jiffies + (millisec * HZ) / 1000; in mISDN_FsmAddTimer()
159 add_timer(&ft->tl); in mISDN_FsmAddTimer()
175 if (timer_pending(&ft->tl)) in mISDN_FsmRestartTimer()
176 del_timer(&ft->tl); in mISDN_FsmRestartTimer()
[all …]
Ddsp_tones.c481 init_timer(&tone->tl); in dsp_tone_timeout()
482 tone->tl.expires = jiffies + (pat->seq[index] * HZ) / 8000; in dsp_tone_timeout()
483 add_timer(&tone->tl); in dsp_tone_timeout()
508 if (dsp->features.hfc_loops && timer_pending(&tonet->tl)) in dsp_tone()
509 del_timer(&tonet->tl); in dsp_tone()
542 if (timer_pending(&tonet->tl)) in dsp_tone()
543 del_timer(&tonet->tl); in dsp_tone()
544 init_timer(&tonet->tl); in dsp_tone()
545 tonet->tl.expires = jiffies + (pat->seq[0] * HZ) / 8000; in dsp_tone()
546 add_timer(&tonet->tl); in dsp_tone()
Dtimerdev.c46 struct timer_list tl; member
84 del_timer_sync(&timer->tl); in mISDN_close()
190 setup_timer(&timer->tl, dev_expire_timer, (long)timer); in misdn_add_timer()
196 timer->tl.expires = jiffies + ((HZ * (u_long)timeout) / 1000); in misdn_add_timer()
197 add_timer(&timer->tl); in misdn_add_timer()
214 del_timer_sync(&timer->tl); in misdn_del_timer()
Dfsm.h53 struct timer_list tl; member
Ddsp_core.c931 if (timer_pending(&dsp->tone.tl)) in dsp_function()
932 del_timer(&dsp->tone.tl); in dsp_function()
979 if (timer_pending(&dsp->tone.tl)) in dsp_ctrl()
980 del_timer(&dsp->tone.tl); in dsp_ctrl()
1095 ndsp->tone.tl.function = (void *)dsp_tone_timeout; in dspcreate()
1096 ndsp->tone.tl.data = (long) ndsp; in dspcreate()
1097 init_timer(&ndsp->tone.tl); in dspcreate()
Ddsp.h154 struct timer_list tl; member
/linux-4.1.27/crypto/
Dvmac.c113 int i; u64 th, tl; \
116 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
118 ADD128(rh, rl, th, tl); \
124 int i; u64 th, tl; \
127 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
129 ADD128(rh, rl, th, tl); \
130 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i+2], \
132 ADD128(rh1, rl1, th, tl); \
139 int i; u64 th, tl; \
142 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
[all …]
Dcamellia_generic.c380 u32 dw, tl, tr; in camellia_setup_tail() local
479 tl = subL[10] ^ (subR[10] & ~subR[8]); in camellia_setup_tail()
480 dw = tl & subL[8]; /* FL(kl1) */ in camellia_setup_tail()
482 SUBKEY_L(7) = subL[6] ^ tl; /* round 6 */ in camellia_setup_tail()
488 tl = subL[7] ^ (subR[7] & ~subR[9]); in camellia_setup_tail()
489 dw = tl & subL[9]; /* FLinv(kl2) */ in camellia_setup_tail()
491 SUBKEY_L(10) = tl ^ subL[11]; /* round 7 */ in camellia_setup_tail()
501 tl = subL[18] ^ (subR[18] & ~subR[16]); in camellia_setup_tail()
502 dw = tl & subL[16]; /* FL(kl3) */ in camellia_setup_tail()
504 SUBKEY_L(15) = subL[14] ^ tl; /* round 12 */ in camellia_setup_tail()
[all …]
/linux-4.1.27/lib/
Dinflate.c589 struct huft *tl, /* literal/length decoder tables */ in inflate_codes() argument
617 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
770 struct huft *tl; /* literal/length code table */ in inflate_fixed() local
792 if ((i = huft_build(l, 288, 257, cplens, cplext, &tl, &bl)) != 0) { in inflate_fixed()
803 huft_free(tl); in inflate_fixed()
812 if (inflate_codes(tl, td, bl, bd)) { in inflate_fixed()
819 huft_free(tl); in inflate_fixed()
836 struct huft *tl; /* literal/length code table */ in inflate_dynamic() local
900 if ((i = huft_build(ll, 19, 19, NULL, NULL, &tl, &bl)) != 0) in inflate_dynamic()
903 huft_free(tl); in inflate_dynamic()
[all …]
/linux-4.1.27/kernel/bpf/
Dsyscall.c25 struct bpf_map_type_list *tl; in find_and_alloc_map() local
28 list_for_each_entry(tl, &bpf_map_types, list_node) { in find_and_alloc_map()
29 if (tl->type == attr->map_type) { in find_and_alloc_map()
30 map = tl->ops->map_alloc(attr); in find_and_alloc_map()
33 map->ops = tl->ops; in find_and_alloc_map()
42 void bpf_register_map_type(struct bpf_map_type_list *tl) in bpf_register_map_type() argument
44 list_add(&tl->list_node, &bpf_map_types); in bpf_register_map_type()
353 struct bpf_prog_type_list *tl; in find_prog_type() local
355 list_for_each_entry(tl, &bpf_prog_types, list_node) { in find_prog_type()
356 if (tl->type == type) { in find_prog_type()
[all …]
/linux-4.1.27/arch/x86/crypto/
Dcamellia_glue.c819 u32 dw, tl, tr; in camellia_setup_tail() local
930 tl = (subRL[10] >> 32) ^ (subRL[10] & ~subRL[8]); in camellia_setup_tail()
931 dw = tl & (subRL[8] >> 32); /* FL(kl1) */ in camellia_setup_tail()
933 tt = (tr | ((u64)tl << 32)); in camellia_setup_tail()
939 tl = (subRL[7] >> 32) ^ (subRL[7] & ~subRL[9]); in camellia_setup_tail()
940 dw = tl & (subRL[9] >> 32); /* FLinv(kl2) */ in camellia_setup_tail()
942 tt = (tr | ((u64)tl << 32)); in camellia_setup_tail()
950 tl = (subRL[18] >> 32) ^ (subRL[18] & ~subRL[16]); in camellia_setup_tail()
951 dw = tl & (subRL[16] >> 32); /* FL(kl3) */ in camellia_setup_tail()
953 tt = (tr | ((u64)tl << 32)); in camellia_setup_tail()
[all …]
/linux-4.1.27/drivers/net/wireless/iwlegacy/
D4965-rs.c250 il4965_rs_tl_rm_old_stats(struct il_traffic_load *tl, u32 curr_time) in il4965_rs_tl_rm_old_stats() argument
255 while (tl->queue_count && tl->time_stamp < oldest_time) { in il4965_rs_tl_rm_old_stats()
256 tl->total -= tl->packet_count[tl->head]; in il4965_rs_tl_rm_old_stats()
257 tl->packet_count[tl->head] = 0; in il4965_rs_tl_rm_old_stats()
258 tl->time_stamp += TID_QUEUE_CELL_SPACING; in il4965_rs_tl_rm_old_stats()
259 tl->queue_count--; in il4965_rs_tl_rm_old_stats()
260 tl->head++; in il4965_rs_tl_rm_old_stats()
261 if (tl->head >= TID_QUEUE_MAX_SIZE) in il4965_rs_tl_rm_old_stats()
262 tl->head = 0; in il4965_rs_tl_rm_old_stats()
276 struct il_traffic_load *tl = NULL; in il4965_rs_tl_add_packet() local
[all …]
/linux-4.1.27/arch/sparc/kernel/
Detrap_64.S177 rdpr %tl, %g1
179 wrpr %g0, 1, %tl
189 wrpr %g0, 2, %tl
204 wrpr %g0, 3, %tl
214 wrpr %g0, 4, %tl
227 wrpr %g0, 1, %tl
Dcherrs.S181 rdpr %tl, %g1 ! Save original trap level
184 1: wrpr %g2, %tl ! Set trap level to check
188 wrpr %g1, %tl ! Restore original trap level
193 wrpr %g1, %tl ! Restore original trap level
234 rdpr %tl, %g1 ! Save original trap level
237 1: wrpr %g2, %tl ! Set trap level to check
241 wrpr %g1, %tl ! Restore original trap level
246 wrpr %g1, %tl ! Restore original trap level
Dsun4v_tlb_miss.S142 rdpr %tl, %g1
198 rdpr %tl, %g1
215 rdpr %tl, %g4
225 rdpr %tl, %g1
242 rdpr %tl, %g4
325 rdpr %tl, %g2
Dentry.h168 void sun4v_itlb_error_report(struct pt_regs *regs, int tl);
175 void sun4v_dtlb_error_report(struct pt_regs *regs, int tl);
Ddtlb_prot.S22 rdpr %tl, %g1 ! Need a winfixup?
Dspiterrs.S30 rdpr %tl, %g3
79 rdpr %tl, %g2
Dhvtramp.S41 wrpr %g0, 0, %tl
Dmisctrap.S27 rdpr %tl, %g3
Drtrap_64.S194 wrpr %g0, 0x1, %tl
268 wrpr %g0, 0x0, %tl
Dktlb.S243 rdpr %tl, %g3
Dtsb.S165 rdpr %tl, %g7
276 rdpr %tl, %g3
Dtraps_64.c64 unsigned long tl; member
72 "dumping track stack.\n", p->tl); in dump_tl1_traplog()
2117 void sun4v_itlb_error_report(struct pt_regs *regs, int tl) in sun4v_itlb_error_report() argument
2122 regs->tpc, tl); in sun4v_itlb_error_report()
2140 void sun4v_dtlb_error_report(struct pt_regs *regs, int tl) in sun4v_dtlb_error_report() argument
2145 regs->tpc, tl); in sun4v_dtlb_error_report()
Dhead_64.S689 wrpr %g0, 0x0, %tl
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_vfpf.h91 struct channel_tlv tl; member
97 struct channel_tlv tl; member
109 struct channel_tlv tl; member
202 struct channel_tlv tl; member
208 struct channel_tlv tl; member
Dbnx2x_vfpf.c30 struct channel_tlv *tl = in bnx2x_add_tlv() local
33 tl->type = type; in bnx2x_add_tlv()
34 tl->length = length; in bnx2x_add_tlv()
50 bnx2x_add_tlv(bp, &first_tlv->tl, 0, type, length); in bnx2x_vfpf_prep()
61 first_tlv->tl.type); in bnx2x_vfpf_finalize()
253 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, in bnx2x_vfpf_acquire()
261 req->first_tlv.tl.length + sizeof(struct channel_tlv), in bnx2x_vfpf_acquire()
406 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END, in bnx2x_vfpf_release()
457 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END, in bnx2x_vfpf_init()
508 bnx2x_add_tlv(bp, req, req->first_tlv.tl.length, CHANNEL_TLV_LIST_END, in bnx2x_vfpf_close_vf()
[all …]
/linux-4.1.27/arch/s390/kvm/
Dgaccess.c27 unsigned long tl : 2; /* Region- or Segment-Table Length */ member
49 unsigned long tl : 2; /* Region-Second-Table Length */ member
64 unsigned long tl : 2; /* Region-Third-Table Length */ member
78 unsigned long tl : 2; /* Segment-Table Length */ member
559 if (vaddr.rfx01 > asce.tl) in guest_translate()
566 if (vaddr.rsx01 > asce.tl) in guest_translate()
573 if (vaddr.rtx01 > asce.tl) in guest_translate()
580 if (vaddr.sx01 > asce.tl) in guest_translate()
597 if (vaddr.rsx01 < rfte.tf || vaddr.rsx01 > rfte.tl) in guest_translate()
615 if (vaddr.rtx01 < rste.tf || vaddr.rtx01 > rste.tl) in guest_translate()
[all …]
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/
Drs.c263 static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time) in rs_tl_rm_old_stats() argument
268 while (tl->queue_count && in rs_tl_rm_old_stats()
269 (tl->time_stamp < oldest_time)) { in rs_tl_rm_old_stats()
270 tl->total -= tl->packet_count[tl->head]; in rs_tl_rm_old_stats()
271 tl->packet_count[tl->head] = 0; in rs_tl_rm_old_stats()
272 tl->time_stamp += TID_QUEUE_CELL_SPACING; in rs_tl_rm_old_stats()
273 tl->queue_count--; in rs_tl_rm_old_stats()
274 tl->head++; in rs_tl_rm_old_stats()
275 if (tl->head >= TID_QUEUE_MAX_SIZE) in rs_tl_rm_old_stats()
276 tl->head = 0; in rs_tl_rm_old_stats()
[all …]
/linux-4.1.27/drivers/infiniband/hw/ipath/
Dipath_intr.c542 unsigned long tl, hd, status, lengen; in handle_sdma_errors() local
543 tl = ipath_read_kreg64(dd, dd->ipath_kregs->kr_senddmatail); in handle_sdma_errors()
550 "lengen 0x%lx\n", tl, hd, status, lengen); in handle_sdma_errors()
588 u32 hd, tl; in handle_hdrq_full() local
612 tl = ipath_read_ureg32(dd, ur_rcvhdrtail, i); in handle_hdrq_full()
614 tl = ipath_get_rcvhdrtail(pd); in handle_hdrq_full()
615 if (tl == pd->port_lastrcvhdrqtail) in handle_hdrq_full()
619 if (hd == (tl + 1) || (!hd && tl == dd->ipath_hdrqlast)) { in handle_hdrq_full()
620 pd->port_lastrcvhdrqtail = tl; in handle_hdrq_full()
/linux-4.1.27/drivers/ide/
Dpmac.c782 u32 *timings, *timings2, tl[2]; in pmac_ide_set_dma_mode() local
790 tl[0] = *timings; in pmac_ide_set_dma_mode()
791 tl[1] = *timings2; in pmac_ide_set_dma_mode()
795 ret = set_timings_udma_ata4(&tl[0], speed); in pmac_ide_set_dma_mode()
798 ret = set_timings_udma_ata6(&tl[0], &tl[1], speed); in pmac_ide_set_dma_mode()
800 ret = set_timings_udma_shasta(&tl[0], &tl[1], speed); in pmac_ide_set_dma_mode()
804 set_timings_mdma(drive, pmif->kind, &tl[0], &tl[1], speed); in pmac_ide_set_dma_mode()
810 *timings = tl[0]; in pmac_ide_set_dma_mode()
811 *timings2 = tl[1]; in pmac_ide_set_dma_mode()
/linux-4.1.27/drivers/input/keyboard/
Dmpr121_touchkey.c130 unsigned char usl, lsl, tl, eleconf; in mpr121_phys_init() local
162 tl = (usl * 90) / 100; in mpr121_phys_init()
165 ret |= i2c_smbus_write_byte_data(client, AUTO_CONFIG_TL_ADDR, tl); in mpr121_phys_init()
/linux-4.1.27/fs/ocfs2/
Dalloc.c5776 struct ocfs2_truncate_log *tl; in ocfs2_truncate_log_needs_flush() local
5779 tl = &di->id2.i_dealloc; in ocfs2_truncate_log_needs_flush()
5781 mlog_bug_on_msg(le16_to_cpu(tl->tl_used) > le16_to_cpu(tl->tl_count), in ocfs2_truncate_log_needs_flush()
5784 le16_to_cpu(tl->tl_used), le16_to_cpu(tl->tl_count)); in ocfs2_truncate_log_needs_flush()
5785 return le16_to_cpu(tl->tl_used) == le16_to_cpu(tl->tl_count); in ocfs2_truncate_log_needs_flush()
5788 static int ocfs2_truncate_log_can_coalesce(struct ocfs2_truncate_log *tl, in ocfs2_truncate_log_can_coalesce() argument
5795 if (!le16_to_cpu(tl->tl_used)) in ocfs2_truncate_log_can_coalesce()
5798 tail_index = le16_to_cpu(tl->tl_used) - 1; in ocfs2_truncate_log_can_coalesce()
5799 current_tail = le32_to_cpu(tl->tl_recs[tail_index].t_start); in ocfs2_truncate_log_can_coalesce()
5800 current_tail += le32_to_cpu(tl->tl_recs[tail_index].t_clusters); in ocfs2_truncate_log_can_coalesce()
[all …]
/linux-4.1.27/kernel/sched/
Dcore.c6172 sd_init(struct sched_domain_topology_level *tl, int cpu) in sd_init() argument
6174 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); in sd_init()
6181 sched_domains_curr_level = tl->numa_level; in sd_init()
6184 sd_weight = cpumask_weight(tl->mask(cpu)); in sd_init()
6186 if (tl->sd_flags) in sd_init()
6187 sd_flags = (*tl->sd_flags)(); in sd_init()
6225 .name = tl->name, in sd_init()
6250 if (sched_domains_numa_distance[tl->numa_level] > RECLAIM_DISTANCE) { in sd_init()
6264 sd->private = &tl->data; in sd_init()
6285 #define for_each_sd_topology(tl) \ argument
[all …]
/linux-4.1.27/arch/um/include/shared/
Dnet_kern.h27 struct timer_list tl; member
/linux-4.1.27/drivers/net/usb/
Drtl8150.c130 struct tasklet_struct tl; member
437 tasklet_schedule(&dev->tl); in read_bulk_callback()
610 tasklet_schedule(&dev->tl); in rx_fixup()
873 tasklet_init(&dev->tl, rx_fixup, (unsigned long)dev); in rtl8150_probe()
923 tasklet_kill(&dev->tl); in rtl8150_disconnect()
/linux-4.1.27/arch/sparc/mm/
Dultra.S216 wrpr %g0, 1, %tl
229 wrpr %g0, 0, %tl
238 wrpr %g0, 1, %tl
254 wrpr %g0, 0, %tl
264 wrpr %g0, 1, %tl
284 wrpr %g0, 0, %tl
/linux-4.1.27/arch/xtensa/platforms/iss/
Dnetwork.c74 struct timer_list tl; member
581 init_timer(&lp->tl); in iss_net_configure()
582 lp->tl.function = iss_net_user_timer_expire; in iss_net_configure()
/linux-4.1.27/arch/um/drivers/
Dnet_kern.c171 lp->tl.data = (unsigned long) &lp->user; in uml_net_open()
469 init_timer(&lp->tl); in eth_configure()
471 lp->tl.function = uml_net_user_timer_expire; in eth_configure()
/linux-4.1.27/arch/ia64/include/asm/
Dpal.h420 tl : 1, /* 1 => MC occurred member
497 tl : 1, /* Failure in tag part member
701 #define pmci_proc_trap_lost pme_processor.tl
719 #define pmci_cache_line_tag_fail pme_cache.tl
/linux-4.1.27/drivers/gpu/drm/radeon/
Dr600_dpm.h140 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
Dr600_dpm.c218 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th) in r600_calculate_at() argument
234 *tl = t + al; in r600_calculate_at()
/linux-4.1.27/drivers/isdn/hardware/mISDN/
DmISDNipac.c608 u8 tl = 0; in isac_ctrl() local
618 tl |= 0x0c; in isac_ctrl()
620 tl |= 0x3; in isac_ctrl()
622 WriteISAC(isac, ISAC_SPCR, tl); in isac_ctrl()
623 if (tl) in isac_ctrl()
/linux-4.1.27/arch/sparc/include/asm/
Dhypervisor.h1216 unsigned char tl; /* Trap level */ member
/linux-4.1.27/drivers/scsi/isci/
Dphy.c383 struct scu_transport_layer_registers __iomem *tl, in sci_phy_initialize() argument
387 sci_phy_transport_layer_initialization(iphy, tl); in sci_phy_initialize()
Dregisters.h1807 struct scu_transport_layer_registers tl; member
Dhost.c2219 &ihost->scu_registers->peg0.pe[i].tl, in sci_controller_initialize()
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_softmac.c1778 u32 th, tl; in ieee80211_sta_ps() local
1797 sleep = ieee80211_sta_ps_sleep(ieee,&th, &tl); in ieee80211_sta_ps()
1805 ieee->enter_sleep_state(ieee->dev, th, tl); in ieee80211_sta_ps()
1821 ieee->ps_tl = tl; in ieee80211_sta_ps()
Dieee80211.h2131 void (*enter_sleep_state) (struct net_device *dev, u32 th, u32 tl);
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Ddsi.c3720 int tl, t_he, width_bytes; in dsi_proto_timings() local
3729 tl = DIV_ROUND_UP(4, ndl) + (hsync_end ? hsa : 0) + t_he + hfp + in dsi_proto_timings()
3733 hfp, hsync_end ? hsa : 0, tl); in dsi_proto_timings()
3752 r = FLD_MOD(r, tl, 31, 16); /* TL */ in dsi_proto_timings()
/linux-4.1.27/Documentation/filesystems/
Dcoda.txt511 44..22.. TThhee ppiiooccttll iinntteerrffaaccee
1058 44..1177.. iiooccttll