Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Lsh (0.39 sec)

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

    			t.tok = ARR
    			return ARR
    		}
    	case '@':
    		if s.Peek() == '>' {
    			s.Next()
    			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 {
    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/pi.go

    func extractDigit() int64 {
    	if big.CmpInt(numer, accum) > 0 {
    		return -1
    	}
    	tmp1.Lsh(numer, 1).Add(tmp1, numer).Add(tmp1, accum)
    	big.DivModInt(tmp1, tmp2, tmp1, denom)
    	tmp2.Add(tmp2, numer)
    	if big.CmpInt(tmp2, denom) >= 0 {
    		return -1
    	}
    	return tmp1.Int64()
    }
    
    func nextTerm(k int64) {
    	y2 := k*2 + 1
    	accum.Add(accum, tmp1.Lsh(numer, 1))
    	accum.Mul(accum, tmp1.SetInt64(y2))
    	numer.Mul(numer, tmp1.SetInt64(k))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 10 22:32:35 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/parse.go

    	ext := ""
    	if p.peek() == lex.LSH {
    		// (Rn)(Rm<<2), the shifted offset register.
    		ext = "LSL"
    	} else {
    		// (Rn)(Rm.UXTW<1), the extended offset register.
    		// Rm.UXTW<<3, the extended register.
    		p.get('.')
    		tok := p.next()
    		ext = tok.String()
    	}
    	if p.peek() == lex.LSH {
    		// parses left shift amount applied after extension: <<Amount
    		p.get(lex.LSH)
    		tok := p.get(scanner.Int)
    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)
  4. src/cmd/asm/internal/lex/lex.go

    // returned by text/scanner.Scanner, plus a couple of extra values.
    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)
  5. misc/cgo/gmp/gmp.go

    func (z *Int) Mod(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_tdiv_r(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // 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.
    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)
  6. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const BPF_LDX ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_LEN = 128
    pkg syscall (netbsd-arm64-cgo), const BPF_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_LSH = 96
    pkg syscall (netbsd-arm64-cgo), const BPF_LSH ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION = 1
    pkg syscall (netbsd-arm64-cgo), const BPF_MAJOR_VERSION ideal-int
    pkg syscall (netbsd-arm64-cgo), const BPF_MAXBUFSIZE = 16777216
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const BPF_LDX ideal-int
    pkg syscall (darwin-arm64), const BPF_LEN = 128
    pkg syscall (darwin-arm64), const BPF_LEN ideal-int
    pkg syscall (darwin-arm64), const BPF_LSH = 96
    pkg syscall (darwin-arm64), const BPF_LSH ideal-int
    pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION = 1
    pkg syscall (darwin-arm64), const BPF_MAJOR_VERSION ideal-int
    pkg syscall (darwin-arm64), const BPF_MAXBUFSIZE = 524288
    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)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_LDX ideal-int
    pkg syscall (freebsd-arm64), const BPF_LEN = 128
    pkg syscall (freebsd-arm64), const BPF_LEN ideal-int
    pkg syscall (freebsd-arm64), const BPF_LSH = 96
    pkg syscall (freebsd-arm64), const BPF_LSH ideal-int
    pkg syscall (freebsd-arm64), const BPF_MAJOR_VERSION = 1
    pkg syscall (freebsd-arm64), const BPF_MAJOR_VERSION ideal-int
    pkg syscall (freebsd-arm64), const BPF_MAXBUFSIZE = 524288
    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)
  9. api/go1.txt

    pkg math/big, method (*Int) GobDecode([]uint8) error
    pkg math/big, method (*Int) GobEncode() ([]uint8, error)
    pkg math/big, method (*Int) Int64() int64
    pkg math/big, method (*Int) Lsh(*Int, uint) *Int
    pkg math/big, method (*Int) Mod(*Int, *Int) *Int
    pkg math/big, method (*Int) ModInverse(*Int, *Int) *Int
    pkg math/big, method (*Int) Mul(*Int, *Int) *Int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_LEN = 128 #53466
    pkg syscall (freebsd-riscv64), const BPF_LEN ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_LSH = 96 #53466
    pkg syscall (freebsd-riscv64), const BPF_LSH ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_MAJOR_VERSION = 1 #53466
    pkg syscall (freebsd-riscv64), const BPF_MAJOR_VERSION 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)
Back to top