Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _ZN (0.01 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func oldRustToString(name string, options []Option) (string, bool) {
    	max := 0
    	for _, o := range options {
    		if isMaxLength(o) {
    			max = maxLength(o)
    		}
    	}
    
    	// We know that the string starts with _ZN.
    	name = name[3:]
    
    	hexDigit := func(c byte) (byte, bool) {
    		switch {
    		case c >= '0' && c <= '9':
    			return c - '0', true
    		case c >= 'a' && c <= 'f':
    			return c - 'a' + 10, true
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		return rustToString(name, options)
    	}
    
    	// Check for an old-style Rust mangled name.
    	// It starts with _ZN and ends with "17h" followed by 16 hex digits
    	// followed by "E" followed by an optional suffix starting with "."
    	// (which we ignore).
    	if strings.HasPrefix(name, "_ZN") {
    		rname := name
    		if pos := strings.LastIndex(rname, "E."); pos > 0 {
    			rname = rname[:pos+1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top