Home
last modified time | relevance | path

Searched refs:g_space (Results 1 – 1 of 1) sorted by relevance

/freebsd-12-stable/sys/kern/
Dkern_lockf.c271 int g_space; /* (g) space allocated for vertices */ member
2415 if (g->g_size == g->g_space) { in graph_alloc_vertex()
2417 2 * g->g_space * sizeof(struct owner_vertex *), in graph_alloc_vertex()
2420 g->g_indexbuf = malloc(2 * g->g_space * sizeof(int), in graph_alloc_vertex()
2422 g->g_space = 2 * g->g_space; in graph_alloc_vertex()
2468 g->g_space = 10; in graph_init()
2469 g->g_indexbuf = malloc(g->g_space * sizeof(int), M_LOCKF, M_WAITOK); in graph_init()