Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for SRL (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "SLLconst", argLength: 1, reg: gp11, asm: "SLL", aux: "Int32"}, // arg0 << auxInt, 0 <= auxInt < 32
    		{name: "SRL", argLength: 2, reg: gp21, asm: "SRL"},                    // arg0 >> arg1, unsigned, shift amount is mod 256
    		{name: "SRLconst", argLength: 1, reg: gp11, asm: "SRL", aux: "Int32"}, // arg0 >> auxInt, unsigned, 0 <= auxInt < 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/asm.go

    	plt.AddUint32(ctxt.Arch, 0x030ec023)               // subu  $24, $24, $14
    	plt.AddUint32(ctxt.Arch, 0x03e07825)               // move  $15, $31
    	plt.AddUint32(ctxt.Arch, 0x0018c0c2)               // srl   $24, $24, 3
    	plt.AddUint32(ctxt.Arch, 0x0320f809)               // jalr  $25
    	plt.AddUint32(ctxt.Arch, 0x2718fffe)               // subu  $24, $24, 2
    
    	if gotplt.Size() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "SRAW", argLength: 2, reg: gp21, asm: "SRAW"},                 // arg0 >> (aux1 & 31), arithmetic right shift of 32 bit value, sign extended to 64 bits
    		{name: "SRL", argLength: 2, reg: gp21, asm: "SRL"},                   // arg0 >> (aux1 & 63), logical right shift
    		{name: "SRLW", argLength: 2, reg: gp21, asm: "SRLW"},                 // arg0 >> (aux1 & 31), logical right shift of 32 bit value, sign extended to 64 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteCond_test.go

    	one64 int64  = 1
    	one32 int32  = 1
    	v64   int64  = 11 // ensure it's not 2**n +/- 1
    	v64_n int64  = -11
    	v32   int32  = 11
    	v32_n int32  = -11
    	uv32  uint32 = 19
    	uz    uint8  = 1 // for lowering to SLL/SRL/SRA
    )
    
    var crTests = []struct {
    	name string
    	tf   func(t *testing.T)
    }{
    	{"AddConst64", testAddConst64},
    	{"AddConst32", testAddConst32},
    	{"AddVar64", testAddVar64},
    	{"AddVar64Cset", testAddVar64Cset},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. test/codegen/mathbits.go

    	// s390x:"MOVWBR"
    	// arm64:"REVW"
    	// ppc64x/power10: "BRW"
    	return bits.ReverseBytes32(n)
    }
    
    func ReverseBytes16(n uint16) uint16 {
    	// amd64:"ROLW"
    	// arm64:"REV16W",-"UBFX",-"ORR"
    	// arm/5:"SLL","SRL","ORR"
    	// arm/6:"REV16"
    	// arm/7:"REV16"
    	// ppc64x/power10: "BRH"
    	return bits.ReverseBytes16(n)
    }
    
    // --------------------- //
    //    bits.RotateLeft    //
    // --------------------- //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    space space-to-rent.com space.museum spacekit.io spb.ru spb.su spdns.de spdns.eu spdns.org sphinx.mythic-beasts.com spjelkavik.no sport sport.hu spot spy.museum spydeberg.no square.museum square7.ch square7.de square7.net sr sr.gov.pl sr.it srht.site srl srv.br ss ss.it ssl.origin.cdn77-secure.org st st.no staba.jp stackhero-network.com stada stadt.museum stage.nodeart.io staging.onred.one stalbans.museum stalowa-wola.pl stange.no staples star starachowice.pl stargard.pl starnberg.museum starostwo.gov.pl...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top