Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for i16rand (0.24 sec)

  1. test/ken/divconst.go

    		i16test(a, b, -16384)
    	}
    }
    
    func u16rand() uint16 {
    	a := uint16(rand.Uint32())
    	a >>= uint(rand.Intn(16))
    	return a
    }
    
    func u16test(a, b, c uint16) {
    	d := a / c
    	if d != b {
    		println("u16", a, b, c, d)
    		panic("fail")
    	}
    }
    
    func u16run() {
    	var a, b uint16
    
    	for i := 0; i < Count; i++ {
    		a = u16rand()
    
    		b = a / 1
    		u16test(a, b, 1)
    		b = a / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  2. test/ken/modconst.go

    		i16test(a, b, -16384)
    	}
    }
    
    func u16rand() uint16 {
    	a := uint16(rand.Uint32())
    	a >>= uint(rand.Intn(16))
    	return a
    }
    
    func u16test(a, b, c uint16) {
    	d := a % c
    	if d != b {
    		println("u16", a, b, c, d)
    		panic("fail")
    	}
    }
    
    func u16run() {
    	var a, b uint16
    
    	for i := 0; i < Count; i++ {
    		a = u16rand()
    
    		b = a % 1
    		u16test(a, b, 1)
    		b = a % 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (SignExt8to(64|32|16) x) => (I64ShrS (I64Shl x (I64Const [56])) (I64Const [56]))
    (ZeroExt32to64        x) => (I64And x (I64Const [0xffffffff]))
    (ZeroExt16to(64|32)   x) => (I64And x (I64Const [0xffff]))
    (ZeroExt8to(64|32|16) x) => (I64And x (I64Const [0xff]))
    
    (Slicemask x) => (I64ShrS (I64Sub (I64Const [0]) x) (I64Const [63]))
    
    // Lowering truncation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64RemU", asm: "I64RemU", argLength: 2, reg: gp21, typ: "Int64"},                  // arg0 % arg1 (unsigned)
    		{name: "I64And", asm: "I64And", argLength: 2, reg: gp21, typ: "Int64"},                    // arg0 & arg1
    		{name: "I64Or", asm: "I64Or", argLength: 2, reg: gp21, typ: "Int64"},                      // arg0 | arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    		y := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpWasmI64Const)
    		v.AuxInt = int64ToAuxInt(x & y)
    		return true
    	}
    	// match: (I64And (I64Const [x]) y)
    	// cond: y.Op != OpWasmI64Const
    	// result: (I64And y (I64Const [x]))
    	for {
    		if v_0.Op != OpWasmI64Const {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		y := v_1
    		if !(y.Op != OpWasmI64Const) {
    			break
    		}
    		v.reset(OpWasmI64And)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 65535}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15
    			},
    		},
    	},
    	{
    		name:   "I64And",
    		argLen: 2,
    		asm:    wasm.AI64And,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 281474976776191}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top