Home
last modified time | relevance | path

Searched refs:mt (Results 1 – 25 of 79) sorted by relevance

1234

/linux/lib/
H A Dtest_maple_tree.c19 #define mt_dump(mt, fmt) do {} while (0) argument
20 #define mt_validate(mt) do {} while (0) argument
63 static int __init mtree_insert_index(struct maple_tree *mt, in mtree_insert_index() argument
66 return mtree_insert(mt, index, xa_mk_value(index & LONG_MAX), gfp); in mtree_insert_index()
69 static void __init mtree_erase_index(struct maple_tree *mt, unsigned long index) in mtree_erase_index() argument
71 MT_BUG_ON(mt, mtree_erase(mt, index) != xa_mk_value(index & LONG_MAX)); in mtree_erase_index()
72 MT_BUG_ON(mt, mtree_load(mt, index) != NULL); in mtree_erase_index()
75 static int __init mtree_test_insert(struct maple_tree *mt, unsigne argument
81 mtree_test_store_range(struct maple_tree * mt,unsigned long start,unsigned long end,void * ptr) mtree_test_store_range() argument
87 mtree_test_store(struct maple_tree * mt,unsigned long start,void * ptr) mtree_test_store() argument
93 mtree_test_insert_range(struct maple_tree * mt,unsigned long start,unsigned long end,void * ptr) mtree_test_insert_range() argument
99 mtree_test_load(struct maple_tree * mt,unsigned long index) mtree_test_load() argument
104 mtree_test_erase(struct maple_tree * mt,unsigned long index) mtree_test_erase() argument
110 check_mtree_alloc_range(struct maple_tree * mt,unsigned long start,unsigned long end,unsigned long size,unsigned long expected,int eret,void * ptr) check_mtree_alloc_range() argument
127 check_mtree_alloc_rrange(struct maple_tree * mt,unsigned long start,unsigned long end,unsigned long size,unsigned long expected,int eret,void * ptr) check_mtree_alloc_rrange() argument
145 check_load(struct maple_tree * mt,unsigned long index,void * ptr) check_load() argument
155 check_store_range(struct maple_tree * mt,unsigned long start,unsigned long end,void * ptr,int expected) check_store_range() argument
171 check_insert_range(struct maple_tree * mt,unsigned long start,unsigned long end,void * ptr,int expected) check_insert_range() argument
187 check_insert(struct maple_tree * mt,unsigned long index,void * ptr) check_insert() argument
196 check_dup_insert(struct maple_tree * mt,unsigned long index,void * ptr) check_dup_insert() argument
206 check_index_load(struct maple_tree * mt,unsigned long index) check_index_load() argument
227 check_rev_seq(struct maple_tree * mt,unsigned long max,bool verbose) check_rev_seq() argument
260 check_seq(struct maple_tree * mt,unsigned long max,bool verbose) check_seq() argument
289 check_lb_not_empty(struct maple_tree * mt) check_lb_not_empty() argument
308 check_lower_bound_split(struct maple_tree * mt) check_lower_bound_split() argument
314 check_upper_bound_split(struct maple_tree * mt) check_upper_bound_split() argument
339 check_mid_split(struct maple_tree * mt) check_mid_split() argument
348 check_rev_find(struct maple_tree * mt) check_rev_find() argument
387 check_find(struct maple_tree * mt) check_find() argument
604 check_find_2(struct maple_tree * mt) check_find_2() argument
649 check_alloc_rev_range(struct maple_tree * mt) check_alloc_rev_range() argument
823 check_alloc_range(struct maple_tree * mt) check_alloc_range() argument
989 check_ranges(struct maple_tree * mt) check_ranges() argument
1322 check_next_entry(struct maple_tree * mt) check_next_entry() argument
1346 check_prev_entry(struct maple_tree * mt) check_prev_entry() argument
1390 check_root_expand(struct maple_tree * mt) check_root_expand() argument
1480 check_gap_combining(struct maple_tree * mt) check_gap_combining() argument
1677 check_node_overwrite(struct maple_tree * mt) check_node_overwrite() argument
1690 bench_slot_store(struct maple_tree * mt) bench_slot_store() argument
1706 bench_node_store(struct maple_tree * mt) bench_node_store() argument
1725 bench_awalk(struct maple_tree * mt) bench_awalk() argument
1742 bench_walk(struct maple_tree * mt) bench_walk() argument
1759 bench_load(struct maple_tree * mt) bench_load() argument
1772 bench_mt_for_each(struct maple_tree * mt) bench_mt_for_each() argument
1796 bench_mas_for_each(struct maple_tree * mt) bench_mas_for_each() argument
1826 bench_mas_prev(struct maple_tree * mt) bench_mas_prev() argument
1858 struct maple_tree mt, newmt; check_forking() local
1900 check_iteration(struct maple_tree * mt) check_iteration() argument
1967 check_mas_store_gfp(struct maple_tree * mt) check_mas_store_gfp() argument
2002 struct maple_tree mt, newmt; bench_forking() local
2048 next_prev_test(struct maple_tree * mt) next_prev_test() argument
2230 check_spanning_relatives(struct maple_tree * mt) check_spanning_relatives() argument
2243 check_fuzzer(struct maple_tree * mt) check_fuzzer() argument
2640 check_dup_gaps(struct maple_tree * mt,unsigned long nr_entries,bool zero_start,unsigned long gap) check_dup_gaps() argument
2684 check_dup(struct maple_tree * mt) check_dup() argument
2772 check_bnode_min_spanning(struct maple_tree * mt) check_bnode_min_spanning() argument
2791 check_empty_area_window(struct maple_tree * mt) check_empty_area_window() argument
2876 check_empty_area_fill(struct maple_tree * mt) check_empty_area_fill() argument
3064 check_state_handling(struct maple_tree * mt) check_state_handling() argument
3602 alloc_cyclic_testing(struct maple_tree * mt) alloc_cyclic_testing() argument
[all...]
H A Dmaple_tree.c229 static inline unsigned int mt_attr(struct maple_tree *mt) in mt_attr() argument
231 return mt->ma_flags & ~MT_FLAGS_HEIGHT_MASK; in mt_attr()
395 static __always_inline bool mt_is_alloc(struct maple_tree *mt) in mt_is_alloc() argument
397 return (mt->ma_flags & MT_FLAGS_ALLOC_RANGE); in mt_is_alloc()
773 static inline void __rcu **ma_slots(struct maple_node *mn, enum maple_type mt) in ma_slots() argument
775 switch (mt) { in ma_slots()
788 static inline bool mt_write_locked(const struct maple_tree *mt) in mt_write_locked() argument
790 return mt_external_lock(mt) ? mt_write_lock_is_held(mt) : in mt_write_locked()
791 lockdep_is_held(&mt->ma_lock); in mt_write_locked()
794 static __always_inline bool mt_locked(const struct maple_tree *mt) in mt_locked() argument
[all …]
/linux/drivers/input/
H A Dinput-mt.c42 struct input_mt *mt = dev->mt; in input_mt_init_slots() local
47 if (mt) in input_mt_init_slots()
48 return mt->num_slots != num_slots ? -EINVAL : 0; in input_mt_init_slots()
53 mt = kzalloc(struct_size(mt, slots, num_slots), GFP_KERNEL); in input_mt_init_slots()
54 if (!mt) in input_mt_init_slots()
57 mt->num_slots = num_slots; in input_mt_init_slots()
58 mt->flags = flags; in input_mt_init_slots()
87 mt->red = kcalloc(n2, sizeof(*mt->red), GFP_KERNEL); in input_mt_init_slots()
88 if (!mt->red) in input_mt_init_slots()
94 input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1); in input_mt_init_slots()
[all …]
/linux/drivers/thermal/mediatek/
H A Dauxadc_thermal.c307 struct mtk_thermal *mt; member
350 int (*raw_to_mcelsius)(struct mtk_thermal *mt, int sensno, s32 raw);
712 static int raw_to_mcelsius_v1(struct mtk_thermal *mt, int sensno, s32 raw) in raw_to_mcelsius_v1() argument
719 tmp /= mt->conf->cali_val + mt->o_slope; in raw_to_mcelsius_v1()
720 tmp /= 10000 + mt->adc_ge; in raw_to_mcelsius_v1()
721 tmp *= raw - mt->vts[sensno] - 3350; in raw_to_mcelsius_v1()
724 return mt->degc_cali * 500 - tmp; in raw_to_mcelsius_v1()
727 static int raw_to_mcelsius_v2(struct mtk_thermal *mt, int sensno, s32 raw) in raw_to_mcelsius_v2() argument
740 g_gain = 10000 + (((mt->adc_ge - 512) * 10000) >> 12); in raw_to_mcelsius_v2()
741 g_oe = mt->adc_oe - 512; in raw_to_mcelsius_v2()
[all …]
/linux/drivers/net/ethernet/microchip/vcap/
H A Dvcap_tc.c68 struct flow_match_ipv4_addrs mt; in vcap_tc_flower_handler_ipv4_usage() local
70 flow_rule_match_ipv4_addrs(st->frule, &mt); in vcap_tc_flower_handler_ipv4_usage()
71 if (mt.mask->src) { in vcap_tc_flower_handler_ipv4_usage()
74 be32_to_cpu(mt.key->src), in vcap_tc_flower_handler_ipv4_usage()
75 be32_to_cpu(mt.mask->src)); in vcap_tc_flower_handler_ipv4_usage()
79 if (mt.mask->dst) { in vcap_tc_flower_handler_ipv4_usage()
82 be32_to_cpu(mt.key->dst), in vcap_tc_flower_handler_ipv4_usage()
83 be32_to_cpu(mt.mask->dst)); in vcap_tc_flower_handler_ipv4_usage()
104 struct flow_match_ipv6_addrs mt; in vcap_tc_flower_handler_ipv6_usage() local
108 flow_rule_match_ipv6_addrs(st->frule, &mt); in vcap_tc_flower_handler_ipv6_usage()
[all …]
/linux/include/trace/events/
H A Dmmap.h47 TP_PROTO(struct maple_tree *mt, unsigned long start,
50 TP_ARGS(mt, start, end),
53 __field(struct maple_tree *, mt)
59 __entry->mt = mt;
65 __entry->mt,
72 TP_PROTO(struct maple_tree *mt, struct vm_area_struct *vma),
74 TP_ARGS(mt, vma),
77 __field(struct maple_tree *, mt)
84 __entry->mt = mt;
91 __entry->mt, __entry->vma,
[all …]
H A Dpage_ref.h25 __field(int, mt)
35 __entry->mt = get_pageblock_migratetype(page);
39 TP_printk("pfn=0x%lx flags=%s count=%d mapcount=%d mapping=%p mt=%d val=%d",
43 __entry->mapcount, __entry->mapping, __entry->mt,
73 __field(int, mt)
84 __entry->mt = get_pageblock_migratetype(page);
89 TP_printk("pfn=0x%lx flags=%s count=%d mapcount=%d mapping=%p mt=%d val=%d ret=%d",
93 __entry->mapcount, __entry->mapping, __entry->mt,
/linux/drivers/video/fbdev/matrox/
H A Dmatroxfb_g450.c238 struct my_timming *mt, const struct output_desc *outd) in computeRegs() argument
253 hvis = ((mt->HDisplay << 1) + 3) & ~3; in computeRegs()
266 mt->mnp = mnp; in computeRegs()
267 mt->pixclock = g450_mnp2f(minfo, mnp); in computeRegs()
271 pixclock = 1000000000U / mt->pixclock; in computeRegs()
276 do_div(piic, mt->pixclock); in computeRegs()
323 mt->interlaced = 1; in computeRegs()
325 mt->HDisplay = hvis & ~7; in computeRegs()
326 mt->HSyncStart = mt->HDisplay + 8; in computeRegs()
327 mt->HSyncEnd = (hlen & ~7) - 8; in computeRegs()
[all …]
H A Dmatroxfb_maven.c756 struct my_timming* mt, in maven_compute_timming() argument
772 if (maven_find_exact_clocks(mt->HTotal, mt->VTotal, m) == 0) in maven_compute_timming()
775 lmargin = mt->HTotal - mt->HSyncEnd; in maven_compute_timming()
776 slen = mt->HSyncEnd - mt->HSyncStart; in maven_compute_timming()
777 hcrt = mt->HTotal - slen - mt->delay; in maven_compute_timming()
778 umargin = mt->VTotal - mt->VSyncEnd; in maven_compute_timming()
779 vslen = mt->VSyncEnd - mt->VSyncStart; in maven_compute_timming()
781 if (m->hcorr < mt->HTotal) in maven_compute_timming()
783 if (hcrt > mt->HTotal) in maven_compute_timming()
784 hcrt -= mt->HTotal; in maven_compute_timming()
[all …]
H A Dmatroxfb_crtc2.c65 struct my_timming* mt, in matroxfb_dh_restore() argument
105 if (mt->interlaced) { in matroxfb_dh_restore()
107 mt->VDisplay >>= 1; in matroxfb_dh_restore()
108 mt->VSyncStart >>= 1; in matroxfb_dh_restore()
109 mt->VSyncEnd >>= 1; in matroxfb_dh_restore()
110 mt->VTotal >>= 1; in matroxfb_dh_restore()
112 if ((mt->HTotal & 7) == 2) { in matroxfb_dh_restore()
114 mt->HTotal &= ~7; in matroxfb_dh_restore()
117 mga_outl(0x3C14, ((mt->HDisplay - 8) << 16) | (mt->HTotal - 8)); in matroxfb_dh_restore()
118 mga_outl(0x3C18, ((mt->HSyncEnd - 8) << 16) | (mt->HSyncStart - 8)); in matroxfb_dh_restore()
[all …]
H A Dmatroxfb_misc.c107 void matroxfb_var2my(struct fb_var_screeninfo* var, struct my_timming* mt) { in matroxfb_var2my() argument
113 mt->pixclock = 1000000000 / pixclock; in matroxfb_var2my()
114 if (mt->pixclock < 1) mt->pixclock = 1; in matroxfb_var2my()
115 mt->mnp = -1; in matroxfb_var2my()
116 mt->dblscan = var->vmode & FB_VMODE_DOUBLE; in matroxfb_var2my()
117 mt->interlaced = var->vmode & FB_VMODE_INTERLACED; in matroxfb_var2my()
118 mt->HDisplay = var->xres; in matroxfb_var2my()
119 mt->HSyncStart = mt->HDisplay + var->right_margin; in matroxfb_var2my()
120 mt->HSyncEnd = mt->HSyncStart + var->hsync_len; in matroxfb_var2my()
121 mt->HTotal = mt->HSyncEnd + var->left_margin; in matroxfb_var2my()
[all …]
/linux/drivers/base/regmap/
H A Dregcache-maple.c19 struct maple_tree *mt = map->cache; in regcache_maple_read() local
20 MA_STATE(mas, mt, reg, reg); in regcache_maple_read()
41 struct maple_tree *mt = map->cache; in regcache_maple_write() local
42 MA_STATE(mas, mt, reg, reg); in regcache_maple_write()
110 struct maple_tree *mt = map->cache; in regcache_maple_drop() local
111 MA_STATE(mas, mt, min, max); in regcache_maple_drop()
241 struct maple_tree *mt = map->cache; in regcache_maple_sync() local
243 MA_STATE(mas, mt, min, max); in regcache_maple_sync()
295 struct maple_tree *mt = map->cache; in regcache_maple_exit() local
296 MA_STATE(mas, mt, 0, UINT_MAX); in regcache_maple_exit()
[all …]
/linux/tools/testing/radix-tree/
H A Dmaple.c30 #define RCU_MT_BUG_ON(test, y) {if (y) { test->stop = true; } MT_BUG_ON(test->mt, y); }
33 struct maple_tree *mt; member
50 struct maple_tree *mt; member
92 static noinline void __init check_new_node(struct maple_tree *mt) in check_new_node() argument
100 MA_STATE(mas, mt, 0, 0); in check_new_node()
105 mtree_lock(mt); in check_new_node()
110 MT_BUG_ON(mt, mas_alloc_req(&mas) != 3); in check_new_node()
112 MT_BUG_ON(mt, mas.node != MA_ERROR(-ENOMEM)); in check_new_node()
113 MT_BUG_ON(mt, !mas_nomem(&mas, GFP_KERNEL)); in check_new_node()
115 MT_BUG_ON(mt, mas_allocated(&mas) != 3); in check_new_node()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/hws/
H A Dbwc_complex.c11 struct mlx5hws_match_template *mt; in mlx5hws_bwc_match_params_is_complex() local
18 mt = mlx5hws_match_template_create(ctx, in mlx5hws_bwc_match_params_is_complex()
22 if (!mt) { in mlx5hws_bwc_match_params_is_complex()
27 ret = mlx5hws_definer_calc_layout(ctx, mt, &match_layout); in mlx5hws_bwc_match_params_is_complex()
43 kfree(mt->fc); in mlx5hws_bwc_match_params_is_complex()
46 mlx5hws_match_template_destroy(mt); in mlx5hws_bwc_match_params_is_complex()
/linux/net/netfilter/
H A Dnft_set_pipapo.c364 const union nft_pipapo_map_bucket *mt, bool match_only) in pipapo_refill() argument
389 bitmap_set(dst, mt[i].to, mt[i].n); in pipapo_refill()
462 b = pipapo_refill(res_map, f->bsize, f->rules, fill_map, f->mt, in nft_pipapo_lookup()
472 *ext = &f->mt[b].e->ext; in nft_pipapo_lookup()
571 b = pipapo_refill(res_map, f->bsize, f->rules, fill_map, f->mt, in pipapo_get()
577 if (__nft_set_elem_expired(&f->mt[b].e->ext, tstamp)) in pipapo_get()
580 !nft_set_elem_active(&f->mt[b].e->ext, genmask))) in pipapo_get()
583 ret = f->mt[b].e; in pipapo_get()
638 union nft_pipapo_map_bucket *new_mt = NULL, *old_mt = f->mt; in pipapo_realloc_mt()
679 f->mt = new_mt; in pipapo_realloc_mt()
[all …]
H A Dnft_set_pipapo_avx2.c154 union nft_pipapo_map_bucket *mt, bool last) in nft_pipapo_avx2_refill() argument
167 nft_pipapo_avx2_fill(dst, mt[i].to, mt[i].n); \ in nft_pipapo_avx2_refill()
170 ret = mt[i].to; \ in nft_pipapo_avx2_refill()
243 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_2()
320 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_4()
415 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_8()
506 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_12()
642 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_4b_32()
700 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_8b_1()
765 b = nft_pipapo_avx2_refill(i_ul, &map[i_ul], fill, f->mt, last); in nft_pipapo_avx2_lookup_8b_2()
[all …]
/linux/drivers/input/mouse/
H A Dalps.c496 fields->mt[0] = fields->st; in alps_process_bitmap()
497 fields->mt[1] = corner[priv->second_touch]; in alps_process_bitmap()
517 input_mt_assign_slots(dev, slot, f->mt, n, 0); in alps_report_mt_data()
519 alps_set_slot(dev, slot[i], f->mt[i].x, f->mt[i].y); in alps_report_mt_data()
532 f->mt[0].x = f->st.x; in alps_report_semi_mt_data()
533 f->mt[0].y = f->st.y; in alps_report_semi_mt_data()
539 alps_set_slot(dev, 0, f->mt[0].x, f->mt[0].y); in alps_report_semi_mt_data()
541 alps_set_slot(dev, 1, f->mt[1].x, f->mt[1].y); in alps_report_semi_mt_data()
969 static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt, in alps_get_finger_coordinate_v7() argument
973 mt[0].x = ((pkt[2] & 0x80) << 4); in alps_get_finger_coordinate_v7()
[all …]
/linux/mm/
H A Dpage_reporting.c116 int mt = get_pageblock_migratetype(page); in page_reporting_drain() local
119 __putback_isolated_page(page, order, mt); in page_reporting_drain()
147 unsigned int order, unsigned int mt, in page_reporting_cycle() argument
151 struct list_head *list = &area->free_list[mt]; in page_reporting_cycle()
263 unsigned int order, mt, leftover, offset = PAGE_REPORTING_CAPACITY; in page_reporting_process_zone() local
280 for (mt = 0; mt < MIGRATE_TYPES; mt++) { in page_reporting_process_zone()
282 if (is_migrate_isolate(mt)) in page_reporting_process_zone()
285 err = page_reporting_cycle(prdev, zone, order, mt, in page_reporting_process_zone()
/linux/include/linux/input/
H A Dmt.h70 static inline bool input_mt_is_used(const struct input_mt *mt, in input_mt_is_used() argument
73 return slot->frame == mt->frame; in input_mt_is_used()
80 static inline int input_mt_new_trkid(struct input_mt *mt) in input_mt_new_trkid() argument
82 return mt->trkid++ & TRKID_MAX; in input_mt_new_trkid()
/linux/drivers/slimbus/
H A Dqcom-ctrl.c64 #define SLIM_MSG_ASM_FIRST_WORD(l, mt, mc, dt, ad) \ argument
65 ((l) | ((mt) << 5) | ((mc) << 8) | ((dt) << 15) | ((ad) << 16))
212 u8 mc, mt, len; in qcom_slim_handle_rx_irq() local
215 mt = SLIM_HEADER_GET_MT(pkt[0]); in qcom_slim_handle_rx_irq()
223 if (mt == SLIM_MSG_MT_CORE && mc == SLIM_MSG_MC_REPORT_PRESENT) { in qcom_slim_handle_rx_irq()
251 mc, mt); in qcom_slim_handle_rx_irq()
357 *head = SLIM_MSG_ASM_FIRST_WORD(txn->rl, txn->mt, in qcom_xfer_msg()
361 *head = SLIM_MSG_ASM_FIRST_WORD(txn->rl, txn->mt, in qcom_xfer_msg()
366 if (slim_tid_txn(txn->mt, txn->mc)) in qcom_xfer_msg()
369 if (slim_ec_txn(txn->mt, txn->mc)) { in qcom_xfer_msg()
[all …]
H A Dslimbus.h129 u8 mt; member
436 static inline bool slim_tid_txn(u8 mt, u8 mc) in slim_tid_txn() argument
438 return (mt == SLIM_MSG_MT_CORE && in slim_tid_txn()
445 static inline bool slim_ec_txn(u8 mt, u8 mc) in slim_ec_txn() argument
447 return (mt == SLIM_MSG_MT_CORE && in slim_ec_txn()
H A Dqcom-ngd-ctrl.c94 #define SLIM_MSG_ASM_FIRST_WORD(l, mt, mc, dt, ad) \ argument
95 ((l) | ((mt) << 5) | ((mc) << 8) | ((dt) << 15) | ((ad) << 16))
604 u8 mc, mt, len; in qcom_slim_ngd_rx() local
606 mt = SLIM_HEADER_GET_MT(buf[0]); in qcom_slim_ngd_rx()
611 mt == SLIM_MSG_MT_SRC_REFERRED_USER) in qcom_slim_ngd_rx()
616 mt == SLIM_MSG_MT_SRC_REFERRED_USER) || in qcom_slim_ngd_rx()
618 mt == SLIM_MSG_MT_SRC_REFERRED_USER)) { in qcom_slim_ngd_rx()
800 if (txn->mt == SLIM_MSG_MT_CORE && in qcom_slim_ngd_xfer_msg()
820 if (txn->mt == SLIM_MSG_MT_CORE && in qcom_slim_ngd_xfer_msg()
824 txn->mt = SLIM_MSG_MT_DEST_REFERRED_USER; in qcom_slim_ngd_xfer_msg()
[all …]
/linux/arch/mips/kernel/
H A DMakefile58 obj-$(CONFIG_MIPS_MT) += mips-mt.o
59 obj-$(CONFIG_MIPS_MT_FPAFF) += mips-mt-fpaff.o
60 obj-$(CONFIG_MIPS_MT_SMP) += smp-mt.o
66 obj-$(CONFIG_MIPS_VPE_LOADER_MT) += vpe-mt.o
68 obj-$(CONFIG_MIPS_VPE_APSP_API_MT) += rtlx-mt.o
/linux/drivers/edac/
H A Ddmc520_edac.c294 enum mem_type mt = MEM_UNKNOWN; in dmc520_get_mtype() local
303 mt = MEM_DDR3; in dmc520_get_mtype()
307 mt = MEM_DDR4; in dmc520_get_mtype()
311 return mt; in dmc520_get_mtype()
450 enum mem_type mt; in dmc520_init_csrow() local
455 mt = dmc520_get_mtype(pvt); in dmc520_init_csrow()
466 dimm->mtype = mt; in dmc520_init_csrow()
/linux/arch/arm/mm/
H A Dmm.h64 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument

1234