Lines Matching refs:elts
456 elt = *(TRACING_MAP_ELT(map->elts, idx)); in get_free_elt()
468 if (!map->elts) in tracing_map_free_elts()
472 tracing_map_elt_free(*(TRACING_MAP_ELT(map->elts, i))); in tracing_map_free_elts()
473 *(TRACING_MAP_ELT(map->elts, i)) = NULL; in tracing_map_free_elts()
476 tracing_map_array_free(map->elts); in tracing_map_free_elts()
477 map->elts = NULL; in tracing_map_free_elts()
484 map->elts = tracing_map_array_alloc(map->max_elts, in tracing_map_alloc_elts()
486 if (!map->elts) in tracing_map_alloc_elts()
490 *(TRACING_MAP_ELT(map->elts, i)) = tracing_map_elt_alloc(map); in tracing_map_alloc_elts()
491 if (IS_ERR(*(TRACING_MAP_ELT(map->elts, i)))) { in tracing_map_alloc_elts()
492 *(TRACING_MAP_ELT(map->elts, i)) = NULL; in tracing_map_alloc_elts()
701 tracing_map_elt_clear(*(TRACING_MAP_ELT(map->elts, i))); in tracing_map_clear()