Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for int128ToAuxInt (0.25 sec)

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

    	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")
    	}
    	return 0
    }
    func flagConstantToAuxInt(x flagConstant) int64 {
    	return int64(x)
    }
    
    func opToAuxInt(o Op) 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