| /kernel/linux/linux-6.6/lib/ |
| D | test_maple_tree.c | 19 #define mt_dump(mt, fmt) do {} while (0) argument 20 #define mt_validate(mt) do {} while (0) argument 57 static int __init mtree_insert_index(struct maple_tree *mt, in mtree_insert_index() 63 static void __init mtree_erase_index(struct maple_tree *mt, unsigned long index) in mtree_erase_index() 69 static int __init mtree_test_insert(struct maple_tree *mt, unsigned long index, in mtree_test_insert() 75 static int __init mtree_test_store_range(struct maple_tree *mt, in mtree_test_store_range() 81 static int __init mtree_test_store(struct maple_tree *mt, unsigned long start, in mtree_test_store() 87 static int __init mtree_test_insert_range(struct maple_tree *mt, in mtree_test_insert_range() 93 static void __init *mtree_test_load(struct maple_tree *mt, unsigned long index) in mtree_test_load() 98 static void __init *mtree_test_erase(struct maple_tree *mt, unsigned long index) in mtree_test_erase() [all …]
|
| D | maple_tree.c | 378 static inline bool mt_is_alloc(struct maple_tree *mt) in mt_is_alloc() 783 static inline void __rcu **ma_slots(struct maple_node *mn, enum maple_type mt) in ma_slots() 797 static inline bool mt_write_locked(const struct maple_tree *mt) in mt_write_locked() 803 static inline bool mt_locked(const struct maple_tree *mt) in mt_locked() 809 static inline void *mt_slot(const struct maple_tree *mt, in mt_slot() 815 static inline void *mt_slot_locked(struct maple_tree *mt, void __rcu **slots, in mt_slot_locked() 859 static inline void *mt_root_locked(struct maple_tree *mt) in mt_root_locked() 876 enum maple_type mt) in ma_meta() 893 static inline void ma_set_meta(struct maple_node *mn, enum maple_type mt, in ma_set_meta() 910 static inline void mt_clear_meta(struct maple_tree *mt, struct maple_node *mn, in mt_clear_meta() [all …]
|
| /kernel/linux/linux-6.6/drivers/input/ |
| D | input-mt.c | 42 struct input_mt *mt = dev->mt; in input_mt_init_slots() local 141 struct input_mt *mt = dev->mt; in input_mt_report_slot_state() local 201 struct input_mt *mt = dev->mt; in input_mt_report_pointer_emulation() local 262 static void __input_mt_drop_unused(struct input_dev *dev, struct input_mt *mt) in __input_mt_drop_unused() 285 struct input_mt *mt = dev->mt; in input_mt_drop_unused() local 308 struct input_mt *mt = dev->mt; in input_mt_release_slots() local 335 struct input_mt *mt = dev->mt; in input_mt_sync_frame() local 406 static int input_mt_set_matrix(struct input_mt *mt, in input_mt_set_matrix() 429 static void input_mt_set_slots(struct input_mt *mt, in input_mt_set_slots() 487 struct input_mt *mt = dev->mt; in input_mt_assign_slots() local [all …]
|
| /kernel/linux/linux-6.6/drivers/net/ethernet/microchip/vcap/ |
| D | vcap_tc.c | 68 struct flow_match_ipv4_addrs mt; in vcap_tc_flower_handler_ipv4_usage() local 104 struct flow_match_ipv6_addrs mt; in vcap_tc_flower_handler_ipv6_usage() local 137 struct flow_match_ports mt; in vcap_tc_flower_handler_portnum_usage() local 175 struct flow_match_vlan mt; in vcap_tc_flower_handler_cvlan_usage() local 217 struct flow_match_vlan mt; in vcap_tc_flower_handler_vlan_usage() local 252 struct flow_match_tcp mt; in vcap_tc_flower_handler_tcp_usage() local 328 struct flow_match_arp mt; in vcap_tc_flower_handler_arp_usage() local 391 struct flow_match_ip mt; in vcap_tc_flower_handler_ip_usage() local
|
| /kernel/linux/linux-5.10/drivers/input/ |
| D | input-mt.c | 41 struct input_mt *mt = dev->mt; in input_mt_init_slots() local 137 struct input_mt *mt = dev->mt; in input_mt_report_slot_state() local 197 struct input_mt *mt = dev->mt; in input_mt_report_pointer_emulation() local 258 static void __input_mt_drop_unused(struct input_dev *dev, struct input_mt *mt) in __input_mt_drop_unused() 278 struct input_mt *mt = dev->mt; in input_mt_drop_unused() local 297 struct input_mt *mt = dev->mt; in input_mt_sync_frame() local 363 static int input_mt_set_matrix(struct input_mt *mt, in input_mt_set_matrix() 386 static void input_mt_set_slots(struct input_mt *mt, in input_mt_set_slots() 444 struct input_mt *mt = dev->mt; in input_mt_assign_slots() local 477 struct input_mt *mt = dev->mt; in input_mt_get_slot_by_key() local
|
| /kernel/linux/linux-6.6/drivers/base/regmap/ |
| D | regcache-maple.c | 19 struct maple_tree *mt = map->cache; in regcache_maple_read() local 41 struct maple_tree *mt = map->cache; in regcache_maple_write() local 110 struct maple_tree *mt = map->cache; in regcache_maple_drop() local 242 struct maple_tree *mt = map->cache; in regcache_maple_sync() local 296 struct maple_tree *mt = map->cache; in regcache_maple_exit() local 319 struct maple_tree *mt = map->cache; in regcache_maple_insert_block() local 347 struct maple_tree *mt; in regcache_maple_init() local
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | maple_tree.h | 185 #define mt_lock_is_held(mt) \ argument 188 #define mt_write_lock_is_held(mt) \ argument 192 #define mt_set_external_lock(mt, lock) \ argument 195 #define mt_on_stack(mt) (mt).ma_external_lock = NULL argument 198 #define mt_lock_is_held(mt) 1 argument 199 #define mt_write_lock_is_held(mt) 1 argument 200 #define mt_set_external_lock(mt, lock) do { } while (0) argument 201 #define mt_on_stack(mt) do { } while (0) argument 258 #define mtree_lock(mt) spin_lock((&(mt)->ma_lock)) argument 259 #define mtree_unlock(mt) spin_unlock((&(mt)->ma_lock)) argument [all …]
|
| /kernel/linux/linux-6.6/tools/testing/radix-tree/ |
| D | maple.c | 32 struct maple_tree *mt; member 49 struct maple_tree *mt; member 91 static noinline void __init check_new_node(struct maple_tree *mt) in check_new_node() 465 static noinline void __init check_erase(struct maple_tree *mt, unsigned long index, in check_erase() 471 #define erase_check_load(mt, i) check_load(mt, set[i], entry[i%2]) argument 472 #define erase_check_insert(mt, i) check_insert(mt, set[i], entry[i%2]) argument 473 #define erase_check_erase(mt, i) check_erase(mt, set[i], entry[i%2]) argument 475 static noinline void __init check_erase_testset(struct maple_tree *mt) in check_erase_testset() 732 #define erase_check_store_range(mt, a, i, ptr) mtree_test_store_range(mt, \ argument 979 static noinline void __init check_erase2_testset(struct maple_tree *mt, in check_erase2_testset() [all …]
|
| /kernel/linux/linux-6.6/arch/mips/kernel/ |
| D | cps-vec.S | 232 .set mt define 390 .set mt define 421 .set mt define
|
| /kernel/linux/linux-5.10/drivers/thermal/ |
| D | mtk_thermal.c | 254 struct mtk_thermal *mt; member 559 static int raw_to_mcelsius_v1(struct mtk_thermal *mt, int sensno, s32 raw) in raw_to_mcelsius_v1() 574 static int raw_to_mcelsius_v2(struct mtk_thermal *mt, int sensno, s32 raw) in raw_to_mcelsius_v2() 613 struct mtk_thermal *mt = bank->mt; in mtk_thermal_get_bank() local 634 struct mtk_thermal *mt = bank->mt; in mtk_thermal_put_bank() local 649 struct mtk_thermal *mt = bank->mt; in mtk_thermal_bank_temperature() local 682 struct mtk_thermal *mt = data; in mtk_read_temp() local 705 static void mtk_thermal_init_bank(struct mtk_thermal *mt, int num, in mtk_thermal_init_bank() 826 static int mtk_thermal_extract_efuse_v1(struct mtk_thermal *mt, u32 *buf) in mtk_thermal_extract_efuse_v1() 871 static int mtk_thermal_extract_efuse_v2(struct mtk_thermal *mt, u32 *buf) in mtk_thermal_extract_efuse_v2() [all …]
|
| /kernel/linux/linux-6.6/drivers/thermal/mediatek/ |
| D | auxadc_thermal.c | 307 struct mtk_thermal *mt; member 712 static int raw_to_mcelsius_v1(struct mtk_thermal *mt, int sensno, s32 raw) 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() 757 static int raw_to_mcelsius_v3(struct mtk_thermal *mt, int sensno, s32 raw) in raw_to_mcelsius_v3() 782 struct mtk_thermal *mt = bank->mt; in mtk_thermal_get_bank() local 803 struct mtk_thermal *mt = bank->mt; in mtk_thermal_put_bank() local 818 struct mtk_thermal *mt = bank->mt; in mtk_thermal_bank_temperature() local 850 struct mtk_thermal *mt = thermal_zone_device_priv(tz); in mtk_read_temp() local 873 static void mtk_thermal_init_bank(struct mtk_thermal *mt, int num, in mtk_thermal_init_bank() 992 static int mtk_thermal_extract_efuse_v1(struct mtk_thermal *mt, u32 *buf) in mtk_thermal_extract_efuse_v1() [all …]
|
| /kernel/linux/linux-5.10/arch/mips/kernel/ |
| D | cps-vec.S | 235 .set mt define 393 .set mt define 424 .set mt define
|
| /kernel/linux/linux-5.10/mm/ |
| D | page_reporting.c | 79 int mt = get_pageblock_migratetype(page); in page_reporting_drain() local 110 unsigned int order, unsigned int mt, in page_reporting_cycle() 226 unsigned int order, mt, leftover, offset = PAGE_REPORTING_CAPACITY; in page_reporting_process_zone() local
|
| /kernel/linux/linux-6.6/mm/ |
| D | page_reporting.c | 116 int mt = get_pageblock_migratetype(page); in page_reporting_drain() local 147 unsigned int order, unsigned int mt, in page_reporting_cycle() 263 unsigned int order, mt, leftover, offset = PAGE_REPORTING_CAPACITY; in page_reporting_process_zone() local
|
| /kernel/linux/linux-6.6/scripts/gdb/linux/ |
| D | mapletree.py | 35 def __init__(self, mt, first, end): argument 194 def mt_slot(mt, slots, offset): argument 227 def mtree_load(mt, index): argument
|
| /kernel/linux/linux-6.6/include/linux/input/ |
| D | mt.h | 70 static inline bool input_mt_is_used(const struct input_mt *mt, in input_mt_is_used() 80 static inline int input_mt_new_trkid(struct input_mt *mt) in input_mt_new_trkid()
|
| /kernel/linux/linux-5.10/include/linux/input/ |
| D | mt.h | 70 static inline bool input_mt_is_used(const struct input_mt *mt, in input_mt_is_used() 80 static inline int input_mt_new_trkid(struct input_mt *mt) in input_mt_new_trkid()
|
| /kernel/linux/linux-5.10/drivers/video/fbdev/matrox/ |
| D | matroxfb_g450.c | 238 struct my_timming *mt, const struct output_desc *outd) in computeRegs() 521 static int matroxfb_g450_compute(void* md, struct my_timming* mt) { in matroxfb_g450_compute() 578 static int g450_dvi_compute(void* md, struct my_timming* mt) { in g450_dvi_compute()
|
| D | matroxfb_crtc2.c | 65 struct my_timming* mt, in matroxfb_dh_restore() 344 struct my_timming mt; in matroxfb_dh_set_par() local
|
| /kernel/linux/linux-6.6/drivers/video/fbdev/matrox/ |
| D | matroxfb_g450.c | 238 struct my_timming *mt, const struct output_desc *outd) in computeRegs() 521 static int matroxfb_g450_compute(void* md, struct my_timming* mt) { in matroxfb_g450_compute() 578 static int g450_dvi_compute(void* md, struct my_timming* mt) { in g450_dvi_compute()
|
| D | matroxfb_crtc2.c | 65 struct my_timming* mt, in matroxfb_dh_restore() 344 struct my_timming mt; in matroxfb_dh_set_par() local
|
| /kernel/linux/linux-6.6/drivers/video/fbdev/aty/ |
| D | radeon_monitor.c | 74 int i, mt = MT_NONE; in radeon_parse_montype_prop() local 145 int mt = radeon_parse_montype_prop(dp, out_EDID, 0); in radeon_probe_OF_head() local
|
| /kernel/linux/linux-5.10/drivers/video/fbdev/aty/ |
| D | radeon_monitor.c | 74 int i, mt = MT_NONE; in radeon_parse_montype_prop() local 145 int mt = radeon_parse_montype_prop(dp, out_EDID, 0); in radeon_probe_OF_head() local
|
| /kernel/linux/linux-5.10/arch/arm/mm/ |
| D | mm.h | 64 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
|
| /kernel/linux/linux-6.6/arch/arm/mm/ |
| D | mm.h | 64 #define VM_ARM_MTYPE(mt) ((mt) << 20) argument
|