Home
last modified time | relevance | path

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

/external/bison/lib/
Dbitsetv.c32 size_t vector_bytes; in bitsetv_alloc() local
45 vector_bytes = (n_vecs + 1) * sizeof (bitset) + bytes - 1; in bitsetv_alloc()
46 vector_bytes -= vector_bytes % bytes; in bitsetv_alloc()
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()