Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for utod (0.21 sec)

  1. src/crypto/internal/boring/build-goboring.sh

    }
    
    u128 __udivti3(u128 x, u128 y) {
    	return div(x, y, 0);
    }
    EOF
    
    extra=""
    case $GOARCH in
    amd64)
    	cp umod-amd64.s umod.s
    	clang -c -o umod.o umod.s
    	extra=umod.o
    	;;
    arm64)
    	cp umod-arm64.c umod.c
    	clang -c -o umod.o umod.c
    	extra=umod.o
    	;;
    esac
    
    # Prepare copy of libcrypto.a with only the checked functions renamed and exported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/gen/arithBoundaryGen.go

    				panic(err)
    			}
    		}
    	}
    
    	// generate the test data
    	for _, s := range szs {
    		if len(s.u) > 0 {
    			fmt.Fprintf(w, "var %s_data []utd%s = []utd%s{", s.name, s.sn, s.sn)
    			for _, i := range s.u {
    				for _, j := range s.u {
    					fmt.Fprintf(w, "utd%s{a: %d, b: %d, add: %d, sub: %d, mul: %d", s.sn, i, j, ucast(i+j, s), ucast(i-j, s), ucast(i*j, s))
    					if j != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/math/big/intconv.go

    		case 'o': // octal
    			prefix = "0"
    		case 'x': // hexadecimal
    			prefix = "0x"
    		case 'X':
    			prefix = "0X"
    		}
    	}
    	if ch == 'O' {
    		prefix = "0o"
    	}
    
    	digits := x.abs.utoa(base)
    	if ch == 'X' {
    		// faster than bytes.ToUpper
    		for i, d := range digits {
    			if 'a' <= d && d <= 'z' {
    				digits[i] = 'A' + (d - 'a')
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/math/big/decimal.go

    		shift += int(s)
    	}
    
    	// Do any shift left in binary representation.
    	if shift > 0 {
    		m = nat(nil).shl(m, uint(shift))
    		shift = 0
    	}
    
    	// Convert mantissa into decimal representation.
    	s := m.utoa(10)
    	n := len(s)
    	x.exp = n
    	// Trim trailing zeros; instead the exponent is tracking
    	// the decimal point independent of the number of digits.
    	for n > 0 && s[n-1] == '0' {
    		n--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
Back to top