Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for selv (0.14 sec)

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

    //	}
    	SLL	R1, R2, R3	// 00221804
    	SLLV	R10, R22, R21	// 0156a814
    	SRL	R27, R6, R17	// 03668806
    	SRLV	R27, R6, R17	// 03668816
    	SRA	R11, R19, R20	// 0173a007
    	SRAV	R20, R19, R19	// 02939817
    	ROTR	R19, R18, R20	// 0272a046
    	ROTRV	R9, R13, R16	// 012d8056
    
    //	LSHW rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	SLL	R1, R2		// 00221004
    	SLLV	R10, R22	// 0156b014
    	SRL	R27, R6   	// 03663006
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    		context = ctxExpr
    	}
    	if context == ctxEmbedType {
    		error_(sel.Pos(), "cannot embed C type")
    	}
    	goname := sel.Sel.Name
    	if goname == "errno" {
    		error_(sel.Pos(), "cannot refer to errno directly; see documentation")
    		return
    	}
    	if goname == "_CMalloc" {
    		error_(sel.Pos(), "cannot refer to C._CMalloc; use C.malloc")
    		return
    	}
    	if goname == "malloc" {
    		goname = "_CMalloc"
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/buildid_linux.go

    // one.
    
    import (
    	"bytes"
    	"debug/elf"
    	"os"
    	"testing"
    )
    
    func testBuildID(t *testing.T) {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("no /proc/self/exe")
    		}
    		t.Fatal("opening /proc/self/exe: ", err)
    	}
    	defer f.Close()
    
    	c := 0
    sections:
    	for i, s := range f.Sections {
    		if s.Type != elf.SHT_NOTE {
    			continue
    		}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	SBFX $2, R27, $54, R7                      // 67df4293
    	SDIVW R22, R14, R9                         // c90dd61a
    	SDIV R13, R21, R9                          // a90ecd9a
    	SEV                                        // 9f2003d5
    	SEVL                                       // bf2003d5
    	SMADDL R3, R7, R11, R9                     // 691d239b
    	SMSUBL R5, R19, R11, R29                   // 7dcd259b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  5. src/cmd/cgo/gcc.go

    	needsUnsafe := false
    	f.walk(arg, ctxExpr, func(f *File, arg interface{}, context astContext) {
    		px, ok := arg.(*ast.Expr)
    		if !ok {
    			return
    		}
    		sel, ok := (*px).(*ast.SelectorExpr)
    		if ok {
    			if l, ok := sel.X.(*ast.Ident); !ok || l.Name != "C" {
    				return
    			}
    
    			for _, r := range f.Ref {
    				if r.Expr == px {
    					*px = p.rewriteName(f, r, addPosition)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const RUSAGE_CHILDREN = -1
    pkg syscall (darwin-arm64), const RUSAGE_CHILDREN ideal-int
    pkg syscall (darwin-arm64), const RUSAGE_SELF = 0
    pkg syscall (darwin-arm64), const RUSAGE_SELF ideal-int
    pkg syscall (darwin-arm64), const SCM_CREDS = 3
    pkg syscall (darwin-arm64), const SCM_CREDS ideal-int
    pkg syscall (darwin-arm64), const SCM_RIGHTS = 1
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const RUSAGE_CHILDREN = -1
    pkg syscall (freebsd-arm64), const RUSAGE_CHILDREN ideal-int
    pkg syscall (freebsd-arm64), const RUSAGE_SELF = 0
    pkg syscall (freebsd-arm64), const RUSAGE_SELF ideal-int
    pkg syscall (freebsd-arm64), const RUSAGE_THREAD = 1
    pkg syscall (freebsd-arm64), const RUSAGE_THREAD ideal-int
    pkg syscall (freebsd-arm64), const S_IFMT = 61440
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    		}
    	}
    }
    
    func tenRunes(r rune) string {
    	runes := make([]rune, 10)
    	for i := range runes {
    		runes[i] = r
    	}
    	return string(runes)
    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	const step = 13
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    		return ((r - 'A' + step) % 26) + 'A'
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  9. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const RUSAGE_CHILDREN = -1 #53466
    pkg syscall (freebsd-riscv64), const RUSAGE_CHILDREN ideal-int #53466
    pkg syscall (freebsd-riscv64), const RUSAGE_SELF = 0 #53466
    pkg syscall (freebsd-riscv64), const RUSAGE_SELF ideal-int #53466
    pkg syscall (freebsd-riscv64), const RUSAGE_THREAD = 1 #53466
    pkg syscall (freebsd-riscv64), const RUSAGE_THREAD ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	DIV	R4, R5	  		// a5102000
    	DIV	R4, R5, R6	  	// a6102000
    	DIVU	R4, R5	   		// a5102100
    	DIVU	R4, R5, R6	   	// a6102100
    	SRLV	R4, R5 			// a5101900
    	SRLV	R4, R5, R6 		// a6101900
    	SRLV	$4, R4, R5		// 85104500
    	SRLV	$4, R4			// 84104500
    	SRLV	$32, R4, R5 		// 85804500
    	SRLV	$32, R4			// 84804500
    
    	MASKEQZ	R4, R5, R6		// a6101300
    	MASKNEZ	R4, R5, R6		// a6901300
    
    	MOVFD	F4, F5			// 85241901
    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)
Back to top