Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rno (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			rno = uint16(r)
    		} else {
    			rno = uint16(inst.Args[0].(RegSP))
    		}
    		if rno <= uint16(WZR) {
    			op = "MOVW" + suffix
    		} else if rno >= uint16(B0) && rno <= uint16(B31) {
    			op = "FMOVB" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(H0) && rno <= uint16(H31) {
    			op = "FMOVH" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(S0) && rno <= uint16(S31) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/LineBufferTest.java

        bufferHelper(
            "\nempty first line\nno newline at end", "\n", "empty first line\n", "no newline at end");
        bufferHelper("three\rlines\rno newline at end", "three\r", "lines\r", "no newline at end");
        bufferHelper("mixed\nline\rendings\r\n", "mixed\n", "line\r", "endings\r\n");
      }
    
      private static final int[] CHUNK_SIZES = {1, 2, 3, Integer.MAX_VALUE};
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/LineBufferTest.java

        bufferHelper(
            "\nempty first line\nno newline at end", "\n", "empty first line\n", "no newline at end");
        bufferHelper("three\rlines\rno newline at end", "three\r", "lines\r", "no newline at end");
        bufferHelper("mixed\nline\rendings\r\n", "mixed\n", "line\r", "endings\r\n");
      }
    
      private static final int[] CHUNK_SIZES = {1, 2, 3, Integer.MAX_VALUE};
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    		readTo := func(delim byte, want string) {
    			data, err := read(r, delim)
    			if err != nil {
    				t.Fatalf("#%d: unexpected error reading to %c: %v", rno, delim, err)
    			}
    			if got := string(data); got != want {
    				t.Fatalf("#%d: got %q, want %q", rno, got, want)
    			}
    		}
    
    		// Read the data with occasional UnreadByte calls.
    		for i := 0; i < n; i++ {
    			readTo('d', "abcd")
    			for j := 0; j < 3; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top