- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 82 for 4095 (0.02 sec)
-
src/cmd/asm/internal/asm/testdata/s390x.s
MOVW R1, 4095(R2)(R3) // 50132fff MOVW R1, 4096(R2)(R3) // e31320000150 MOVWZ R1, 4095(R2)(R3) // 50132fff MOVWZ R1, 4096(R2)(R3) // e31320000150 MOVH R1, 4095(R2)(R3) // 40132fff MOVHZ R1, 4095(R2)(R3) // 40132fff MOVH R1, 4096(R2)(R3) // e31320000170 MOVHZ R1, 4096(R2)(R3) // e31320000170 MOVB R1, 4095(R2)(R3) // 42132fff
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Nov 10 17:34:13 UTC 2025 - 96.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64.s
ADDI $-2049, X5 // 938202c09382f2bf ADDI $4094, X5 // 9382f27f9382f27f ADDI $-4096, X5 // 9382028093820280 ADDI $4095, X5 // b71f00009b8fffffb382f201 ADDI $-4097, X5 // b7ffffff9b8fffffb382f201 ADDI $2047, X5, X6 // 1383f27f ADDI $-2048, X5, X6 // 13830280 ADDI $2048, X5, X6 // 1383024013030340 ADDI $-2049, X5, X6 // 138302c01303f3bf ADDI $4094, X5, X6 // 1383f27f1303f37f
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 13 12:17:37 UTC 2025 - 73.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc3.s
MOVW 4096(R5), R4 // 3e000014de971000c4038028 MOVWU 4096(R5), R4 // 3e000014de971000c403802a MOVV 4096(R5), R4 // 3e000014de971000c403c028 MOVB 4096(R5), R4 // 3e000014de971000c4030028 MOVBU 4096(R5), R4 // 3e000014de971000c403002a MOVF y+65540(FP), F4 // 1e020014de8f1000c433002b MOVD y+65540(FP), F4 // 1e020014de8f1000c433802b MOVF y+4097(FP), F4 // 3e000014de8f1000c427002b
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 27 00:46:52 UTC 2025 - 11.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc2.s
ADDV $4096, R4 // 3e00001484f81000 AND $65536, R4, R5 // 1e02001485f81400 AND $4096, R4, R5 // 3e00001485f81400 AND $65536, R4 // 1e02001484f81400 AND $4096, R4 // 3e00001484f81400 SGT $65536, R4, R5 // 1e02001485781200 SGT $4096, R4, R5 // 3e00001485781200 SGT $65536, R4 // 1e02001484781200 SGT $4096, R4 // 3e00001484781200 SGTU $65536, R4, R5 // 1e02001485f81200 SGTU $4096, R4, R5 // 3e00001485f81200
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Nov 27 00:46:52 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
// Prepare buffer with invalid ACE count (> 4096) prepareSecurityDescriptorBufferWithInvalidAceCount(testBuffer, 0); assertThrows(SMBProtocolDecodingException.class, () -> securityDescriptor.decode(testBuffer, 0, testBuffer.length), "Should throw exception for ACE count > 4096"); } @Test @DisplayName("Test getType returns correct value")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
SMBUtil.writeInt4(3, buffer, 0); SMBUtil.writeInt4(4096, buffer, 4); SMBUtil.writeInt4(12288, buffer, 8); int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(3, response.getChunksWritten()); assertEquals(4096, response.getChunkBytesWritten());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
MockitoAnnotations.openMocks(this); when(mockContext.getConfig()).thenReturn(mockConfig); testFileId = new byte[16]; new SecureRandom().nextBytes(testFileId); outputBuffer = new byte[4096]; request = new Smb2ReadRequest(mockConfig, testFileId, outputBuffer, 0); } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
when(config.getFlags2()).thenReturn(0); when(config.getMaxMpxCount()).thenReturn(1); when(config.getSendBufferSize()).thenReturn(4096); when(config.getReceiveBufferSize()).thenReturn(4096); when(config.getTransactionBufferSize()).thenReturn(4096); when(config.isUseUnicode()).thenReturn(true); SmbComNegotiateResponse nego = new SmbComNegotiateResponse(ctx);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
@Test @DisplayName("Package constructor should initialize with binding and handle") void testPackageConstructor() throws Exception { // Given int maxXmit = 4096; int maxRecv = 4096; when(mockHandle.getMaxXmit()).thenReturn(maxXmit); when(mockHandle.getMaxRecv()).thenReturn(maxRecv); // WhenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0)