UINT_SET
void ossl_uint_set_init(UINT_SET *s);
void ossl_uint_set_destroy(UINT_SET *s);
int ossl_uint_set_insert(UINT_SET *s, const UINT_RANGE *range);
int ossl_uint_set_remove(UINT_SET *s, const UINT_RANGE *range);
int ossl_uint_set_query(const UINT_SET *s, uint64_t v);
UINT_SET set;
UINT_SET new_set, acked_set;
int ossl_uint_set_insert(UINT_SET *s, const UINT_RANGE *range)
int ossl_uint_set_remove(UINT_SET *s, const UINT_RANGE *range)
int ossl_uint_set_query(const UINT_SET *s, uint64_t v)
void ossl_uint_set_init(UINT_SET *s)
void ossl_uint_set_destroy(UINT_SET *s)
static void uint_set_merge_adjacent(UINT_SET *s, UINT_SET_ITEM *x)