Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 17h (0.02 sec)

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

    		case c >= '0' && c <= '9':
    			return c - '0', true
    		case c >= 'a' && c <= 'f':
    			return c - 'a' + 10, true
    		default:
    			return 0, false
    		}
    	}
    
    	// We know that the strings end with "17h" followed by 16 characters
    	// followed by "E". We check that the 16 characters are all hex digits.
    	// Also the hex digits must contain at least 5 distinct digits.
    	seen := uint16(0)
    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

    	// 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]
    		}
    		if strings.HasSuffix(rname, "E") && len(rname) > 23 && rname[len(rname)-20:len(rname)-17] == "17h" {
    			noRust := false
    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