Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for byName (0.64 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	// Sort for printing.
    	var syms []*objSymbol
    	for s := range symNodes {
    		syms = append(syms, s)
    	}
    	byName := func(a, b *objSymbol) bool {
    		if na, nb := a.sym.Name[0], b.sym.Name[0]; na != nb {
    			return na < nb
    		}
    		return a.sym.Start < b.sym.Start
    	}
    	if maxFuncs < 0 {
    		sort.Sort(orderSyms{syms, byName})
    	} else {
    		byFlatSum := func(a, b *objSymbol) bool {
    			suma, _ := symNodes[a].Sum()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    		if bo&0x17 == 4 { // jump only a CR bit set/unset, no hints (at bits) set.
    			if bi >= 4 {
    				return fmt.Sprintf("B%s CR%d,%s", bcname, bi>>2, args[2])
    			} else {
    				return fmt.Sprintf("B%s %s", bcname, args[2])
    			}
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCCTR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    //
    // Examples of struct field tags and their meanings:
    //
    //	// Field appears in JSON as key "myName".
    //	Field int `json:"myName"`
    //
    //	// Field appears in JSON as key "myName" and
    //	// the field is omitted from the object if its value is empty,
    //	// as defined above.
    //	Field int `json:"myName,omitempty"`
    //
    //	// Field appears in JSON as key "Field" (the default), but
    //	// the field is skipped if empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/debug/gosym/symtab.go

    //
    // The exact method of division of a binary into separate Objs is an internal detail
    // of the symbol table format.
    //
    // In early versions of Go each source file became a different Obj.
    //
    // In Go 1 and Go 1.1, each package produced one Obj for all Go sources
    // and one Obj per C source file.
    //
    // In Go 1.2, there is a single Obj for the entire program.
    type Obj struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/writebarrier.go

    		last.Block = bEnd
    		last.reset(OpWBend)
    		last.Pos = last.Pos.WithNotStmt()
    		last.Type = types.TypeMem
    		last.AddArg(mem)
    
    		// Free all the old stores, except last which became the WBend marker.
    		for _, w := range stores {
    			if w != last {
    				w.resetArgs()
    			}
    		}
    		for _, w := range stores {
    			if w != last {
    				f.freeValue(w)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top