Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GoSyntax (0.07 sec)

  1. src/debug/elf/elf.go

    }
    
    const Sym64Size = 24
    
    type intName struct {
    	i uint32
    	s string
    }
    
    func stringName(i uint32, names []intName, goSyntax bool) string {
    	for _, n := range names {
    		if n.i == i {
    			if goSyntax {
    				return "elf." + n.s
    			}
    			return n.s
    		}
    	}
    
    	// second pass - look for smaller to add with.
    	// assume sorted already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top