Searched refs:decimal_part (Results 1 – 2 of 2) sorted by relevance
62 int32_t decimal_part = n & mask; in round_fixed_point() local68 return (decimal_part < rounding_boundary) ? (n & ~mask) : ((n >> shift) + 1) << shift; in round_fixed_point()
60 decimal_part = n & mask66 if decimal_part < rounding_boundary: