Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for SC (0.24 sec)

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

    	MOVW	R4, 1(R5)		// a4048029
    	MOVWU	R4, 1(R5)		// a4048029
    	MOVV	R4, 1(R5)		// a404c029
    	MOVB	R4, 1(R5)		// a4040029
    	MOVBU	R4, 1(R5)		// a4040029
    	MOVWL	R4, 1(R5)		// a404002f
    	MOVVL	R4, 1(R5)		// a404802f
    	SC	R4, 1(R5)		// a4040021
    	SCV	R4, 1(R5)		// a4040023
    	MOVW	y+8(FP), R4		// 64408028
    	MOVWU	y+8(FP), R4		// 6440802a
    	MOVV	y+8(FP), R4		// 6440c028
    	MOVB	y+8(FP), R4		// 64400028
    	MOVBU	y+8(FP), R4		// 6440002a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 31 02:56:19 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/mips.s

    	//
    	//	LMOVW rreg ',' addr
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	R1, foo<>+3(SB)
    	MOVW	R1, 16(R2)
    	MOVW	R1, (R2)
    	MOVW	R1, foo<>+3(SB)
    	MOVW	R1, 16(R2)
    	MOVW	R1, (R2)
    	SC	R1, (R2)
    
    	//	LMOVB rreg ',' addr
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVB	R1, foo<>+3(SB)
    	MOVB	R1, 16(R2)
    	MOVB	R1, (R2)
    
    	//
    	// store floats
    	//
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    		}
    		if string(*k.Lit) == "" {
    			t.Fatalf("Incorrect parse %#v", k)
    		}
    		// repr.Println(k, repr.Indent("  "), repr.OmitEmpty(true))
    	}
    
    	invalidCases := []string{
    		"['abc'']",
    		"['-abc'sc']",
    		"[abc']",
    		"['ac]",
    	}
    	for i, tc := range invalidCases {
    		err := p.ParseString(tc, &k)
    		if err == nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		// fmt.Println(tc, err)
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.2K bytes
    - Viewed (0)
Back to top