Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/utils.go

    		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 := xfixl
    		if strl < maxl {
    			maxl = strl
    		}
    		// compare letters
    		if pre {
    			// prefix, iterate left to right
    			for i := 0; i < maxl; i++ {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:22:04 UTC 2024
    - 31.9K 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 Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (1)
Back to top