Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 20 (0.13 sec)

  1. src/bytes/buffer_test.go

    		buf.Truncate(26)
    		check(t, "TestBasicOperations (7)", &buf, testString[0:26])
    
    		buf.Truncate(20)
    		check(t, "TestBasicOperations (8)", &buf, testString[0:20])
    
    		empty(t, "TestBasicOperations (9)", &buf, testString[0:20], make([]byte, 5))
    		empty(t, "TestBasicOperations (10)", &buf, "", make([]byte, 100))
    
    		buf.WriteByte(testString[1])
    		c, err := buf.ReadByte()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Verify the supported forms of bcclr[l]
    	BC $20,CR0LT,$1,LR              // 4e800820
    	BC $20,CR0LT,$0,LR              // 4e800020
    	BC $20,CR0LT,LR                 // 4e800020
    	BC $20,CR0GT,LR                 // 4e810020
    	BC 20,CR0LT,LR                  // BC $20,CR0LT,LR // 4e800020
    	BC 20,undefined_symbol,LR       // BC $20,CR0LT,LR // 4e800020
    	BC 20,undefined_symbol+1,LR     // BC $20,CR0GT,LR // 4e810020
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
Back to top