Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fint64to32 (0.73 sec)

  1. src/runtime/softfloat64.go

    func fge64(x, y uint64) bool {
    	cmp, nan := fcmp64(x, y)
    	return cmp >= 0 && !nan
    }
    
    func fint32to32(x int32) uint32 {
    	return fintto32(int64(x))
    }
    
    func fint32to64(x int32) uint64 {
    	return fintto64(int64(x))
    }
    
    func fint64to32(x int64) uint32 {
    	return fintto32(x)
    }
    
    func fint64to64(x int64) uint64 {
    	return fintto64(x)
    }
    
    func f32toint32(x uint32) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		ssa.OpCvt32to32F:  {typecheck.LookupRuntimeFunc("fint32to32"), types.TFLOAT32},
    		ssa.OpCvt32Fto32:  {typecheck.LookupRuntimeFunc("f32toint32"), types.TINT32},
    		ssa.OpCvt64to32F:  {typecheck.LookupRuntimeFunc("fint64to32"), types.TFLOAT32},
    		ssa.OpCvt32Fto64:  {typecheck.LookupRuntimeFunc("f32toint64"), types.TINT64},
    		ssa.OpCvt64Uto32F: {typecheck.LookupRuntimeFunc("fuint64to32"), types.TFLOAT32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top