- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 60 for 2147483648 (0.05 sec)
-
api/go1.17.txt
pkg math (linux-arm), const MaxInt = 2147483647 pkg math (linux-arm), const MaxUint = 4294967295 pkg math (linux-arm), const MinInt = -2147483648 pkg math (linux-arm-cgo), const MaxInt = 2147483647 pkg math (linux-arm-cgo), const MaxUint = 4294967295 pkg math (linux-arm-cgo), const MinInt = -2147483648 pkg math (netbsd-386), const MaxInt = 2147483647 pkg math (netbsd-386), const MaxUint = 4294967295
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 18K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/386enc.s
// On non-64bit arch, Go asm allowed uint32 offsets instead of int32. // These tests check that property for backwards-compatibility. MOVL 2147483648(AX), AX // 8b8000000080 MOVL -2147483648(AX), AX // 8b8000000080 ADDL 2147483648(AX), AX // 038000000080 ADDL -2147483648(AX), AX // 038000000080 // Make sure MOV CR/DR continues to work after changing its movtabs. MOVL CR0, AX // 0f20c0 MOVL CR0, DX // 0f20c2
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Apr 11 18:32:50 UTC 2023 - 1.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64.s
MOVW $1234567, R5 // 6405001260a5d687 or 0600001238a0d687 // Hex constant 0x80000001 MOVW $2147483649, R5 // 6405800060a50001 or 0600800038a00001 MOVD $2147483649, R5 // 6405800060a50001 or 0600800038a00001 // Hex constant 0xFFFFFFFF80000001 MOVD $-2147483647, R5 // 3ca0800060a50001 or 0603800038a00001 // Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 51.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ResponseBodyJvmTest.kt
} assertFailsWith<IOException> { body.bytes() }.also { expected -> assertThat(expected.message).isEqualTo( "Cannot buffer entire body for content length: 2147483648", ) } } @Test fun byteStringEmpty() { val body = body("") assertThat(body.byteString()).isEqualTo(ByteString.EMPTY) } @Test fun byteStringSeesBom() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/s390x.s
MULLW $8192, R6 // a76c2000 MULLW $8192, R6, R7 // 1876a77c2000 MULLW $-32769, R8 // c281ffff7fff MULLW $-32769, R8, R9 // 1898c291ffff7fff MULLD $-2147483648, R1 // c21080000000 MULLD $-2147483648, R1, R2 // b9040021c22080000000 MULHD R9, R8 // b90400b8b98600a9ebb9003f000ab98000b8b90900abebb8003f000ab98000b9b9e9b08a
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jul 30 19:29:15 UTC 2025 - 22.9K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (freebsd-386), const NAME_MAX = 255 pkg syscall (freebsd-386), const NAME_MAX ideal-int pkg syscall (freebsd-386), const O_CLOEXEC = 1048576 pkg syscall (freebsd-386), const RTF_GWFLAG_COMPAT = 2147483648 pkg syscall (freebsd-386), const RTF_GWFLAG_COMPAT ideal-int pkg syscall (freebsd-386), const RT_NORTREF = 2 pkg syscall (freebsd-386), const RT_NORTREF ideal-int pkg syscall (freebsd-386), const SIGLIBRT = 33
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertTrue(result.endsWith("]")); } @ParameterizedTest @DisplayName("Test constants values") @CsvSource({ "SV_TYPE_ALL, -1", "SV_TYPE_DOMAIN_ENUM, -2147483648" }) void testConstants(String constantName, int expectedValue) { if ("SV_TYPE_ALL".equals(constantName)) { assertEquals(expectedValue, NetServerEnum2.SV_TYPE_ALL);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/IntMathTest.java
// Skip some tests that fail due to GWT's non-compliant int implementation. // TODO(cpovirk): does this test fail for only some rounding modes or for all? if (p == -2147483648 && q == -1 && intsCanGoOutOfRange()) { continue; } int expected = new BigDecimal(valueOf(p)).divide(new BigDecimal(valueOf(q)), 0, mode).intValue();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 24.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
assertFailsWith<IOException> { reader.nextFrame(requireSettings = false, BaseTestHandler()) }.also { expected -> assertThat(expected.message).isEqualTo( "PROTOCOL_ERROR SETTINGS_MAX_FRAME_SIZE: -2147483648", ) } } @Test fun readSettingsFrameTooShortFrameLength() { writeMedium(frame, 6) // 2 for the code and 4 for the value frame.writeByte(Http2.TYPE_SETTINGS)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
byte[] buffer = new byte[24]; // alloc (8 bytes) - 0x0000000100000000 (4294967296) buffer[4] = 0x01; // free (8 bytes) - 0x0000000080000000 (2147483648) buffer[12] = (byte) 0x80; // sectPerAlloc (4 bytes) - 8 buffer[16] = 0x08; // bytesPerSect (4 bytes) - 512 buffer[20] = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)