Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 169 for b_size (0.2 sec)

  1. src/debug/dwarf/type.go

    func (c *CommonType) Size() int64 { return c.ByteSize }
    
    // Basic types
    
    // A BasicType holds fields common to all basic types.
    //
    // See the documentation for [StructField] for more info on the interpretation of
    // the BitSize/BitOffset/DataBitOffset fields.
    type BasicType struct {
    	CommonType
    	BitSize       int64
    	BitOffset     int64
    	DataBitOffset int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. src/strconv/atoc_test.go

    	const s = "1.5e308+1.0e307i"
    	const want = 1.5e308 + 1.0e307i
    
    	for _, bitSize := range []int{0, 10, 100, 256} {
    		c, err := ParseComplex(s, bitSize)
    		if err != nil {
    			t.Fatalf("ParseComplex(%q, %d) gave error %s", s, bitSize, err)
    		}
    		if c != want {
    			t.Fatalf("ParseComplex(%q, %d) = %g (expected %g)", s, bitSize, c, want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  3. src/net/cgo_unix.go

    	bufSize := maxDNSPacketSize
    	buf := (*_C_uchar)(_C_malloc(uintptr(bufSize)))
    	defer _C_free(unsafe.Pointer(buf))
    
    	s, err := syscall.BytePtrFromString(hostname)
    	if err != nil {
    		return nil, err
    	}
    
    	var size int
    	for {
    		size := _C_res_nsearch(state, (*_C_char)(unsafe.Pointer(s)), class, rtype, buf, bufSize)
    		if size <= 0 || size > 0xffff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Reftim    Time_t
    	_         [24]byte // rsrvd5
    }
    
    type Statvfs_t struct {
    	ID          [4]byte
    	Len         int32
    	Bsize       uint64
    	Blocks      uint64
    	Usedspace   uint64
    	Bavail      uint64
    	Flag        uint64
    	Maxfilesize int64
    	_           [16]byte
    	Frsize      uint64
    	Bfree       uint64
    	Files       uint32
    	Ffree       uint32
    	Favail      uint32
    	Namemax31   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc && !purego
    
    package chacha20
    
    const bufSize = 256
    
    //go:noescape
    func chaCha20_ctr32_vsx(out, inp *byte, len int, key *[8]uint32, counter *uint32)
    
    func (c *Cipher) xorKeyStreamBlocks(dst, src []byte) {
    	chaCha20_ctr32_vsx(&dst[0], &src[0], len(src), &c.key, &c.counter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 447 bytes
    - Viewed (0)
  6. src/strconv/ftoa_test.go

    	defer func() {
    		if r := recover(); r == nil {
    			t.Fatalf("expected panic due to invalid bitSize")
    		}
    	}()
    	_ = FormatFloat(3.14, 'g', -1, 100)
    }
    
    var ftoaBenches = []struct {
    	name    string
    	float   float64
    	fmt     byte
    	prec    int
    	bitSize int
    }{
    	{"Decimal", 33909, 'g', -1, 64},
    	{"Float", 339.7784, 'g', -1, 64},
    	{"Exp", -5.09e75, 'g', -1, 64},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/service.go

    //sys	QueryServiceStatus(service Handle, status *SERVICE_STATUS) (err error) = advapi32.QueryServiceStatus
    //sys	QueryServiceLockStatus(mgr Handle, lockStatus *QUERY_SERVICE_LOCK_STATUS, bufSize uint32, bytesNeeded *uint32) (err error) = advapi32.QueryServiceLockStatusW
    //sys	ControlService(service Handle, control uint32, status *SERVICE_STATUS) (err error) = advapi32.ControlService
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    		}
    		slow.Frees += m.tinyAllocCount + m.largeFreeCount
    		slow.Mallocs += slow.Frees
    
    		slow.TotalAlloc = slow.Alloc + m.largeFree + smallFree
    
    		for i := range slow.BySize {
    			slow.BySize[i].Mallocs = bySize[i].Mallocs
    			slow.BySize[i].Frees = bySize[i].Frees
    		}
    
    		for i := mheap_.pages.start; i < mheap_.pages.end; i++ {
    			chunk := mheap_.pages.tryChunkOf(i)
    			if chunk == nil {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. hack/e2e-internal/e2e-cluster-size.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 987 bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

          return std::to_string(attr_value.f());
        case AttrValue::kB:
          return attr_value.b() ? "true" : "false";
        case AttrValue::kList:
          if (attr_.full_type() == "list(string)" &&
              attr_value.list().s_size() == 0) {
            return "{}";
          }
          LOG(WARNING) << "Unimplemented: default value of list-typed attribute.";
          return "/* UNIMPLEMENTED */";
        case AttrValue::kShape:
        case AttrValue::kTensor:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top