Lines Matching refs:hbounds
229 PartitionHashBound **hbounds = NULL; in create_hash_bounds() local
242 hbounds = (PartitionHashBound **) in create_hash_bounds()
253 hbounds[i] = (PartitionHashBound *) palloc(sizeof(PartitionHashBound)); in create_hash_bounds()
254 hbounds[i]->modulus = spec->modulus; in create_hash_bounds()
255 hbounds[i]->remainder = spec->remainder; in create_hash_bounds()
256 hbounds[i]->index = i; in create_hash_bounds()
260 qsort(hbounds, nparts, sizeof(PartitionHashBound *), in create_hash_bounds()
264 greatest_modulus = hbounds[ndatums - 1]->modulus; in create_hash_bounds()
280 int modulus = hbounds[i]->modulus; in create_hash_bounds()
281 int remainder = hbounds[i]->remainder; in create_hash_bounds()
295 (*mapping)[hbounds[i]->index] = i; in create_hash_bounds()
296 pfree(hbounds[i]); in create_hash_bounds()
298 pfree(hbounds); in create_hash_bounds()