Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for 2147483647 (0.08 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	ANDS	$0xffff, R2                         // ANDS	$65535, R2                      // 423c40f2
    	AND	$0x7fffffff, R3                     // AND	$2147483647, R3                 // 63784092
    	ANDS	$0x0ffffffff80000000, R2            // ANDS	$-2147483648, R2                // 428061f2
    	AND	$0xfffff, R2                        // AND	$1048575, R2                    // 424c4092
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Jul 24 18:45:14 UTC 2024
    - 95.2K bytes
    - Viewed (0)
  2. 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 Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. okhttp/src/test/java/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 Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. 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 Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:49:24 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/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 Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. 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 Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    int64       the set of all signed 64-bit integers (-9223372036854775808 to 9223372036854775807)
    
    float32     the set of all IEEE 754 32-bit floating-point numbers
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (windows-386), const HKEY_CURRENT_USER = 2147483649
    pkg syscall (windows-386), const HKEY_DYN_DATA = 2147483654
    pkg syscall (windows-386), const HKEY_LOCAL_MACHINE = 2147483650
    pkg syscall (windows-386), const HKEY_PERFORMANCE_DATA = 2147483652
    pkg syscall (windows-386), const HKEY_USERS = 2147483651
    pkg syscall (windows-386), const IFF_LOOPBACK = 4
    pkg syscall (windows-386), const IFF_MULTICAST = 16
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top