Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reader__size (0.06 sec)

  1. doc/asm.html

    For example, consider the following Go definition:
    </p>
    
    <pre>
    type reader struct {
    	buf [bufSize]byte
    	r   int
    }
    </pre>
    
    <p>
    Assembly can refer to the size of this struct
    as <code>reader__size</code> and the offsets of the two fields
    as <code>reader_buf</code> and <code>reader_r</code>.
    Hence, if register <code>R1</code> contains a pointer to
    a <code>reader</code>, assembly can reference the <code>r</code> field
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                int totalBytes = copy.encode(buffer, 0);
    
                // Then
                assertEquals(HEADER_SIZE + 20 + 24 + 22, totalBytes);
                verify(mockChunk1).encode(buffer, HEADER_SIZE);
                verify(mockChunk2).encode(buffer, HEADER_SIZE + 20);
                verify(mockChunk3).encode(buffer, HEADER_SIZE + 20 + 24);
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top