Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for un1 (0.01 sec)

  1. src/runtime/string.go

    		c := s[i]
    		if c < '0' || c > '9' {
    			return 0, false
    		}
    		if un > maxUint64/10 {
    			// overflow
    			return 0, false
    		}
    		un *= 10
    		un1 := un + uint64(c) - '0'
    		if un1 < un {
    			// overflow
    			return 0, false
    		}
    		un = un1
    	}
    
    	if !neg && un > uint64(maxInt64) {
    		return 0, false
    	}
    	if neg && un > uint64(maxInt64)+1 {
    		return 0, false
    	}
    
    	n := int64(un)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top