| 2137 | } |
| 2138 | |
| 2139 | static void |
| 2140 | prof_bt_hash(const void *key, size_t r_hash[2]) { |
| 2141 | prof_bt_t *bt = (prof_bt_t *)key; |
| 2142 | |
| 2143 | cassert(config_prof); |
| 2144 | |
| 2145 | hash(bt->vec, bt->len * sizeof(void *), 0x94122f33U, r_hash); |
| 2146 | } |
| 2147 | |
| 2148 | static bool |
| 2149 | prof_bt_keycomp(const void *k1, const void *k2) { |
no test coverage detected