Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vpopcntw (0.11 sec)

  1. test/codegen/mathbits.go

    	// amd64:"POPCNTL"
    	// arm64:"VCNT","VUADDLV"
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTW"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount32(n)
    }
    
    func OnesCount16(n uint16) int {
    	// amd64/v2:-".*x86HasPOPCNT" amd64/v3:-".*x86HasPOPCNT"
    	// amd64:"POPCNTL"
    	// arm64:"VCNT","VUADDLV"
    	// s390x:"POPCNT"
    	// ppc64x:"POPCNTW"
    	// wasm:"I64Popcnt"
    	return bits.OnesCount16(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/a.out.go

    	AVSRW
    	AVSR
    	AVSRO
    	AVSLD
    	AVSRD
    	AVSA
    	AVSRAB
    	AVSRAH
    	AVSRAW
    	AVSRAD
    	AVSOI
    	AVSLDOI
    	AVCLZ
    	AVCLZB
    	AVCLZH
    	AVCLZW
    	AVCLZD
    	AVPOPCNT
    	AVPOPCNTB
    	AVPOPCNTH
    	AVPOPCNTW
    	AVPOPCNTD
    	AVCMPEQ
    	AVCMPEQUB
    	AVCMPEQUBCC
    	AVCMPEQUH
    	AVCMPEQUHCC
    	AVCMPEQUW
    	AVCMPEQUWCC
    	AVCMPEQUD
    	AVCMPEQUDCC
    	AVCMPGT
    	AVCMPGTUB
    	AVCMPGTUBCC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "POPCNTD", argLength: 1, reg: gp11, asm: "POPCNTD"}, // number of set bits in arg0
    		{name: "POPCNTW", argLength: 1, reg: gp11, asm: "POPCNTW"}, // number of set bits in each word of arg0 placed in corresponding word
    		{name: "POPCNTB", argLength: 1, reg: gp11, asm: "POPCNTB"}, // number of set bits in each byte of arg0 placed in corresponding byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top