Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for s_size (0.1 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/tf-tfl-translate-serialize-stablehlo-resize-bilinear.mlir

    Zichuan Wei <******@****.***> 1677736843 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 06:04:37 UTC 2023
    - 455 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // 'relation' is kCopy.
      void Init(const Element* array, size_t a_size, RelationToSource relation) {
        if (relation == kReference) {
          array_ = array;
        } else {
          Element* const copy = new Element[a_size];
          CopyArray(array, a_size, copy);
          array_ = copy;
        }
        size_ = a_size;
        relation_to_source_ = relation;
      }
    
      const Element* array_;
      size_t size_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // 'relation' is kCopy.
      void Init(const Element* array, size_t a_size, RelationToSource relation) {
        if (relation == kReference) {
          array_ = array;
        } else {
          Element* const copy = new Element[a_size];
          CopyArray(array, a_size, copy);
          array_ = copy;
        }
        size_ = a_size;
        relation_to_source_ = relation;
      }
    
      const Element* array_;
      size_t size_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    	}
    	x := c.stackcache[order].list
    	size := c.stackcache[order].size
    	lock(&stackpool[order].item.mu)
    	for size > _StackCacheSize/2 {
    		y := x.ptr().next
    		stackpoolfree(x, order)
    		x = y
    		size -= fixedStack << order
    	}
    	unlock(&stackpool[order].item.mu)
    	c.stackcache[order].list = x
    	c.stackcache[order].size = size
    }
    
    //go:systemstack
    func stackcache_clear(c *mcache) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    	if new != nil && new.ss_flags&_SS_DISABLE != 0 && new.ss_size == 0 {
    		// Despite the fact that Darwin's sigaltstack man page says it ignores the size
    		// when SS_DISABLE is set, it doesn't. sigaltstack returns ENOMEM
    		// if we don't give it a reasonable size.
    		// ref: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20140421/214296.html
    		new.ss_size = 32768
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/syscall/ztypes_openbsd_ppc64.go

    	Rdev           int32
    	Atim           Timespec
    	Mtim           Timespec
    	Ctim           Timespec
    	Size           int64
    	Blocks         int64
    	Blksize        int32
    	Flags          uint32
    	Gen            uint32
    	X__st_birthtim Timespec
    }
    
    type Statfs_t struct {
    	F_flags       uint32
    	F_bsize       uint32
    	F_iosize      uint32
    	F_blocks      uint64
    	F_bfree       uint64
    	F_bavail      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    		return false
    	}
    
    	var st stackt
    	sigaltstack(nil, &st)
    	stsp := uintptr(unsafe.Pointer(st.ss_sp))
    	if st.ss_flags&_SS_DISABLE == 0 && sp >= stsp && sp < stsp+st.ss_size {
    		setGsignalStack(&st, gsigStack)
    		return true
    	}
    
    	if sp >= mp.g0.stack.lo && sp < mp.g0.stack.hi {
    		// The signal was delivered on the g0 stack.
    		// This can happen when linked with C code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    	Uid     uint32
    	Gid     uint32
    	Rdev    int32
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Size    int64
    	Blocks  int64
    	Blksize int32
    	Flags   uint32
    	Gen     uint32
    	_       [4]byte
    	_       Timespec
    }
    
    type Statfs_t struct {
    	F_flags       uint32
    	F_bsize       uint32
    	F_iosize      uint32
    	_             [4]byte
    	F_blocks      uint64
    	F_bfree       uint64
    	F_bavail      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go

    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    int32
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Size    int64
    	Blocks  int64
    	Blksize int32
    	Flags   uint32
    	Gen     uint32
    	_       Timespec
    }
    
    type Statfs_t struct {
    	F_flags       uint32
    	F_bsize       uint32
    	F_iosize      uint32
    	F_blocks      uint64
    	F_bfree       uint64
    	F_bavail      int64
    	F_files       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_LGETXATTR            = 379 // { int|sys||lgetxattr(const char *path, const char *name, void *value, size_t size); }
    	SYS_FGETXATTR            = 380 // { int|sys||fgetxattr(int fd, const char *name, void *value, size_t size); }
    	SYS_LISTXATTR            = 381 // { int|sys||listxattr(const char *path, char *list, size_t size); }
    	SYS_LLISTXATTR           = 382 // { int|sys||llistxattr(const char *path, char *list, size_t size); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top