Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for REM (0.21 sec)

  1. src/math/big/int.go

    	z.neg = len(z.abs) > 0 && x.neg != y.neg // 0 has no sign
    	return z
    }
    
    // Rem sets z to the remainder x%y for y != 0 and returns z.
    // If y == 0, a division-by-zero run-time panic occurs.
    // Rem implements truncated modulus (like Go); see [Int.QuoRem] for more details.
    func (z *Int) Rem(x, y *Int) *Int {
    	_, z.abs = nat(nil).div(z.abs, x.abs, y.abs)
    	z.neg = len(z.abs) > 0 && x.neg // 0 has no sign
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	MULH	X5, X6, X7				// b3135302
    	MULHU	X5, X6, X7				// b3335302
    	MULHSU	X5, X6, X7				// b3235302
    	MULW	X5, X6, X7				// bb035302
    	DIV	X5, X6, X7				// b3435302
    	DIVU	X5, X6, X7				// b3535302
    	REM	X5, X6, X7				// b3635302
    	REMU	X5, X6, X7				// b3735302
    	DIVW	X5, X6, X7				// bb435302
    	DIVUW	X5, X6, X7				// bb535302
    	REMW	X5, X6, X7				// bb635302
    	REMUW	X5, X6, X7				// bb735302
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. test/codegen/arithmetic.go

    	// arm:"AND\t[$]31",-".*udiv"
    	// arm64:"AND\t[$]31",-"UDIV"
    	// ppc64x:"RLDICL"
    	a := n1 % 32 // unsigned
    
    	// 386:"SHRL",-"IDIVL"
    	// amd64:"SHRQ",-"IDIVQ"
    	// arm:"SRA",-".*udiv"
    	// arm64:"ASR",-"REM"
    	// ppc64x:"SRAD"
    	b := n2 % 64 // signed
    
    	return a, b
    }
    
    // Check that signed divisibility checks get converted to AND on low bits
    func Pow2DivisibleSigned(n1, n2 int) (bool, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                OperatorNameConventions.PLUS,
                OperatorNameConventions.MINUS,
                OperatorNameConventions.TIMES,
                OperatorNameConventions.DIV,
                OperatorNameConventions.REM,
                OperatorNameConventions.MOD,
            )
    
            private val callArgErrors = setOf(
                Errors.ARGUMENT_PASSED_TWICE,
                Errors.MIXING_NAMED_AND_POSITIONED_ARGUMENTS,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    	// Setting binaryOpPredicates in init avoids declaration cycles.
    	binaryOpPredicates = opPredicates{
    		token.ADD: allNumericOrString,
    		token.SUB: allNumeric,
    		token.MUL: allNumeric,
    		token.QUO: allNumeric,
    		token.REM: allInteger,
    
    		token.AND:     allInteger,
    		token.OR:      allInteger,
    		token.XOR:     allInteger,
    		token.AND_NOT: allInteger,
    
    		token.LAND: allBoolean,
    		token.LOR:  allBoolean,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	--note-on-color: #fff;
    	--tip-color: #43b929;
    	--tip-on-color: #fff;
    	--warning-color: #f70;
    	--warning-on-color: #fff;
    	--admonition-background: #fafafa;
    
    	--doc-icon-filter: invert(14.5%);
    	--rem-base: 18;
    
    	--black-color: #000;
    	--white-color: #fff;
    	--text-color: #02303A;
    	--title-color: #02303A;
    	--header-color: rgba(0, 0, 0, 0.85);
    	--footer-color: rgba(0, 0, 0, 0.8);
    	--code-color: #f7f7f8;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    					goto scanAgain
    				}
    				tok = token.COMMENT
    				lit = comment
    			} else {
    				// division
    				tok = s.switch2(token.QUO, token.QUO_ASSIGN)
    			}
    		case '%':
    			tok = s.switch2(token.REM, token.REM_ASSIGN)
    		case '^':
    			tok = s.switch2(token.XOR, token.XOR_ASSIGN)
    		case '<':
    			if s.ch == '-' {
    				s.next()
    				tok = token.ARROW
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/go/scanner/scanner_test.go

    	{token.STRING, "`foo\r\nbar`", literal},
    
    	// Operators and delimiters
    	{token.ADD, "+", operator},
    	{token.SUB, "-", operator},
    	{token.MUL, "*", operator},
    	{token.QUO, "/", operator},
    	{token.REM, "%", operator},
    
    	{token.AND, "&", operator},
    	{token.OR, "|", operator},
    	{token.XOR, "^", operator},
    	{token.SHL, "<<", operator},
    	{token.SHR, ">>", operator},
    	{token.AND_NOT, "&^", operator},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // (x + y) / 2 => (x / 2) + (y / 2) + (x & y & 1)
    (Avg64u <t> x y) => (ADD (ADD <t> (SRLI <t> [1] x) (SRLI <t> [1] y)) (ANDI <t> [1] (AND <t> x y)))
    
    (Mod64 x y [false])  => (REM x y)
    (Mod64u ...) => (REMU  ...)
    (Mod32 x y [false])  => (REMW x y)
    (Mod32u ...) => (REMUW ...)
    (Mod16 x y [false])  => (REMW  (SignExt16to32 x) (SignExt16to32 y))
    (Mod16u x y) => (REMUW (ZeroExt16to32 x) (ZeroExt16to32 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/ppc64.s

    	DIVDE R3, R4, R5                // 7ca41b52
    	DIVDECC R3, R4, R5              // 7ca41b53
    	DIVDEU R3, R4, R5               // 7ca41b12
    	DIVDEUCC R3, R4, R5             // 7ca41b13
    
    	REM R3, R4, R5                  // 7fe41bd67fff19d67cbf2050
    	REMU R3, R4, R5                 // 7fe41b967fff19d67bff00287cbf2050
    	REMD R3, R4, R5                 // 7fe41bd27fff19d27cbf2050
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top