Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dkern_lockf.c271 int g_space; /* (g) space allocated for vertices */ member
2414 if (g->g_size == g->g_space) { in graph_alloc_vertex()
2416 2 * g->g_space * sizeof(struct owner_vertex *), in graph_alloc_vertex()
2419 g->g_indexbuf = malloc(2 * g->g_space * sizeof(int), in graph_alloc_vertex()
2421 g->g_space = 2 * g->g_space; in graph_alloc_vertex()
2467 g->g_space = 10; in graph_init()
2468 g->g_indexbuf = malloc(g->g_space * sizeof(int), M_LOCKF, M_WAITOK); in graph_init()