Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for stksize (0.12 sec)

  1. src/runtime/mbitmap.go

    		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
    		if tp.addr+goarch.PtrSize*ptrBits > limit {
    			bits := (tp.addr + goarch.PtrSize*ptrBits - limit) / goarch.PtrSize
    			tp.mask &^= ((1 << (bits)) - 1) << (ptrBits - bits)
    		}
    	}
    }
    
    // fastForward moves the iterator forward by n bytes. n must be a multiple
    // of goarch.PtrSize. limit must be the same limit passed to next for this
    // iterator.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    		// including off.
    		size = off + goarch.PtrSize
    	}
    	for i := uintptr(0); i < size; i += goarch.PtrSize {
    		// For big objects, just print the beginning (because
    		// that usually hints at the object's type) and the
    		// fields around off.
    		if !(i < 128*goarch.PtrSize || off-16*goarch.PtrSize < i && i < off+16*goarch.PtrSize) {
    			skipped = true
    			continue
    		}
    		if skipped {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		pad := int(Rnd(int64(len(deltaBuf)), int64(d.arch.PtrSize))) - len(deltaBuf)
    		deltaBuf = append(deltaBuf, zeros[:pad]...)
    
    		// Emit the FDE header, Section 6.4.1.
    		//	4 bytes: length, must be multiple of thearch.ptrsize
    		//	4/8 bytes: Pointer to the CIE above, at offset 0
    		//	ptrsize: initial location
    		//	ptrsize: address range
    
    		fdeLength := uint64(4 + 2*d.arch.PtrSize + len(deltaBuf))
    		if isdw64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    		return &Type{Size: 2 * p.PtrSize, Align: p.PtrSize, C: c("GoInterface")}
    	case *ast.MapType:
    		return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("GoMap")}
    	case *ast.ChanType:
    		return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("GoChan")}
    	case *ast.Ident:
    		goTypesFixup := func(r *Type) *Type {
    			if r.Size == 0 { // int or uint
    				rr := new(Type)
    				*rr = *r
    				rr.Size = p.IntSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/reflect/type.go

    		nptr := (abi.MapBucketCount*(1+ktyp.Size_+etyp.Size_) + goarch.PtrSize) / goarch.PtrSize
    		n := (nptr + 7) / 8
    
    		// Runtime needs pointer masks to be a multiple of uintptr in size.
    		n = (n + goarch.PtrSize - 1) &^ (goarch.PtrSize - 1)
    		mask := make([]byte, n)
    		base := uintptr(abi.MapBucketCount / goarch.PtrSize)
    
    		if ktyp.Pointers() {
    			emitGCMask(mask, base, ktyp, abi.MapBucketCount)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    		listSym.WriteAddr(ctxt, listSym.Size, ctxt.Arch.PtrSize, startPC, 0)
    	}
    
    	// Re-read list, translating its address from block/value ID to PC.
    	for i := 0; i < len(list); {
    		begin := getPC(decodeValue(ctxt, readPtr(ctxt, list[i:])))
    		end := getPC(decodeValue(ctxt, readPtr(ctxt, list[i+ctxt.Arch.PtrSize:])))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			}
    		}
    		if t.Align = t.Size; t.Align >= c.ptrSize {
    			t.Align = c.ptrSize
    		}
    
    	case *dwarf.PtrType:
    		// Clang doesn't emit DW_AT_byte_size for pointer types.
    		if t.Size != c.ptrSize && t.Size != -1 {
    			fatalf("%s: unexpected: %d-byte pointer type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Size = c.ptrSize
    		t.Align = c.ptrSize
    
    		if _, ok := base(dt.Type).(*dwarf.VoidType); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_test.cc

       public:
        static ::tensorflow::TensorProto GenerateTensorProto() {
          ::tensorflow::TensorProto tensor_proto;
          tensor_proto.mutable_tensor_shape()->add_dim()->set_size(2);
          tensor_proto.mutable_tensor_shape()->add_dim()->set_size(3);
          tensor_proto.set_dtype(DT_INT32);
          tensor_proto.add_int_val(1);
          tensor_proto.add_int_val(2);
          tensor_proto.add_int_val(3);
          tensor_proto.add_int_val(4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	heapArenaBitmapWords = heapArenaWords / (8 * goarch.PtrSize)
    
    	pagesPerArena = heapArenaBytes / pageSize
    
    	// arenaL1Bits is the number of bits of the arena number
    	// covered by the first level arena map.
    	//
    	// This number should be small, since the first level arena
    	// map requires PtrSize*(1<<arenaL1Bits) of space in the
    	// binary's BSS. It can be zero, in which case the first level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		// runtime.tlsg is used for external linking on platforms that do not define
    		// a variable to hold g in assembly (currently only intel).
    		if sb.Type() == 0 {
    			sb.SetType(sym.STLSBSS)
    			sb.SetSize(int64(ctxt.Arch.PtrSize))
    		} else if sb.Type() != sym.SDYNIMPORT {
    			Errorf(nil, "runtime declared tlsg variable %v", sb.Type())
    		}
    		ctxt.loader.SetAttrReachable(tlsg, true)
    		ctxt.Tlsg = tlsg
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top