Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for stksize (0.26 sec)

  1. src/runtime/proc.go

    func syscall_runtime_AfterExec() {
    	execLock.unlock()
    }
    
    // Allocate a new g, with a stack big enough for stacksize bytes.
    func malg(stacksize int32) *g {
    	newg := new(g)
    	if stacksize >= 0 {
    		stacksize = round2(stackSystem + stacksize)
    		systemstack(func() {
    			newg.stack = stackalloc(uint32(stacksize))
    		})
    		newg.stackguard0 = newg.stack.lo + stackGuard
    		newg.stackguard1 = ^uintptr(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		return
    	}
    
    	ptrsize := int64(p.ctxt.Arch.PtrSize)
    	typData := ldr.Data(typ)
    	nptr := decodetypePtrdata(p.ctxt.Arch, typData) / ptrsize
    
    	if debugGCProg {
    		fmt.Fprintf(os.Stderr, "gcprog sym: %s at %d (ptr=%d+%d)\n", ldr.SymName(s), ldr.SymValue(s), ldr.SymValue(s)/ptrsize, nptr)
    	}
    
    	sval := ldr.SymValue(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/reflect/all_test.go

    	verifyMapBucket(t,
    		ArrayOf(64/goarch.PtrSize, Tscalarptr), ArrayOf(64/goarch.PtrSize, Tptrscalar),
    		map[[64 / goarch.PtrSize]Xscalarptr][64 / goarch.PtrSize]Xptrscalar(nil),
    		join(hdr, rep(bucketCount*64/goarch.PtrSize, lit(0, 1)), rep(bucketCount*64/goarch.PtrSize, lit(1, 0)), lit(1)))
    	verifyMapBucket(t,
    		ArrayOf(64/goarch.PtrSize+1, Tscalarptr), ArrayOf(64/goarch.PtrSize, Tptrscalar),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Ctz64 (Const64 [c])) && config.PtrSize == 4 => (Const32 [int32(ntz64(c))])
    (Ctz32 (Const32 [c])) && config.PtrSize == 4 => (Const32 [int32(ntz32(c))])
    (Ctz16 (Const16 [c])) && config.PtrSize == 4 => (Const32 [int32(ntz16(c))])
    (Ctz8  (Const8  [c])) && config.PtrSize == 4 => (Const32 [int32(ntz8(c))])
    
    (Ctz64 (Const64 [c])) && config.PtrSize == 8 => (Const64 [int64(ntz64(c))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                               opts.op_registry());
      TensorProto value;
      value.set_dtype(dtype);
      for (int dim : shape) {
        value.mutable_tensor_shape()->add_dim()->set_size(dim);
      }
      return opts.WithAttr("value", value)
          .WithAttr("dtype", dtype)
          .FinalizeBuilder(&node_builder);
    }
    
    Node* KnownShape(absl::Span<const int> shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // v.Kind() must be Pointer, Map, Chan, Func, or UnsafePointer
    // if v.Kind() == Pointer, the base type must not be not-in-heap.
    func (v Value) pointer() unsafe.Pointer {
    	if v.typ().Size() != goarch.PtrSize || !v.typ().Pointers() {
    		panic("can't call pointer on a non-pointer Value")
    	}
    	if v.flag&flagIndir != 0 {
    		return *(*unsafe.Pointer)(v.ptr)
    	}
    	return v.ptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    LogicalResult MaxPoolOp::FoldOperandsPermutation(
        ArrayRef<int64_t> permutation) {
      return ::mlir::TF::FoldOperandsPermutation(
          permutation, this, {{"strides", getStrides()}, {"ksize", getKsize()}});
    }
    
    LogicalResult MaxPoolOp::UpdateDataFormat(StringRef new_data_format) {
      StringRef src_data_format = getDataFormat();
    
      auto perm = GetDataFormatPermutation(src_data_format, new_data_format);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return std::nullopt;
    
      xla::Window window;
      for (size_t i = 0; i < window_dimensions.size(); i++) {
        auto dim = window.add_dimensions();
        dim->set_size(window_dimensions[i]);
        if (!window_strides.empty()) {
          dim->set_stride(window_strides[i]);
        } else {
          dim->set_stride(1);
        }
        if (!padding.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. api/go1.3.txt

    pkg debug/plan9obj, type FileHeader struct, Bss uint32
    pkg debug/plan9obj, type FileHeader struct, Entry uint64
    pkg debug/plan9obj, type FileHeader struct, Magic uint32
    pkg debug/plan9obj, type FileHeader struct, PtrSize int
    pkg debug/plan9obj, type Section struct
    pkg debug/plan9obj, type Section struct, embedded SectionHeader
    pkg debug/plan9obj, type Section struct, embedded io.ReaderAt
    pkg debug/plan9obj, type SectionHeader struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	s.Grow(int64(c) + int64(pad))
    	fillnop(s.P[c:], int(pad))
    	return c + pad
    }
    
    func spadjop(ctxt *obj.Link, l, q obj.As) obj.As {
    	if ctxt.Arch.Family != sys.AMD64 || ctxt.Arch.PtrSize == 4 {
    		return l
    	}
    	return q
    }
    
    // isJump returns whether p is a jump instruction.
    // It is used to ensure that no standalone or macro-fused jump will straddle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top