Lines Matching refs:rounded
169 size_t rounded = ROUNDUP(size, 8); in size_to_index_allocating() local
170 return size_to_index_helper(rounded, rounded_up_out, -8, 1); in size_to_index_allocating()
419 size_t rounded; in cmpct_test_buckets() local
424 bucket = size_to_index_allocating(i, &rounded); in cmpct_test_buckets()
427 ASSERT(IS_ALIGNED(rounded, 8)); in cmpct_test_buckets()
428 ASSERT(rounded >= i); in cmpct_test_buckets()
432 ASSERT(rounded - i < 8); in cmpct_test_buckets()
446 bucket = size_to_index_allocating(i, &rounded); in cmpct_test_buckets()
449 ASSERT(IS_ALIGNED(rounded, j)); in cmpct_test_buckets()
450 ASSERT(rounded >= i); in cmpct_test_buckets()
451 ASSERT(rounded - i < j); in cmpct_test_buckets()