| 16 | sc_data_t sc_data_global; |
| 17 | |
| 18 | static size_t |
| 19 | reg_size_compute(int lg_base, int lg_delta, int ndelta) { |
| 20 | return (ZU(1) << lg_base) + (ZU(ndelta) << lg_delta); |
| 21 | } |
| 22 | |
| 23 | /* Returns the number of pages in the slab. */ |
| 24 | static int |
no outgoing calls
no test coverage detected