Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for 0x7fff (0.08 sec)

  1. test/convinline.go

    			fallthrough
    		case "int16":
    			inputs = append(inputs, "-0x8000", "-0x7fff", "-0x1234", "0x1234", "0x7fff")
    			fallthrough
    		case "int8":
    			inputs = append(inputs, "-0x80", "-0x7f", "-0x12", "-1", "0", "1", "0x12", "0x7f")
    
    		case "uint64", "uint", "uintptr":
    			if t1 == "uint64" || bits.UintSize == 64 {
    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. src/runtime/vdso_linux.go

    			aux := (*elfVerdaux)(add(unsafe.Pointer(def), uintptr(def.vd_aux)))
    			if def.vd_hash == ver.verHash && ver.version == gostringnocopy(&info.symstrings[aux.vda_name]) {
    				return int32(def.vd_ndx & 0x7fff)
    			}
    		}
    
    		if def.vd_next == 0 {
    			break
    		}
    		def = (*elfVerdef)(add(unsafe.Pointer(def), uintptr(def.vd_next)))
    	}
    
    	return -1 // cannot match any version
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. src/runtime/debuglog_test.go

    	skipDebugLog(t)
    	runtime.ResetDebugLog()
    	var varString = strings.Repeat("a", 4)
    	runtime.Dlog().B(true).B(false).I(-42).I16(0x7fff).U64(^uint64(0)).Hex(0xfff).P(nil).S(varString).S("const string").End()
    	got := dlogCanonicalize(runtime.DumpDebugLog())
    	if want := "[] true false -42 32767 18446744073709551615 0xfff 0x0 aaaa const string\n"; got != want {
    		t.Fatalf("want %q, got %q", want, got)
    	}
    }
    
    func TestDebugLogSym(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. test/codegen/noextend.go

    	var ret int64
    
    	// arm64:-"MOVW"
    	ret += int64(t1 & 1)
    
    	// arm64:-"MOVW"
    	ret += int64(int32(x & 0x7fffffff))
    
    	// arm64:-"MOVH"
    	ret += int64(int16(x & 0x7fff))
    
    	// arm64:-"MOVB"
    	ret += int64(int8(x & 0x7f))
    
    	return ret
    }
    
    // corner cases that sign extension must not be omitted
    
    func shouldSignEXT(x int) int64 {
    	t1 := int32(x)
    
    	var ret int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. src/image/draw/bench_test.go

    					uint8((11*x + 13*y) % 0x80),
    					0x7f,
    				})
    			}
    		}
    		src = src1
    	case color.RGBA64Model:
    		src1 := image.NewRGBA64(image.Rect(0, 0, srcw, srch))
    		for y := 0; y < srch; y++ {
    			for x := 0; x < srcw; x++ {
    				src1.SetRGBA64(x, y, color.RGBA64{
    					uint16(103 * x % 0x8000),
    					uint16(101 * y % 0x8000),
    					uint16((101*x + 103*y) % 0x8000),
    					0x7fff,
    				})
    			}
    		}
    		src = src1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

          0xffffffc, 0xfffe6, 0x3fffd2, 0xfffe7, 0xfffe8, 0x3fffd3, 0x3fffd4, 0x3fffd5, 0x7fffd9,
          0x3fffd6, 0x7fffda, 0x7fffdb, 0x7fffdc, 0x7fffdd, 0x7fffde, 0xffffeb, 0x7fffdf,
          0xffffec, 0xffffed, 0x3fffd7, 0x7fffe0, 0xffffee, 0x7fffe1, 0x7fffe2, 0x7fffe3,
          0x7fffe4, 0x1fffdc, 0x3fffd8, 0x7fffe5, 0x3fffd9, 0x7fffe6, 0x7fffe7, 0xffffef,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	0x3fffd3,
    	0x3fffd4,
    	0x3fffd5,
    	0x7fffd9,
    	0x3fffd6,
    	0x7fffda,
    	0x7fffdb,
    	0x7fffdc,
    	0x7fffdd,
    	0x7fffde,
    	0xffffeb,
    	0x7fffdf,
    	0xffffec,
    	0xffffed,
    	0x3fffd7,
    	0x7fffe0,
    	0xffffee,
    	0x7fffe1,
    	0x7fffe2,
    	0x7fffe3,
    	0x7fffe4,
    	0x1fffdc,
    	0x3fffd8,
    	0x7fffe5,
    	0x3fffd9,
    	0x7fffe6,
    	0x7fffe7,
    	0xffffef,
    	0x3fffda,
    	0x1fffdd,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. src/unicode/utf16/utf16_test.go

    }
    
    var encodeTests = []encodeTest{
    	{[]rune{1, 2, 3, 4}, []uint16{1, 2, 3, 4}},
    	{[]rune{0xffff, 0x10000, 0x10001, 0x12345, 0x10ffff},
    		[]uint16{0xffff, 0xd800, 0xdc00, 0xd800, 0xdc01, 0xd808, 0xdf45, 0xdbff, 0xdfff}},
    	{[]rune{'a', 'b', 0xd7ff, 0xd800, 0xdfff, 0xe000, 0x110000, -1},
    		[]uint16{'a', 'b', 0xd7ff, 0xfffd, 0xfffd, 0xe000, 0xfffd, 0xfffd}},
    }
    
    func TestEncode(t *testing.T) {
    	for _, tt := range encodeTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/PercentEscaper.java

          return PLUS_SIGN;
        } else if (cp <= 0x7F) {
          // Single byte UTF-8 characters
          // Start with "%--" and fill in the blanks
          char[] dest = new char[3];
          dest[0] = '%';
          dest[2] = UPPER_HEX_DIGITS[cp & 0xF];
          dest[1] = UPPER_HEX_DIGITS[cp >>> 4];
          return dest;
        } else if (cp <= 0x7ff) {
          // Two byte UTF-8 characters [cp >= 0x80 && cp <= 0x7ff]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/PercentEscaper.java

          return PLUS_SIGN;
        } else if (cp <= 0x7F) {
          // Single byte UTF-8 characters
          // Start with "%--" and fill in the blanks
          char[] dest = new char[3];
          dest[0] = '%';
          dest[2] = UPPER_HEX_DIGITS[cp & 0xF];
          dest[1] = UPPER_HEX_DIGITS[cp >>> 4];
          return dest;
        } else if (cp <= 0x7ff) {
          // Two byte UTF-8 characters [cp >= 0x80 && cp <= 0x7ff]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top