Lines Matching defs:max
188 local function max(curr, value)
196 assert_equals(max(nil, nil), nil)
197 assert_equals(max(0, nil), 0)
198 assert_equals(max(nil, 0), 0)
199 assert_equals(max(0, 0), 0)
200 assert_equals(max(1, -1), 1)
201 assert_equals(max(-1, 1), 1)
217 required = max(required, width)
221 currmax = max(currmax, col)
301 category_col = max(category_col, 56)