Lines Matching refs:elts
459 elt = *(TRACING_MAP_ELT(map->elts, idx)); in get_free_elt()
471 if (!map->elts) in tracing_map_free_elts()
475 tracing_map_elt_free(*(TRACING_MAP_ELT(map->elts, i))); in tracing_map_free_elts()
476 *(TRACING_MAP_ELT(map->elts, i)) = NULL; in tracing_map_free_elts()
479 tracing_map_array_free(map->elts); in tracing_map_free_elts()
480 map->elts = NULL; in tracing_map_free_elts()
487 map->elts = tracing_map_array_alloc(map->max_elts, in tracing_map_alloc_elts()
489 if (!map->elts) in tracing_map_alloc_elts()
493 *(TRACING_MAP_ELT(map->elts, i)) = tracing_map_elt_alloc(map); in tracing_map_alloc_elts()
494 if (IS_ERR(*(TRACING_MAP_ELT(map->elts, i)))) { in tracing_map_alloc_elts()
495 *(TRACING_MAP_ELT(map->elts, i)) = NULL; in tracing_map_alloc_elts()
709 tracing_map_elt_clear(*(TRACING_MAP_ELT(map->elts, i))); in tracing_map_clear()