Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for 0x7fff (0.17 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/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)
  3. 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)
  4. 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)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

     * declared in the POM.
     *
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private static final int MAX_CAP = 0x7fff;
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
        private List<RemoteRepository> repositories;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/a.out.go

    	C_VREG     // vector register (128-bit)
    	C_AREG     // access register (32-bit)
    	C_ZCON     // constant == 0
    	C_SCON     // 0 <= constant <= 0x7fff (positive int16)
    	C_UCON     // constant & 0xffff == 0 (int16 or uint16)
    	C_ADDCON   // 0 > constant >= -0x8000 (negative int16)
    	C_ANDCON   // constant <= 0xffff
    	C_LCON     // constant (int32 or uint32)
    	C_DCON     // constant (int64 or uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/image/draw/draw_test.go

    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x55, 0xff, 0xff, 0xff},
    		color.RGBA{0xff, 0x55, 0xff, 0xff},
    		color.RGBA{0xff, 0xff, 0xff, 0xff},
    	}
    	drawers := map[string]Drawer{
    		"src":             Src,
    		"floyd-steinberg": FloydSteinberg,
    	}
    	sources := map[string]image.Image{
    		"uniform":  &image.Uniform{color.RGBA{0xff, 0x7f, 0xff, 0xff}},
    		"video001": video001,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    // fold extensions and ANDs together
    (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)
    (MOVHUreg (ANDconst [c] x)) => (ANDconst [c&0xffff] x)
    (MOVBreg (ANDconst [c] x)) && c & 0x80   == 0 => (ANDconst [c&0x7f] x)
    (MOVHreg (ANDconst [c] x)) && c & 0x8000 == 0 => (ANDconst [c&0x7fff] x)
    
    // don't extend before store
    (MOVBstore [off] {sym} ptr (MOVBreg x)  mem) => (MOVBstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  9. src/syscall/zerrors_freebsd_riscv64.go

    	IPV6_JOIN_GROUP                   = 0xc
    	IPV6_LEAVE_GROUP                  = 0xd
    	IPV6_MAXHLIM                      = 0xff
    	IPV6_MAXOPTHDR                    = 0x800
    	IPV6_MAXPACKET                    = 0xffff
    	IPV6_MAX_GROUP_SRC_FILTER         = 0x200
    	IPV6_MAX_MEMBERSHIPS              = 0xfff
    	IPV6_MAX_SOCK_SRC_FILTER          = 0x80
    	IPV6_MIN_MEMBERSHIPS              = 0x1f
    	IPV6_MMTU                         = 0x500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 67.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go

    	IPV6_JOIN_GROUP                = 0xc
    	IPV6_LEAVE_GROUP               = 0xd
    	IPV6_MAXHLIM                   = 0xff
    	IPV6_MAXOPTHDR                 = 0x800
    	IPV6_MAXPACKET                 = 0xffff
    	IPV6_MAX_GROUP_SRC_FILTER      = 0x200
    	IPV6_MAX_MEMBERSHIPS           = 0xfff
    	IPV6_MAX_SOCK_SRC_FILTER       = 0x80
    	IPV6_MMTU                      = 0x500
    	IPV6_MSFILTER                  = 0x4a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
Back to top