Lines Matching full:ceil
441 return ceil(x);520 * This is different than calling floor() or ceil():522 * ceil(3.3) = 4, ceil(-3.3) = -3535 return ceil(d);540 return d >= 0 ? floor(d) : ceil(d);