Lines Matching defs:max
570 // (We're walking in order, so this is the same as max()ing with the existing Val.)
841 x = max(0.0f, x);
977 F32 Builder::max(F32 x, F32 y) {
978 if (float X,Y; this->allImm(x.id,&X, y.id,&Y)) { return splat(std::max(X,Y)); }
1203 int bits = std::max(f.r_bits + f.r_shift,
1204 std::max(f.g_bits + f.g_shift,
1205 std::max(f.b_bits + f.b_shift,
1471 F32 mx = max(max(c.r,c.g),c.b),
1519 return max(r, max(g, b))
1529 mx = max(*r, max(*g, *b)),
1532 // Map min channel to 0, max channel to s, and scale the middle proportionally.
1551 mx = max(*r, max(*g, *b)),
1659 return s + (d - max(s * dst.a,
4208 case Op::max_f32: // max(x,y) = x<y ? y : x
4285 *stack_hint = std::max(*stack_hint, next_stack_slot);