Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for valAndOffToAuxInt (0.11 sec)

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

    	return int64(int8(i))
    }
    func float32ToAuxInt(f float32) int64 {
    	return int64(math.Float64bits(float64(f)))
    }
    func float64ToAuxInt(f float64) int64 {
    	return int64(math.Float64bits(f))
    }
    func valAndOffToAuxInt(v ValAndOff) int64 {
    	return int64(v)
    }
    func arm64BitFieldToAuxInt(v arm64BitField) int64 {
    	return int64(v)
    }
    func int128ToAuxInt(x int128) int64 {
    	if x != 0 {
    		panic("nonzero int128 not allowed")
    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