Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for FuncPCABIInternal (0.39 sec)

  1. src/runtime/time.go

    		// so there is no chance of getg().m being reassigned
    		// out from under us while this function executes.
    		tsLocal := &getg().m.p.ptr().timers
    		if tsLocal.raceCtx == 0 {
    			tsLocal.raceCtx = racegostart(abi.FuncPCABIInternal((*timers).run) + sys.PCQuantum)
    		}
    		raceacquirectx(tsLocal.raceCtx, unsafe.Pointer(t))
    	}
    
    	if t.state&(timerModified|timerZombie) != 0 {
    		badTimer()
    	}
    
    	f := t.f
    	arg := t.arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    func findInlinedCall(f any, maxBytes int) (pc uint64, found bool) {
    	fFunc := runtime.FuncForPC(uintptr(abi.FuncPCABIInternal(f)))
    	if fFunc == nil || fFunc.Entry() == 0 {
    		panic("failed to locate function entry")
    	}
    
    	for offset := 0; offset < maxBytes; offset++ {
    		innerPC := fFunc.Entry() + uintptr(offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/reflect/type.go

    						// TODO(sbinet).  Issue 15924.
    						panic("reflect: embedded interface with unexported method(s) not implemented")
    					}
    
    					fnStub := resolveReflectText(unsafe.Pointer(abi.FuncPCABIInternal(embeddedIfaceMethStub)))
    					methods = append(methods, abi.Method{
    						Name: resolveReflectName(ift.nameOff(m.Name)),
    						Mtyp: resolveReflectType(ift.typeOff(m.Typ)),
    						Ifn:  fnStub,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top