Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for Malloc (0.12 sec)

  1. src/testing/benchmark.go

    		return 0
    	}
    	return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds()
    }
    
    // AllocsPerOp returns the "allocs/op" metric,
    // which is calculated as r.MemAllocs / r.N.
    func (r BenchmarkResult) AllocsPerOp() int64 {
    	if v, ok := r.Extra["allocs/op"]; ok {
    		return int64(v)
    	}
    	if r.N <= 0 {
    		return 0
    	}
    	return int64(r.MemAllocs) / int64(r.N)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
    // In the child, this function must not acquire any locks, because
    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to RawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    // bytes with any other objects, allowing the GC program execution to
    // assume an aligned start and not use atomic operations. In the current
    // runtime, this means all malloc size classes larger than the cutoff must
    // be multiples of four words. On 32-bit systems that's 16 bytes, and
    // all size classes >= 16 bytes are 16-byte aligned, so no real constraint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    		for p[0] != 0 {
    			p = p[1:]
    		}
    		p = p[1:] // skip nil byte
    	}
    
    	stdcall1(_FreeEnvironmentStringsW, uintptr(strings))
    
    	// We call these all the way here, late in init, so that malloc works
    	// for the callback functions these generate.
    	var fn any = ctrlHandler
    	ctrlHandlerPC := compileCallback(*efaceOf(&fn), true)
    	stdcall2(_SetConsoleCtrlHandler, ctrlHandlerPC, 1)
    
    	monitorSuspendResume()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    			// hchan locks. Normally, we only allow acquiring hchan
    			// locks and then getting a gscan bit. In this case, we
    			// already have the gscan bit. We allow acquiring hchan
    			// locks here as a special case, since a deadlock can't
    			// happen because the G involved must already be
    			// suspended. So, we get a special hchan lock rank here
    			// that is lower than gscan, but doesn't allow acquiring
    			// any other locks other than hchan.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	}
    
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Log("skipping AllocsPerRun checks; GOMAXPROCS>1")
    		return
    	}
    
    	for _, test := range tests {
    		allocs := testing.AllocsPerRun(100, func() { filepath.Clean(test.result) })
    		if allocs > 0 {
    			t.Errorf("Clean(%q): %v allocs, want zero", test.result, allocs)
    		}
    	}
    }
    
    type IsLocalTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    		// signals then delivers them itself by calling
    		// the signal handler directly when C code,
    		// including C code called via cgo, calls a
    		// TSAN-intercepted function such as malloc.
    		//
    		// We check this condition last as g0.stack.lo
    		// may be not very accurate (see mstart).
    		st := stackt{ss_size: mp.g0.stack.hi - mp.g0.stack.lo}
    		setSignalstackSP(&st, mp.g0.stack.lo)
    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/runtime/runtime2.go

    	// to allocate gcAssistBytes bytes without assisting. If this
    	// is negative, then the G must correct this by performing
    	// scan work. We track this in bytes to make it fast to update
    	// and check for debt in the malloc hot path. The assist ratio
    	// determines how this corresponds to scan work debt.
    	gcAssistBytes int64
    }
    
    // gTrackingPeriod is the number of transitions out of _Grunning between
    // latency tracking runs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    				livedefer.Set(int32(i))
    			}
    			if n.IsOutputParamHeapAddr() {
    				// This variable will be overwritten early in the function
    				// prologue (from the result of a mallocgc) but we need to
    				// zero it in case that malloc causes a stack scan.
    				n.SetNeedzero(true)
    				livedefer.Set(int32(i))
    			}
    			if n.OpenDeferSlot() {
    				// Open-coded defer args slots must be live
    				// everywhere in a function, since a panic can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations-stress.test

    	data="runtime.(*wakeableSleep).sleep"
    String id=143
    	data="runtime.traceStartReadCPU.func1"
    String id=144
    	data="runtime.newobject"
    String id=145
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/malloc.go"
    String id=146
    	data="sync.(*Mutex).Unlock"
    String id=147
    	data="runtime/trace.Start.func1"
    String id=148
    	data="runtime.traceLocker.Gomaxprocs"
    String id=149
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top