Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/utils.go

    	if len(strs) == 1 {
    		return xfix
    	}
    	// compare first to rest
    	for _, str := range strs[1:] {
    		xfixl := len(xfix)
    		strl := len(str)
    		// short-circuit empty strings
    		if xfixl == 0 || strl == 0 {
    			return ""
    		}
    		// maximum possible length
    		maxl := min(strl, xfixl)
    		// compare letters
    		if pre {
    			// prefix, iterate left to right
    			for i := range maxl {
    				if xfix[i] != str[i] {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	STRW DX                                 // 660f00ca
    	STRW R11                                // 66410f00cb
    	STRL (BX)                               // 0f000b
    	STRL (R11)                              // 410f000b
    	STRL DX                                 // 0f00ca
    	STRL R11                                // 410f00cb
    	STRQ (BX)                               // 480f000b
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (1)
Back to top