Lines Matching refs:mt
19 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()
300 if (!mt) in regcache_maple_exit()
306 __mt_destroy(mt); in regcache_maple_exit()
309 kfree(mt); in regcache_maple_exit()
318 struct maple_tree *mt = map->cache; in regcache_maple_insert_block() local
319 MA_STATE(mas, mt, first, last); in regcache_maple_insert_block()
346 struct maple_tree *mt; in regcache_maple_init() local
351 mt = kmalloc(sizeof(*mt), GFP_KERNEL); in regcache_maple_init()
352 if (!mt) in regcache_maple_init()
354 map->cache = mt; in regcache_maple_init()
356 mt_init(mt); in regcache_maple_init()