Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		mem := v_2
    		v.reset(OpPPC64MOVBstore)
    		v.AuxInt = int32ToAuxInt(6)
    		v0 := b.NewValue0(v.Pos, OpPPC64MOVBZload, typ.UInt8)
    		v0.AuxInt = int32ToAuxInt(6)
    		v0.AddArg2(src, mem)
    		v1 := b.NewValue0(v.Pos, OpPPC64MOVHstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(4)
    		v2 := b.NewValue0(v.Pos, OpPPC64MOVHZload, typ.UInt16)
    		v2.AuxInt = int32ToAuxInt(4)
    		v2.AddArg2(src, mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    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 {
    	return int64(int8(i))
    }
    func float32ToAuxInt(f float32) 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