Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for adjustpointer (0.2 sec)

  1. src/runtime/stack.go

    	// We need to do this first because we need to adjust the
    	// defer.link fields so we always work on the new stack.
    	adjustpointer(adjinfo, unsafe.Pointer(&gp._defer))
    	for d := gp._defer; d != nil; d = d.link {
    		adjustpointer(adjinfo, unsafe.Pointer(&d.fn))
    		adjustpointer(adjinfo, unsafe.Pointer(&d.sp))
    		adjustpointer(adjinfo, unsafe.Pointer(&d.link))
    	}
    }
    
    func adjustpanics(gp *g, adjinfo *adjustinfo) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    			"alignDown",
    			"alignUp",
    			"bucketMask",
    			"bucketShift",
    			"chanbuf",
    			"evacuated",
    			"fastlog2",
    			"float64bits",
    			"funcspdelta",
    			"getm",
    			"getMCache",
    			"isDirectIface",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top