Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 256 for 0x7fff_ffff (0.35 sec)

  1. test/convinline.go

    			}
    			fallthrough
    		case "int32":
    			inputs = append(inputs, "-0x8000_0000", "-0x7fff_ffff", "-0x12_3456", "0x12_3456", "0x7fff_ffff")
    			fallthrough
    		case "int16":
    			inputs = append(inputs, "-0x8000", "-0x7fff", "-0x1234", "0x1234", "0x7fff")
    			fallthrough
    		case "int8":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 13:46:05 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        frame.writeInt(expectedStreamId and 0x7fffffff)
        frame.write(headerBlock, Http2.INITIAL_MAX_FRAME_SIZE.toLong())
    
        // Write the continuation frame, specifying no more frames are expected.
        writeMedium(frame, headerBlock.size.toInt())
        frame.writeByte(Http2.TYPE_CONTINUATION)
        frame.writeByte(FLAG_END_HEADERS)
        frame.writeInt(expectedStreamId and 0x7fffffff)
        frame.writeAll(headerBlock)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

        windowSizeIncrement: Long,
      ) {
        this.withLock {
          if (closed) throw IOException("closed")
          require(windowSizeIncrement != 0L && windowSizeIncrement <= 0x7fffffffL) {
            "windowSizeIncrement == 0 || windowSizeIncrement > 0x7fffffffL: $windowSizeIncrement"
          }
          if (logger.isLoggable(FINE)) {
            logger.fine(
              frameLogWindowUpdate(
                inbound = false,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	DT_PPC64_OPDSZ DynTag = 0x70000002
    	DT_PPC64_OPT   DynTag = 0x70000003
    
    	DT_SPARC_REGISTER DynTag = 0x70000001
    
    	DT_AUXILIARY DynTag = 0x7ffffffd
    	DT_USED      DynTag = 0x7ffffffe
    	DT_FILTER    DynTag = 0x7fffffff
    
    	DT_HIPROC DynTag = 0x7fffffff /* Last processor-specific type. */
    )
    
    var dtStrings = []intName{
    	{0, "DT_NULL"},
    	{1, "DT_NEEDED"},
    	{2, "DT_PLTRELSZ"},
    	{3, "DT_PLTGOT"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm_test.go

    		{memAddr(REG_DI, REG_Z7), Yzvm},
    	}
    
    	oclassTestsAMD64 = []*oclassTest{
    		{immAddr(-200), Ys32},
    		{immAddr(500), Ys32},
    		{immAddr(0x7FFFFFFF), Ys32},
    		{immAddr(0x7FFFFFFF + 1), Yi32},
    		{immAddr(0xFFFFFFFF), Yi32},
    		{immAddr(0xFFFFFFFF + 1), Yi64},
    
    		{regAddr(REG_BPB), Yrb},
    		{regAddr(REG_SIB), Yrb},
    		{regAddr(REG_DIB), Yrb},
    		{regAddr(REG_R8B), Yrb},
    		{regAddr(REG_R12B), Yrb},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite_test.go

    		{0x000000FF, 8, true, 24, 0xFF},
    		{0xF00000FF, 8, true, 24, 0xFF},
    		{0x0F0000FF, 4, false, 0, 0},
    		{0x00000000, 4, false, 0, 0},
    		{0xF0000000, 4, false, 0, 0},
    		{0xF0000000, 32, false, 0, 0},
    		{0xFFFFFFFF, 0, true, 0, 0xFFFFFFFF},
    	}
    	for i, v := range tests {
    		result := mergePPC64AndSrwi(v.and, v.srw)
    		if v.valid && result == 0 {
    			t.Errorf("mergePPC64AndSrwi(Test %d) did not merge", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/fp_test.go

    		a, b, c, d, e, f, g, h, i := conv2Float64_ssa(127, 255, 32767, 65535, 0x7fffffff, 0xffffffff, 0x7fffFFFFffffFFFF, 0xffffFFFFffffFFFF, 3.402823e38)
    		expect64(t, "a", a, 127)
    		expect64(t, "b", b, 255)
    		expect64(t, "c", c, 32767)
    		expect64(t, "d", d, 65535)
    		expect64(t, "e", e, float64(int32(0x7fffffff)))
    		expect64(t, "f", f, float64(uint32(0xffffffff)))
    		expect64(t, "g", g, float64(int64(0x7fffffffffffffff)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  8. test/fixedbugs/issue42876.go

    // run
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    var x = [4]int32{-0x7fffffff, 0x7fffffff, 2, 4}
    
    func main() {
    	if x[0] > x[1] {
    		panic("fail 1")
    	}
    	if x[2]&x[3] < 0 {
    		panic("fail 2") // Fails here
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 22:59:34 UTC 2020
    - 341 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

          throw IOException("FRAME_SIZE_ERROR: $length")
        }
        val type = source.readByte() and 0xff
        val flags = source.readByte() and 0xff
        val streamId = source.readInt() and 0x7fffffff // Ignore reserved bit.
        if (type != TYPE_WINDOW_UPDATE && logger.isLoggable(FINE)) {
          logger.fine(frameLog(true, streamId, length, type, flags))
        }
    
        if (requireSettings && type != TYPE_SETTINGS) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. test/intcvt.go

    	//	chki16(int16(f64), 0)
    
    	chki32(int32(i8), ci8&0xffffffff-1<<32)
    	chki32(int32(i16), ci16&0xffffffff-1<<32)
    	chki32(int32(i32), ci32&0xffffffff-1<<32)
    	chki32(int32(i64), ci64&0xffffffff)
    	chki32(int32(u8), cu8&0xffffffff)
    	chki32(int32(u16), cu16&0xffffffff)
    	chki32(int32(u32), cu32&0xffffffff-1<<32)
    	chki32(int32(u64), cu64&0xffffffff-1<<32)
    	//	chki32(int32(f32), 0)
    	//	chki32(int32(f64), 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
Back to top