** Check whether real size of the array is a power of 2. ** (If it is not, 'alimit' cannot be changed to any other value ** without changing the real size.) */
| 233 | ** without changing the real size.) |
| 234 | */ |
| 235 | static int ispow2realasize (const Table *t) { |
| 236 | return (!isrealasize(t) || ispow2(t->alimit)); |
| 237 | } |
| 238 | |
| 239 | |
| 240 | static unsigned int setlimittosize (Table *t) { |