Home | History | Annotate | Download | only in lib

Lines Matching defs:bytes

36 /* Return number of bytes required to create a N_BIT bitset
37 of TYPE. The bitset may grow to require more bytes than this. */
41 size_t bytes;
52 bytes = abitset_bytes (n_bits);
56 bytes = lbitset_bytes (n_bits);
60 bytes = ebitset_bytes (n_bits);
64 bytes = vbitset_bytes (n_bits);
68 return bytes;
136 size_t bytes;
139 bytes = bitset_bytes (type, n_bits);
141 bset = xcalloc (1, bytes);
156 size_t bytes;
159 bytes = bitset_bytes (type, n_bits);
161 bset = obstack_alloc (bobstack, bytes);
162 memset (bset, 0, bytes);