Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for int16ToAuxInt (0.12 sec)

  1. src/cmd/compile/internal/ssa/rewritedec64.go

    		v5 := b.NewValue0(v.Pos, OpInt64Lo, typ.UInt32)
    		v5.AddArg(x)
    		v6 := b.NewValue0(v.Pos, OpSub16, typ.UInt16)
    		v7 := b.NewValue0(v.Pos, OpConst16, typ.UInt16)
    		v7.AuxInt = int16ToAuxInt(32)
    		v6.AddArg2(v7, s)
    		v4.AddArg2(v5, v6)
    		v1.AddArg2(v2, v4)
    		v8 := b.NewValue0(v.Pos, OpLsh32x16, typ.UInt32)
    		v9 := b.NewValue0(v.Pos, OpSub16, typ.UInt16)
    		v9.AddArg2(s, v7)
    		v8.AddArg2(v5, v9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    func auxIntToOp(cc int64) Op {
    	return Op(cc)
    }
    
    func boolToAuxInt(b bool) int64 {
    	if b {
    		return 1
    	}
    	return 0
    }
    func int8ToAuxInt(i int8) int64 {
    	return int64(i)
    }
    func int16ToAuxInt(i int16) int64 {
    	return int64(i)
    }
    func int32ToAuxInt(i int32) int64 {
    	return int64(i)
    }
    func int64ToAuxInt(i int64) int64 {
    	return int64(i)
    }
    func uint8ToAuxInt(i uint8) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top