Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Rsh (0.2 sec)

  1. src/cmd/asm/internal/lex/tokenizer.go

    			t.tok = ROT
    			return ROT
    		}
    	case '<':
    		if s.Peek() == '<' {
    			s.Next()
    			t.tok = LSH
    			return LSH
    		}
    	case '>':
    		if s.Peek() == '>' {
    			s.Next()
    			t.tok = RSH
    			return RSH
    		}
    	}
    	return t.tok
    }
    
    func (t *Tokenizer) Close() {
    	if t.file != nil {
    		t.file.Close()
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 04 20:35:21 GMT 2022
    - 3K bytes
    - Viewed (0)
  2. misc/cgo/gmp/gmp.go

    }
    
    // Lsh sets z = x << s and returns z.
    func (z *Int) Lsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_mul_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Rsh sets z = x >> s and returns z.
    func (z *Int) Rsh(x *Int, s uint) *Int {
    	x.doinit()
    	z.doinit()
    	C._mpz_div_2exp(&z.i[0], &x.i[0], C.ulong(s))
    	return z
    }
    
    // Exp sets z = x^y % m and returns z.
    // If m == nil, Exp sets z = x^y.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/lex.go

    type ScanToken rune
    
    const (
    	// Asm defines some two-character lexemes. We make up
    	// a rune/ScanToken value for them - ugly but simple.
    	LSH          ScanToken = -1000 - iota // << Left shift.
    	RSH                                   // >> Logical right shift.
    	ARR                                   // -> Used on ARM for shift type 3, arithmetic right shift.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    	//	">>" == 1
    	//	"->" == 2
    	//	"@>" == 3
    	r1, ok := p.registerReference(name)
    	if !ok {
    		return 0
    	}
    	var op int16
    	switch p.next().ScanToken {
    	case lex.LSH:
    		op = 0
    	case lex.RSH:
    		op = 1
    	case lex.ARR:
    		op = 2
    	case lex.ROT:
    		// following instructions on ARM64 support rotate right
    		// AND, ANDS, TST, BIC, BICS, EON, EOR, ORR, MVN, ORN
    		op = 3
    	}
    	tok := p.next()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const BPF_RELEASE ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_RET = 6
    pkg syscall (netbsd-arm64-cgo), const BPF_RET ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_RSH = 112
    pkg syscall (netbsd-arm64-cgo), const BPF_RSH ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_ST = 2
    pkg syscall (netbsd-arm64-cgo), const BPF_ST ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_STX = 3
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (darwin-386), const BPF_NEG = 128
    pkg syscall (darwin-386), const BPF_OR = 64
    pkg syscall (darwin-386), const BPF_RELEASE = 199606
    pkg syscall (darwin-386), const BPF_RET = 6
    pkg syscall (darwin-386), const BPF_RSH = 112
    pkg syscall (darwin-386), const BPF_ST = 2
    pkg syscall (darwin-386), const BPF_STX = 3
    pkg syscall (darwin-386), const BPF_SUB = 16
    pkg syscall (darwin-386), const BPF_TAX = 0
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const BPF_OR ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_RELEASE ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_RET ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_RSH ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_ST ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_STX ideal-int
    pkg syscall (freebsd-386-cgo), const BPF_SUB ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_RET = 6 #53466
    pkg syscall (freebsd-riscv64), const BPF_RET ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_RSH = 112 #53466
    pkg syscall (freebsd-riscv64), const BPF_RSH ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_ST = 2 #53466
    pkg syscall (freebsd-riscv64), const BPF_ST ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_STX = 3 #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. api/go1.16.txt

    pkg syscall (darwin-arm64), const BPF_RELEASE ideal-int
    pkg syscall (darwin-arm64), const BPF_RET = 6
    pkg syscall (darwin-arm64), const BPF_RET ideal-int
    pkg syscall (darwin-arm64), const BPF_RSH = 112
    pkg syscall (darwin-arm64), const BPF_RSH ideal-int
    pkg syscall (darwin-arm64), const BPF_ST = 2
    pkg syscall (darwin-arm64), const BPF_ST ideal-int
    pkg syscall (darwin-arm64), const BPF_STX = 3
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_RELEASE ideal-int
    pkg syscall (freebsd-arm64), const BPF_RET = 6
    pkg syscall (freebsd-arm64), const BPF_RET ideal-int
    pkg syscall (freebsd-arm64), const BPF_RSH = 112
    pkg syscall (freebsd-arm64), const BPF_RSH ideal-int
    pkg syscall (freebsd-arm64), const BPF_ST = 2
    pkg syscall (freebsd-arm64), const BPF_ST ideal-int
    pkg syscall (freebsd-arm64), const BPF_STX = 3
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top