Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for _len (0.04 sec)

  1. src/go/types/builtins.go

    			check.recordBuiltinType(call.Fun, sig)
    		}
    
    	case _Cap, _Len:
    		// cap(x)
    		// len(x)
    		mode := invalid
    		var val constant.Value
    		switch t := arrayPtrDeref(under(x.typ)).(type) {
    		case *Basic:
    			if isString(t) && id == _Len {
    				if x.mode == constant_ {
    					mode = constant_
    					val = constant.MakeInt64(int64(len(constant.StringVal(x.val))))
    				} else {
    					mode = value
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/builtins.go

    			check.recordBuiltinType(call.Fun, sig)
    		}
    
    	case _Cap, _Len:
    		// cap(x)
    		// len(x)
    		mode := invalid
    		var val constant.Value
    		switch t := arrayPtrDeref(under(x.typ)).(type) {
    		case *Basic:
    			if isString(t) && id == _Len {
    				if x.mode == constant_ {
    					mode = constant_
    					val = constant.MakeInt64(int64(len(constant.StringVal(x.val))))
    				} else {
    					mode = value
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		return
    	}
    	if kind != 0 && kind != vk {
    		var inner bytes.Buffer
    		if len(v.inner) > 0 {
    			fmt.Fprintf(&inner, " containing")
    			for i, vi := range v.inner {
    				if i > 0 && len(v.inner) > 2 {
    					fmt.Fprintf(&inner, ",")
    				}
    				fmt.Fprintf(&inner, " ")
    				if i > 0 && i == len(v.inner)-1 {
    					fmt.Fprintf(&inner, "and ")
    				}
    				fmt.Fprintf(&inner, "%s+%d(FP)", vi.name, vi.off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/encoding/base32/base32.go

    				if dlen == 1 || dlen == 3 || dlen == 6 {
    					return n, false, CorruptInputError(olen - len(src) - 1)
    				}
    				break
    			}
    			dbuf[j] = enc.decodeMap[in]
    			if dbuf[j] == 0xFF {
    				return n, false, CorruptInputError(olen - len(src) - 1)
    			}
    			j++
    		}
    
    		// Pack 8x 5-bit source blocks into 5 byte destination
    		// quantum
    		switch dlen {
    		case 8:
    			dst[dsti+4] = dbuf[6]<<5 | dbuf[7]
    			n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    var dupTrampoline = abi.FuncPCABI0(libc_dup2_trampoline)
    
    type SockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [12]int8
    	raw    RawSockaddrDatalink
    }
    
    // Translate "kern.hostname" to []_C_int{0,1,2,3}.
    func nametomib(name string) (mib []_C_int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/iimport.go

    	}
    
    	sLen := r.uint64()
    	dLen := r.uint64()
    
    	if sLen > math.MaxUint64-dLen {
    		errorf("lengths out of range (%d, %d)", sLen, dLen)
    	}
    
    	data, err := saferio.ReadData(r, sLen+dLen)
    	if err != nil {
    		errorf("cannot read %d bytes of stringData and declData: %s", sLen+dLen, err)
    	}
    	stringData := data[:sLen]
    	declData := data[sLen:]
    
    	p := iimporter{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/crypto/tls/auth.go

    	// RSA-PSS is used with PSSSaltLengthEqualsHash, and requires
    	//    emLen >= hLen + sLen + 2
    	{PSSWithSHA256, crypto.SHA256.Size()*2 + 2, VersionTLS13},
    	{PSSWithSHA384, crypto.SHA384.Size()*2 + 2, VersionTLS13},
    	{PSSWithSHA512, crypto.SHA512.Size()*2 + 2, VersionTLS13},
    	// PKCS #1 v1.5 uses prefixes from hashPrefixes in crypto/rsa, and requires
    	//    emLen >= len(prefix) + hLen + 11
    	// TLS 1.3 dropped support for PKCS #1 v1.5 in favor of RSA-PSS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    func inverseNTT(f nttElement) ringElement {
    	k := 127
    	for len := 2; len <= 128; len *= 2 {
    		for start := 0; start < 256; start += 2 * len {
    			zeta := zetas[k]
    			k--
    			// Bounds check elimination hint.
    			f, flen := f[start:start+len], f[start+len:start+len+len]
    			for j := 0; j < len; j++ {
    				t := f[j]
    				f[j] = fieldAdd(t, flen[j])
    				flen[j] = fieldMulSub(zeta, flen[j], t)
    			}
    		}
    	}
    	for i := range f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/archive/tar/writer.go

    	length := len(name)
    	if length <= nameSize || !isASCII(name) {
    		return "", "", false
    	} else if length > prefixSize+1 {
    		length = prefixSize + 1
    	} else if name[length-1] == '/' {
    		length--
    	}
    
    	i := strings.LastIndex(name[:length], "/")
    	nlen := len(name) - i - 1 // nlen is length of suffix
    	plen := i                 // plen is length of prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    // bitLen is a version of bits.Len that only leaks the bit length of n, but not
    // its value. bits.Len and bits.LeadingZeros use a lookup table for the
    // low-order bits on some architectures.
    func bitLen(n uint) int {
    	var len int
    	// We assume, here and elsewhere, that comparison to zero is constant time
    	// with respect to different non-zero values.
    	for n != 0 {
    		len++
    		n >>= 1
    	}
    	return len
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top