Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for 0x7fff (0.23 sec)

  1. src/image/decode_example_test.go

    	// bin               red  green   blue  alpha
    	// 0x0000-0x0fff:    364    790   7242      0
    	// 0x1000-0x1fff:    645   2967   1039      0
    	// 0x2000-0x2fff:   1072   2299    979      0
    	// 0x3000-0x3fff:    820   2266    980      0
    	// 0x4000-0x4fff:    537   1305    541      0
    	// 0x5000-0x5fff:    319    962    261      0
    	// 0x6000-0x6fff:    322    375    177      0
    	// 0x7000-0x7fff:    601    279    214      0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 03:16:17 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. src/image/image_test.go

    			SetRGBA64(x, y int, c color.RGBA64)
    		}:
    			tc.SetRGBA64(1, 1, color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF})
    
    		case *NYCbCrA:
    			memset(tc.YCbCr.Y, 0x77)
    			memset(tc.YCbCr.Cb, 0x88)
    			memset(tc.YCbCr.Cr, 0x99)
    			memset(tc.A, 0xAA)
    
    		case *Uniform:
    			tc.C = color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF}
    
    		case *YCbCr:
    			memset(tc.Y, 0x77)
    			memset(tc.Cb, 0x88)
    			memset(tc.Cr, 0x99)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top