Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 111 for REM (0.12 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/syntax/scanner.go

    				s.lit = "newline"
    				s.tok = _Semi
    				break
    			}
    			goto redo
    		}
    		s.op, s.prec = Div, precMul
    		goto assignop
    
    	case '%':
    		s.nextch()
    		s.op, s.prec = Rem, precMul
    		goto assignop
    
    	case '&':
    		s.nextch()
    		if s.ch == '&' {
    			s.nextch()
    			s.op, s.prec = AndAnd, precAndAnd
    			s.tok = _Operator
    			break
    		}
    		s.op, s.prec = And, precMul
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K 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/main/webapp/css/bootstrap.min.css.map

    0 + 1);\n    }\n    @else if $fs-unit == \"rem\" {\n      $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n    }\n\n    // Set default font-size\n    @if $rfs-font-size-unit == rem {\n      $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n    }\n    @else if $rfs-font-size-unit == px {\n      $rfs-static: #{$fs}px#{$rfs-suffix};\n    }\n    @else {\n      @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n    }\n\n    // Only add media query if...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/bootstrap.min.css.map

    0 + 1);\n    }\n    @else if $fs-unit == \"rem\" {\n      $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n    }\n\n    // Set default font-size\n    @if $rfs-font-size-unit == rem {\n      $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n    }\n    @else if $rfs-font-size-unit == px {\n      $rfs-static: #{$fs}px#{$rfs-suffix};\n    }\n    @else {\n      @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n    }\n\n    // Only add media query if...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K bytes
    - Viewed (0)
Back to top