Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for udivisibleOK32 (0.1 sec)

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

    	// Don't use for powers of 2.
    	return d&(d-1) != 0
    }
    
    func udivisibleOK8(c int8) bool   { return udivisibleOK(8, int64(c)) }
    func udivisibleOK16(c int16) bool { return udivisibleOK(16, int64(c)) }
    func udivisibleOK32(c int32) bool { return udivisibleOK(32, int64(c)) }
    func udivisibleOK64(c int64) bool { return udivisibleOK(64, c) }
    
    type udivisibleData struct {
    	k   int64  // trailingZeros(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top