Home
last modified time | relevance | path

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

/external/bison/lib/
Dbitsetv.c34 bitset *bsetv; in bitsetv_alloc() local
47 bsetv = xcalloc (1, vector_bytes + bytes * n_vecs); in bitsetv_alloc()
51 bsetv[i] = (bitset) (void *) ((char *) bsetv + vector_bytes + i * bytes); in bitsetv_alloc()
53 bitset_init (bsetv[i], n_bits, type); in bitsetv_alloc()
57 bsetv[i] = 0; in bitsetv_alloc()
58 return bsetv; in bitsetv_alloc()
76 bitsetv_free (bitsetv bsetv) in bitsetv_free() argument
80 for (i = 0; bsetv[i]; i++) in bitsetv_free()
81 BITSET_FREE_ (bsetv[i]); in bitsetv_free()
82 free (bsetv); in bitsetv_free()
[all …]