Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 3727) sorted by relevance

12345678910>>...150

/Linux-v5.4/arch/powerpc/crypto/
Dsha1-powerpc-asm.S26 #define RT(t) ((((t)+5)%6)+7) argument
27 #define RA(t) ((((t)+4)%6)+7) argument
28 #define RB(t) ((((t)+3)%6)+7) argument
29 #define RC(t) ((((t)+2)%6)+7) argument
30 #define RD(t) ((((t)+1)%6)+7) argument
31 #define RE(t) ((((t)+0)%6)+7) argument
34 #define W(t) (((t)%16)+16) argument
36 #define LOADW(t) \ argument
37 LWZ(W(t),(t)*4,r4)
39 #define STEPD0_LOAD(t) \ argument
[all …]
/Linux-v5.4/drivers/media/pci/saa7134/
Dsaa7134-reg.h210 #define SAA7134_TASK_CONDITIONS(t) (0x000 +t) argument
211 #define SAA7134_FIELD_HANDLING(t) (0x001 +t) argument
212 #define SAA7134_DATA_PATH(t) (0x002 +t) argument
213 #define SAA7134_VBI_H_START1(t) (0x004 +t) argument
214 #define SAA7134_VBI_H_START2(t) (0x005 +t) argument
215 #define SAA7134_VBI_H_STOP1(t) (0x006 +t) argument
216 #define SAA7134_VBI_H_STOP2(t) (0x007 +t) argument
217 #define SAA7134_VBI_V_START1(t) (0x008 +t) argument
218 #define SAA7134_VBI_V_START2(t) (0x009 +t) argument
219 #define SAA7134_VBI_V_STOP1(t) (0x00a +t) argument
[all …]
/Linux-v5.4/drivers/scsi/esas2r/
Desas2r_targdb.c48 struct esas2r_target *t; in esas2r_targ_db_initialize() local
50 for (t = a->targetdb; t < a->targetdb_end; t++) { in esas2r_targ_db_initialize()
51 memset(t, 0, sizeof(struct esas2r_target)); in esas2r_targ_db_initialize()
53 t->target_state = TS_NOT_PRESENT; in esas2r_targ_db_initialize()
54 t->buffered_target_state = TS_NOT_PRESENT; in esas2r_targ_db_initialize()
55 t->new_target_state = TS_INVALID; in esas2r_targ_db_initialize()
61 struct esas2r_target *t; in esas2r_targ_db_remove_all() local
64 for (t = a->targetdb; t < a->targetdb_end; t++) { in esas2r_targ_db_remove_all()
65 if (t->target_state != TS_PRESENT) in esas2r_targ_db_remove_all()
69 esas2r_targ_db_remove(a, t); in esas2r_targ_db_remove_all()
[all …]
/Linux-v5.4/drivers/media/v4l2-core/
Dtuner-core.c89 i2c_adapter_id(t->i2c->adapter), t->i2c->addr
240 struct tuner *t = fe->analog_demod_priv; in fe_set_params() local
260 struct tuner *t = fe->analog_demod_priv; in fe_set_config() local
301 struct tuner *t = to_tuner(i2c_get_clientdata(c)); in set_type() local
302 struct dvb_tuner_ops *fe_tuner_ops = &t->fe.ops.tuner_ops; in set_type()
303 struct analog_demod_ops *analog_ops = &t->fe.ops.analog_ops; in set_type()
312 t->type = type; in set_type()
313 t->config = new_config; in set_type()
316 t->fe.callback = tuner_callback; in set_type()
320 tuner_detach(&t->fe); in set_type()
[all …]
/Linux-v5.4/drivers/staging/greybus/tools/
Dloopback_test.c104 struct loopback_test t; variable
107 static inline int device_enabled(struct loopback_test *t, int dev_idx);
110 static int get_##field##_aggregate(struct loopback_test *t) \
114 for (i = 0; i < t->device_count; i++) { \
115 if (!device_enabled(t, i)) \
117 if (t->devices[i].results.field > max) \
118 max = t->devices[i].results.field; \
124 static int get_##field##_aggregate(struct loopback_test *t) \
128 for (i = 0; i < t->device_count; i++) { \
129 if (!device_enabled(t, i)) \
[all …]
/Linux-v5.4/arch/sparc/lib/
Dbitext.c28 int bit_map_string_get(struct bit_map *t, int len, int align) in bit_map_string_get() argument
35 if (t->num_colors) { in bit_map_string_get()
38 align = t->num_colors; in bit_map_string_get()
47 if (align < 0 || align >= t->size) in bit_map_string_get()
49 if (len <= 0 || len > t->size) in bit_map_string_get()
53 spin_lock(&t->lock); in bit_map_string_get()
54 if (len < t->last_size) in bit_map_string_get()
55 offset = t->first_free; in bit_map_string_get()
57 offset = t->last_off & ~align1; in bit_map_string_get()
60 off_new = find_next_zero_bit(t->map, t->size, offset); in bit_map_string_get()
[all …]
/Linux-v5.4/tools/lib/bpf/
Dbtf.h131 static inline __u16 btf_kind(const struct btf_type *t) in btf_kind() argument
133 return BTF_INFO_KIND(t->info); in btf_kind()
136 static inline __u16 btf_vlen(const struct btf_type *t) in btf_vlen() argument
138 return BTF_INFO_VLEN(t->info); in btf_vlen()
141 static inline bool btf_kflag(const struct btf_type *t) in btf_kflag() argument
143 return BTF_INFO_KFLAG(t->info); in btf_kflag()
146 static inline bool btf_is_int(const struct btf_type *t) in btf_is_int() argument
148 return btf_kind(t) == BTF_KIND_INT; in btf_is_int()
151 static inline bool btf_is_ptr(const struct btf_type *t) in btf_is_ptr() argument
153 return btf_kind(t) == BTF_KIND_PTR; in btf_is_ptr()
[all …]
/Linux-v5.4/lib/lzo/
Dlzo1x_decompress_safe.c44 size_t t, next; in lzo1x_decompress_safe() local
66 t = *ip++ - 17; in lzo1x_decompress_safe()
67 if (t < 4) { in lzo1x_decompress_safe()
68 next = t; in lzo1x_decompress_safe()
75 t = *ip++; in lzo1x_decompress_safe()
76 if (t < 16) { in lzo1x_decompress_safe()
78 if (unlikely(t == 0)) { in lzo1x_decompress_safe()
91 t += offset + 15 + *ip++; in lzo1x_decompress_safe()
93 t += 3; in lzo1x_decompress_safe()
96 if (likely(HAVE_IP(t + 15) && HAVE_OP(t + 15))) { in lzo1x_decompress_safe()
[all …]
/Linux-v5.4/crypto/
Dgf128mul.c262 struct gf128mul_64k *t; in gf128mul_init_64k_bbe() local
265 t = kzalloc(sizeof(*t), GFP_KERNEL); in gf128mul_init_64k_bbe()
266 if (!t) in gf128mul_init_64k_bbe()
270 t->t[i] = kzalloc(sizeof(*t->t[i]), GFP_KERNEL); in gf128mul_init_64k_bbe()
271 if (!t->t[i]) { in gf128mul_init_64k_bbe()
272 gf128mul_free_64k(t); in gf128mul_init_64k_bbe()
273 t = NULL; in gf128mul_init_64k_bbe()
278 t->t[0]->t[1] = *g; in gf128mul_init_64k_bbe()
280 gf128mul_x_bbe(&t->t[0]->t[j + j], &t->t[0]->t[j]); in gf128mul_init_64k_bbe()
285 be128_xor(&t->t[i]->t[j + k], in gf128mul_init_64k_bbe()
[all …]
/Linux-v5.4/drivers/md/
Ddm-table.c97 static inline sector_t *get_node(struct dm_table *t, in get_node() argument
100 return t->index[l] + (n * KEYS_PER_NODE); in get_node()
107 static sector_t high(struct dm_table *t, unsigned int l, unsigned int n) in high() argument
109 for (; l < t->depth - 1; l++) in high()
112 if (n >= t->counts[l]) in high()
115 return get_node(t, l, n)[KEYS_PER_NODE - 1]; in high()
122 static int setup_btree_index(unsigned int l, struct dm_table *t) in setup_btree_index() argument
127 for (n = 0U; n < t->counts[l]; n++) { in setup_btree_index()
128 node = get_node(t, l, n); in setup_btree_index()
131 node[k] = high(t, l + 1, get_child(n, k)); in setup_btree_index()
[all …]
Ddm-cache-policy.c22 struct dm_cache_policy_type *t; in __find_policy() local
24 list_for_each_entry(t, &register_list, list) in __find_policy()
25 if (!strcmp(t->name, name)) in __find_policy()
26 return t; in __find_policy()
33 struct dm_cache_policy_type *t = __find_policy(name); in __get_policy_once() local
35 if (t && !try_module_get(t->owner)) { in __get_policy_once()
37 t = ERR_PTR(-EINVAL); in __get_policy_once()
40 return t; in __get_policy_once()
45 struct dm_cache_policy_type *t; in get_policy_once() local
48 t = __get_policy_once(name); in get_policy_once()
[all …]
/Linux-v5.4/tools/perf/util/
Dtrigger.h36 #define TRIGGER_WARN_ONCE(t, exp) \ argument
37 WARN_ONCE(t->state != exp, "trigger '%s' state transist error: %d in %s()\n", \
38 t->name, t->state, __func__)
40 static inline bool trigger_is_available(struct trigger *t) in trigger_is_available() argument
42 return t->state >= 0; in trigger_is_available()
45 static inline bool trigger_is_error(struct trigger *t) in trigger_is_error() argument
47 return t->state <= TRIGGER_ERROR; in trigger_is_error()
50 static inline void trigger_on(struct trigger *t) in trigger_on() argument
52 TRIGGER_WARN_ONCE(t, TRIGGER_OFF); in trigger_on()
53 t->state = TRIGGER_ON; in trigger_on()
[all …]
/Linux-v5.4/drivers/media/pci/bt8xx/
Dbttv-audio-hook.c55 void gvbctv3pci_audio(struct bttv *btv, struct v4l2_tuner *t, int set) in gvbctv3pci_audio() argument
61 t->audmode = V4L2_TUNER_MODE_LANG1; in gvbctv3pci_audio()
62 t->rxsubchans = V4L2_TUNER_SUB_MONO | in gvbctv3pci_audio()
71 switch (t->audmode) { in gvbctv3pci_audio()
86 void gvbctv5pci_audio(struct bttv *btv, struct v4l2_tuner *t, int set) in gvbctv5pci_audio() argument
95 switch (t->audmode) { in gvbctv5pci_audio()
114 t->rxsubchans = V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; in gvbctv5pci_audio()
115 t->audmode = V4L2_TUNER_MODE_LANG1_LANG2; in gvbctv5pci_audio()
118 t->rxsubchans = V4L2_TUNER_SUB_LANG2; in gvbctv5pci_audio()
119 t->audmode = V4L2_TUNER_MODE_LANG1_LANG2; in gvbctv5pci_audio()
[all …]
/Linux-v5.4/drivers/iio/
Dindustrialio-sw-trigger.c32 struct iio_sw_trigger_type *t = NULL, *iter; in __iio_find_sw_trigger_type() local
36 t = iter; in __iio_find_sw_trigger_type()
40 return t; in __iio_find_sw_trigger_type()
43 int iio_register_sw_trigger_type(struct iio_sw_trigger_type *t) in iio_register_sw_trigger_type() argument
49 iter = __iio_find_sw_trigger_type(t->name, strlen(t->name)); in iio_register_sw_trigger_type()
53 list_add_tail(&t->list, &iio_trigger_types_list); in iio_register_sw_trigger_type()
59 t->group = configfs_register_default_group(iio_triggers_group, t->name, in iio_register_sw_trigger_type()
61 if (IS_ERR(t->group)) in iio_register_sw_trigger_type()
62 ret = PTR_ERR(t->group); in iio_register_sw_trigger_type()
68 void iio_unregister_sw_trigger_type(struct iio_sw_trigger_type *t) in iio_unregister_sw_trigger_type() argument
[all …]
/Linux-v5.4/arch/mips/kernel/
Dwatch.c18 void mips_install_watch_registers(struct task_struct *t) in mips_install_watch_registers() argument
20 struct mips3264_watch_reg_state *watches = &t->thread.watch.mips3264; in mips_install_watch_registers()
120 unsigned int t; in mips_probe_watch_registers() local
130 t = read_c0_watchlo0(); in mips_probe_watch_registers()
132 c->watch_reg_masks[0] = t & MIPS_WATCHLO_IRW; in mips_probe_watch_registers()
138 t = read_c0_watchhi0(); in mips_probe_watch_registers()
139 write_c0_watchhi0(t | MIPS_WATCHHI_MASK); in mips_probe_watch_registers()
141 t = read_c0_watchhi0(); in mips_probe_watch_registers()
142 c->watch_reg_masks[0] |= (t & MIPS_WATCHHI_MASK); in mips_probe_watch_registers()
143 if ((t & MIPS_WATCHHI_M) == 0) in mips_probe_watch_registers()
[all …]
/Linux-v5.4/drivers/ide/
Dide-timings.c59 struct ide_timing *t; in ide_timing_find_mode() local
61 for (t = ide_timing; t->mode != speed; t++) in ide_timing_find_mode()
62 if (t->mode == 0xff) in ide_timing_find_mode()
64 return t; in ide_timing_find_mode()
71 struct ide_timing *t = ide_timing_find_mode(XFER_PIO_0 + pio); in ide_pio_cycle_time() local
81 if (pio < 3 && cycle < t->cycle) in ide_pio_cycle_time()
89 return cycle ? cycle : t->cycle; in ide_pio_cycle_time()
96 static void ide_timing_quantize(struct ide_timing *t, struct ide_timing *q, in ide_timing_quantize() argument
99 q->setup = EZ(t->setup, T); in ide_timing_quantize()
100 q->act8b = EZ(t->act8b, T); in ide_timing_quantize()
[all …]
/Linux-v5.4/arch/arm/mach-davinci/
Dtime.c103 #define USING_COMPARE(t) ((t)->opts & TIMER_OPTS_USE_COMPARE) argument
112 static int timer32_config(struct timer_s *t) in timer32_config() argument
117 if (USING_COMPARE(t)) { in timer32_config()
128 __raw_writel(__raw_readl(t->base + t->tim_off) + t->period, in timer32_config()
129 t->base + dtip[event_timer].cmp_off); in timer32_config()
131 tcr = __raw_readl(t->base + TCR); in timer32_config()
134 tcr &= ~(TCR_ENAMODE_MASK << t->enamode_shift); in timer32_config()
135 __raw_writel(tcr, t->base + TCR); in timer32_config()
138 __raw_writel(0, t->base + t->tim_off); in timer32_config()
139 __raw_writel(t->period, t->base + t->prd_off); in timer32_config()
[all …]
/Linux-v5.4/scripts/coccinelle/misc/
Dboolinit.cocci2 /// Bool initializations should use true and false. Bool tests don't need
27 bool t;
31 - t == true
32 + t
34 - true == t
35 + t
37 - t != true
38 + !t
40 - true != t
41 + !t
[all …]
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb3/
Dcxgb3_defs.h47 static inline union active_open_entry *atid2entry(const struct tid_info *t, in atid2entry() argument
50 return &t->atid_tab[atid - t->atid_base]; in atid2entry()
53 static inline union listen_entry *stid2entry(const struct tid_info *t, in stid2entry() argument
56 return &t->stid_tab[stid - t->stid_base]; in stid2entry()
62 static inline struct t3c_tid_entry *lookup_tid(const struct tid_info *t, in lookup_tid() argument
65 struct t3c_tid_entry *t3c_tid = tid < t->ntids ? in lookup_tid()
66 &(t->tid_tab[tid]) : NULL; in lookup_tid()
74 static inline struct t3c_tid_entry *lookup_stid(const struct tid_info *t, in lookup_stid() argument
79 if (tid < t->stid_base || tid >= t->stid_base + t->nstids) in lookup_stid()
82 e = stid2entry(t, tid); in lookup_stid()
[all …]
/Linux-v5.4/drivers/md/bcache/
Dbset.c292 struct bset_tree *t = b->set; in bch_btree_keys_free() local
295 kfree(t->prev); in bch_btree_keys_free()
297 free_pages((unsigned long) t->prev, in bch_btree_keys_free()
301 kfree(t->tree); in bch_btree_keys_free()
303 free_pages((unsigned long) t->tree, in bch_btree_keys_free()
306 free_pages((unsigned long) t->data, b->page_order); in bch_btree_keys_free()
308 t->prev = NULL; in bch_btree_keys_free()
309 t->tree = NULL; in bch_btree_keys_free()
310 t->data = NULL; in bch_btree_keys_free()
318 struct bset_tree *t = b->set; in bch_btree_keys_alloc() local
[all …]
/Linux-v5.4/drivers/net/wireless/mediatek/mt76/mt76x2/
Deeprom.c278 void mt76x2_get_rate_power(struct mt76x02_dev *dev, struct mt76_rate_power *t, in mt76x2_get_rate_power() argument
286 memset(t, 0, sizeof(*t)); in mt76x2_get_rate_power()
289 t->cck[0] = t->cck[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power()
290 t->cck[2] = t->cck[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power()
296 t->ofdm[0] = t->ofdm[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power()
297 t->ofdm[2] = t->ofdm[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power()
303 t->ofdm[4] = t->ofdm[5] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power()
304 t->ofdm[6] = t->ofdm[7] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power()
307 t->ht[0] = t->ht[1] = mt76x02_rate_power_val(val); in mt76x2_get_rate_power()
308 t->ht[2] = t->ht[3] = mt76x02_rate_power_val(val >> 8); in mt76x2_get_rate_power()
[all …]
/Linux-v5.4/block/
Dblk-settings.c470 void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b) in blk_queue_stack_limits() argument
472 blk_stack_limits(&t->limits, &b->limits, 0); in blk_queue_stack_limits()
497 int blk_stack_limits(struct queue_limits *t, struct queue_limits *b, in blk_stack_limits() argument
502 t->max_sectors = min_not_zero(t->max_sectors, b->max_sectors); in blk_stack_limits()
503 t->max_hw_sectors = min_not_zero(t->max_hw_sectors, b->max_hw_sectors); in blk_stack_limits()
504 t->max_dev_sectors = min_not_zero(t->max_dev_sectors, b->max_dev_sectors); in blk_stack_limits()
505 t->max_write_same_sectors = min(t->max_write_same_sectors, in blk_stack_limits()
507 t->max_write_zeroes_sectors = min(t->max_write_zeroes_sectors, in blk_stack_limits()
509 t->bounce_pfn = min_not_zero(t->bounce_pfn, b->bounce_pfn); in blk_stack_limits()
511 t->seg_boundary_mask = min_not_zero(t->seg_boundary_mask, in blk_stack_limits()
[all …]
/Linux-v5.4/drivers/media/usb/pvrusb2/
Dpvrusb2-util.h9 #define PVR2_DECOMPOSE_LE(t,i,d) \ argument
11 (t)[i] = (d) & 0xff;\
12 (t)[i+1] = ((d) >> 8) & 0xff;\
13 (t)[i+2] = ((d) >> 16) & 0xff;\
14 (t)[i+3] = ((d) >> 24) & 0xff;\
17 #define PVR2_DECOMPOSE_BE(t,i,d) \ argument
19 (t)[i+3] = (d) & 0xff;\
20 (t)[i+2] = ((d) >> 8) & 0xff;\
21 (t)[i+1] = ((d) >> 16) & 0xff;\
22 (t)[i] = ((d) >> 24) & 0xff;\
[all …]
/Linux-v5.4/kernel/bpf/
Dbtf.c223 const struct btf_type *t; member
281 const struct btf_type *t,
294 const struct btf_type *t);
295 void (*seq_show)(const struct btf *btf, const struct btf_type *t,
304 const struct btf_type *t, u32 type_id);
306 static bool btf_type_is_modifier(const struct btf_type *t) in btf_type_is_modifier() argument
318 switch (BTF_INFO_KIND(t->info)) { in btf_type_is_modifier()
329 bool btf_type_is_void(const struct btf_type *t) in btf_type_is_void() argument
331 return t == &btf_void; in btf_type_is_void()
334 static bool btf_type_is_fwd(const struct btf_type *t) in btf_type_is_fwd() argument
[all …]
/Linux-v5.4/drivers/misc/cb710/
Ddebug.c29 #define CB710_READ_REGS_TEMPLATE(t) \ argument
30 static void cb710_read_regs_##t(void __iomem *iobase, \
31 u##t *reg, unsigned select) \
35 for (i = 0; i < ARRAY_SIZE(allow); ++i, reg += 16/(t/8)) { \
39 for (j = 0; j < 0x10/(t/8); ++j) { \
40 if (!allow_reg_read(i, j, t)) \
42 reg[j] = ioread##t(iobase \
43 + (i << 4) + (j * (t/8))); \
53 #define CB710_DUMP_REGS_TEMPLATE(t) \ argument
54 static void cb710_dump_regs_##t(struct device *dev, \
[all …]

12345678910>>...150