Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for uf (0.02 sec)

  1. src/runtime/symtabinl.go

    		index: pcdatavalue1(u.f, abi.PCDATA_InlTreeIndex, pc, false),
    	}
    }
    
    func (uf inlineFrame) valid() bool {
    	return uf.pc != 0
    }
    
    // next returns the frame representing uf's logical caller.
    func (u *inlineUnwinder) next(uf inlineFrame) inlineFrame {
    	if uf.index < 0 {
    		uf.pc = 0
    		return uf
    	}
    	parentPc := u.inlTree[uf.index].parentPc
    	return u.resolveInternal(u.f.entry() + uintptr(parentPc))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/runtime/symtabinl_test.go

    			// this robust.
    			continue
    		}
    		for ; uf.valid(); uf = u.next(uf) {
    			file, line := u.fileLine(uf)
    			const wantFile = "symtabinl_test.go"
    			if !stringslite.HasSuffix(file, wantFile) {
    				t.Errorf("tiuTest+%#x: want file ...%s, got %s", pc-pc1, wantFile, file)
    			}
    
    			sf := u.srcFunc(uf)
    
    			name := sf.name()
    			const namePrefix = "runtime."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. misc/linkcheck/linkcheck.go

    	if strings.Contains(url, "/devel/release") {
    		return
    	}
    	mu.Lock()
    	defer mu.Unlock()
    	if u, frag, ok := strings.Cut(url, "#"); ok {
    		url = u
    		if frag != "" {
    			uf := urlFrag{url, frag}
    			neededFrags[uf] = append(neededFrags[uf], sourceURL)
    		}
    	}
    	if crawled[url] {
    		return
    	}
    	crawled[url] = true
    
    	wg.Add(1)
    	go func() {
    		urlq <- url
    	}()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. src/runtime/race.go

    func raceSymbolizeCode(ctx *symbolizeCodeContext) {
    	pc := ctx.pc
    	fi := findfunc(pc)
    	if fi.valid() {
    		u, uf := newInlineUnwinder(fi, pc)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && u.isInlined(uf) {
    				// Ignore wrappers, unless we're at the outermost frame of u.
    				// A non-inlined wrapper frame always means we have a physical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. .mailmap

    # Tip for finding duplicates (besides scanning the output of CONTRIBUTORS.md for name
    # duplicates that aren't also email duplicates): scan the output of:
    #   git log --format='%aE - %aN' | sort -uf
    #
    # For explanation on this file format: man git-shortlog
    
    Anand Babu (AB) Periasamy <******@****.***> Anand Babu (AB) Periasamy <******@****.***>
    Anand Babu (AB) Periasamy <******@****.***> <******@****.***>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 09 18:39:42 UTC 2019
    - 835 bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    			if more := skipOrAdd(retPC); !more {
    				break outer
    			}
    			continue
    		}
    
    		u, uf := newInlineUnwinder(fi, callPC)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && elideWrapperCalling(lastFuncID) {
    				// ignore wrappers
    			} else if more := skipOrAdd(uf.pc + 1); !more {
    				break outer
    			}
    			lastFuncID = sf.funcID
    		}
    	}
    	return n
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    	calleeID := abi.FuncIDNormal
    
    	// Remove pc from stk; we'll re-add it below.
    	stk = stk[:len(stk)-1]
    
    	for ; uf.valid(); uf = u.next(uf) {
    		funcID := u.srcFunc(uf).funcID
    		if funcID == abi.FuncIDWrapper && elideWrapperCalling(calleeID) {
    			// ignore wrappers
    		} else {
    			stk = append(stk, uf.pc+1)
    		}
    		calleeID = funcID
    	}
    
    	return stk
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		f := u.frame.fn
    		cgoN := u.cgoCallers(cgoBuf[:])
    
    		// TODO: Why does &u.cache cause u to escape? (Same in traceback2)
    		for iu, uf := newInlineUnwinder(f, u.symPC()); n < len(pcBuf) && uf.valid(); uf = iu.next(uf) {
    			sf := iu.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && elideWrapperCalling(u.calleeFuncID) {
    				// ignore wrappers
    			} else if skip > 0 {
    				skip--
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/preempt.go

    		// It might be possible to preempt any assembly functions
    		// except the ones that have funcFlag_SPWRITE set in f.flag.
    		return false, 0
    	}
    	// Check the inner-most name
    	u, uf := newInlineUnwinder(f, pc)
    	name := u.srcFunc(uf).name()
    	if stringslite.HasPrefix(name, "runtime.") ||
    		stringslite.HasPrefix(name, "runtime/internal/") ||
    		stringslite.HasPrefix(name, "reflect.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    chclc--nx??e&m!bulc??r!k??sopxe?timil?w??fc?g!.&ude?vog???h&d3tbgm--nx?p?t??i!.&ased?bew?ca?etrof,hcs?lim?o&c!.topsgolb,?g??palf,ro?sepnop?ten?ym?zib??b?ordna?p?rdam??l&iub?og?row??m!.&ed,ot,pj,t&a,opsgolb,???n&a&b?l!.citats:.&setis,ved,?,raas???ob?uf??o&of?rp??r&a&c&tiderc?yalcrab??ugnav??ef506w4b--nx?k!.&oc,ude,?jh3a1habgm--nx??of??s!.&dem?gro?moc?ofni?ten?ude?v&og?t???m!kcrem???t!.topsgolb,excwkcc--nx?l??uolc!.&a&bura-vnej.&1ti,abura.rue.1ti,?tcepsrep,xo:.&ku,nt,?,?b&dnevar,ewilek:.sc,,?ci&lc...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top