Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for heapUp (0.17 sec)

  1. src/reflect/value.go

    		return x
    	case Pointer:
    		ptr := v.ptr
    		if v.flag&flagIndir != 0 {
    			if v.typ().IfaceIndir() {
    				// This is a pointer to a not-in-heap object. ptr points to a uintptr
    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    var inittrace tracestat
    
    type tracestat struct {
    	active bool   // init tracing activation status
    	id     uint64 // init goroutine id
    	allocs uint64 // heap allocations
    	bytes  uint64 // heap allocated bytes
    }
    
    func doInit(ts []*initTask) {
    	for _, t := range ts {
    		doInit1(t)
    	}
    }
    
    func doInit1(t *initTask) {
    	switch t.state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    "uid":"${datasource}"},"expr":"go_memstats_heap_sys_bytes{app=\"istiod\"}","format":"time_series","hide":true,"intervalFactor":2,"legendFormat":"heap sys","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"go_memstats_heap_alloc_bytes{app=\"istiod\"}","format":"time_series","hide":true,"intervalFactor":2,"legendFormat":"heap alloc","refId":"D"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"go_memstats_alloc_bytes{app=\"istiod\"}","format":"time_ser...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	writeDatblkToOutBuf(ctxt, out, addr, size)
    }
    
    // Used only on Wasm for now.
    func DatblkBytes(ctxt *Link, addr int64, size int64) []byte {
    	buf := make([]byte, size)
    	out := &OutBuf{heap: buf}
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    	return buf
    }
    
    func writeDatblkToOutBuf(ctxt *Link, out *OutBuf, addr int64, size int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    // during compilation to ensure correctness.
    // Take care that overlapping moves are preserved.
    // Restrict this optimization to the stack, to avoid duplicating loads from the heap;
    // see CL 145208 for discussion.
    (Move {t1} [s] dst tmp1 midmem:(Move {t2} [s] tmp2 src _))
    	&& t1.Compare(t2) == types.CMPeq
    	&& isSamePtr(tmp1, tmp2)
    	&& isStackPtr(src) && !isVolatile(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		a.Reg += REG_AX - REG_AL
    		*t = 0
    	}
    }
    
    const (
    	movLit uint8 = iota // Like Zlit
    	movRegMem
    	movMemReg
    	movRegMem2op
    	movMemReg2op
    	movFullPtr // Load full pointer, trash heap (unsupported)
    	movDoubleShift
    	movTLSReg
    )
    
    var ymovtab = []movtab{
    	// push
    	{APUSHL, Ycs, Ynone, Ynone, movLit, [4]uint8{0x0e, 0}},
    	{APUSHL, Yss, Ynone, Ynone, movLit, [4]uint8{0x16, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	pi.X.Inner = nil
    
    	// Set up an interface value that will cause a crash.
    	// P1 = 1 is a non-zero, so the interface looks non-nil.
    	// P2 = pi ensures that the data word points into the
    	// allocated heap; if not the collection skips the interface
    	// value as irrelevant, without dereferencing P1.
    	pi.P1 = 1
    	pi.P2 = uintptr(unsafe.Pointer(pi))
    }
    
    func TestCallMethodJump(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top