Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xi (0.03 sec)

  1. cmd/utils.go

    				if xfix[i] != str[i] {
    					xfix = xfix[:i]
    					break
    				}
    			}
    		} else {
    			// suffix, iterate right to left
    			for i := range maxl {
    				xi := xfixl - i - 1
    				si := strl - i - 1
    				if xfix[xi] != str[si] {
    					xfix = xfix[xi+1:]
    					break
    				}
    			}
    		}
    	}
    	return xfix
    }
    
    // Returns the mode in which MinIO is running
    func getMinioMode() string {
    	switch {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    *uint, i uintptr) *uint { return (*uint)(unsafe.Pointer(uintptr(unsafe.Pointer(x)) + i*8)) } func addMulVVWWasm(z, x *uint, y uint, n uintptr) (carry uint) { const mask32 = 1<<32 - 1 y0 := y & mask32 y1 := y >> 32 for i := range n { xi := *idx(x, i) x0 := xi & mask32 x1 := xi >> 32 zi := *idx(z, i) z0 := zi & mask32 z1 := zi >> 32 c0 := carry & mask32 c1 := carry >> 32 w00 := x0*y0 + z0 + c0 l00 := w00 & mask32 h00 := w00 >> 32 w01 := x0*y1 + z1 + h00 l01 := w01 & mask32 h01 := w01 >> 32 w10 := x1*y0...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top