Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LOR (0.08 sec)

  1. src/cmd/asm/internal/asm/testdata/mips64.s

    	SRAV	$12, R3		// 00031b3b
    	ROTR	$12, R8		// 00284302
    	ROTRV	$63, R22	// 0036b7fe
    
    
    //	LAND/LXOR/LNOR/LOR rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	R14, R8		// 010e4024
    	XOR	R15, R9		// 012f4826
    	NOR	R16, R10	// 01505027
    	OR	R17, R11	// 01715825
    
    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    				tok = s.switch2(token.AND_NOT, token.AND_NOT_ASSIGN)
    			} else {
    				tok = s.switch3(token.AND, token.AND_ASSIGN, '&', token.LAND)
    			}
    		case '|':
    			tok = s.switch3(token.OR, token.OR_ASSIGN, '|', token.LOR)
    		case '~':
    			tok = token.TILDE
    		default:
    			// next reports unexpected BOMs - don't repeat
    			if ch != bom {
    				// Report an informative error for U+201[CD] quotation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	{token.XOR_ASSIGN, "^=", operator},
    	{token.SHL_ASSIGN, "<<=", operator},
    	{token.SHR_ASSIGN, ">>=", operator},
    	{token.AND_NOT_ASSIGN, "&^=", operator},
    
    	{token.LAND, "&&", operator},
    	{token.LOR, "||", operator},
    	{token.ARROW, "<-", operator},
    	{token.INC, "++", operator},
    	{token.DEC, "--", operator},
    
    	{token.EQL, "==", operator},
    	{token.LSS, "<", operator},
    	{token.GTR, ">", 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)
  4. src/go/constant/value.go

    	x, y := match(x_, y_)
    
    	switch x := x.(type) {
    	case unknownVal:
    		return x
    
    	case boolVal:
    		y := y.(boolVal)
    		switch op {
    		case token.LAND:
    			return x && y
    		case token.LOR:
    			return x || y
    		}
    
    	case int64Val:
    		a := int64(x)
    		b := int64(y.(int64Val))
    		var c int64
    		switch op {
    		case token.ADD:
    			if !is63bit(a) || !is63bit(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		w.CanFail = true
    		if last, ok := last.(*CondBreak); ok {
    			// Add to the previous "if <cond> { break }" via a
    			// logical OR, which will save verbosity.
    			last.Cond = &ast.BinaryExpr{
    				Op: token.LOR,
    				X:  last.Cond,
    				Y:  node.Cond,
    			}
    			return
    		}
    	}
    
    	w.List = append(w.List, node)
    }
    
    // predeclared contains globally known tokens that should not be redefined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top