Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rabbit (0.2 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    	MULWB	R1, R2, R3           // a20123e1
    	MULWT	R1, R2, R3           // e20123e1
    
    // REV
    	REV	R1, R2               // 312fbfe6
    	REV16	R1, R2               // b12fbfe6
    	REVSH	R1, R2               // b12fffe6
    	RBIT	R1, R2               // 312fffe6
    
    // XTAB/XTAH/XTABU/XTAHU
    	XTAB	R2@>0, R8            // 7280a8e6
    	XTAB	R2@>8, R8            // 7284a8e6
    	XTAB	R2@>16, R8           // 7288a8e6
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  3. src/bytes/bytes.go

    		}
    		if s[i+1] == c1 && Equal(s[i:i+n], sep) {
    			return i
    		}
    		i++
    		fails++
    		if fails >= 4+i>>4 && i < t {
    			// Give up on IndexByte, it isn't skipping ahead
    			// far enough to be better than Rabin-Karp.
    			// Experiments (using IndexPeriodic) suggest
    			// the cutover is about 16 byte skips.
    			// TODO: if large prefixes of sep are matching
    			// we should cutover at even larger average skips,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
Back to top