Lines Matching defs:one
429 Node* one = R.Constant<int32_t>(1);
434 R.CheckBinop(x, x, one); // x * 1 => x
435 R.CheckBinop(x, one, x); // 1 * x => x
468 Node* one = R.Constant<int32_t>(1);
471 R.CheckBinop(x, x, one); // x / 1 => x
495 Node* one = R.Constant<int32_t>(1);
497 R.CheckBinop(x, x, one); // x / 1 => x
525 Node* one = R.Constant<int32_t>(1);
527 R.CheckFoldBinop<int32_t>(0, x, one); // x % 1 => 0
548 Node* one = R.Constant<int32_t>(1);
550 R.CheckFoldBinop<int32_t>(0, x, one); // x % 1 => 0
746 Node* one = R.Constant<double>(1.0);
748 R.CheckBinop(x, x, one); // x * 1.0 => x
749 R.CheckBinop(x, one, x); // 1.0 * x => x
767 Node* one = R.Constant<double>(1.0);
769 R.CheckBinop(x, x, one); // x / 1.0 => x