Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 0x7fff (0.12 sec)

  1. 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)
  2. src/cmd/internal/obj/ppc64/obj9.go

    		// Try converting MOVD $const,Rx into ADDIS/ORIS $s32>>16,R0,Rx
    		switch {
    		case isS32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AADDIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isU32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AORIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isS32 || isU32 || isS34:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/unicode/utf8/utf8.go

    	UTFMax    = 4            // maximum number of bytes of a UTF-8 encoded Unicode character.
    )
    
    // Code points in the surrogate range are not valid for UTF-8.
    const (
    	surrogateMin = 0xD800
    	surrogateMax = 0xDFFF
    )
    
    const (
    	t1 = 0b00000000
    	tx = 0b10000000
    	t2 = 0b11000000
    	t3 = 0b11100000
    	t4 = 0b11110000
    	t5 = 0b11111000
    
    	maskx = 0b00111111
    	mask2 = 0b00011111
    	mask3 = 0b00001111
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    // does a -1 shadowRange, which is what sparsemap.get returns
    // on a failed lookup).
    type shadowRange int32
    
    func (sr shadowRange) lo() int64 {
    	return int64(sr & 0xffff)
    }
    
    func (sr shadowRange) hi() int64 {
    	return int64((sr >> 16) & 0xffff)
    }
    
    // contains reports whether [lo:hi] is completely within sr.
    func (sr shadowRange) contains(lo, hi int64) bool {
    	return lo >= sr.lo() && hi <= sr.hi()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages_test.go

    	}
    	if rand.Intn(10) > 5 {
    		m.extendedMasterSecret = true
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		m.supportedVersions = append(m.supportedVersions, uint16(rand.Intn(0xffff)+1))
    	}
    	if rand.Intn(10) > 5 {
    		m.cookie = randomBytes(rand.Intn(500)+1, rand)
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		var ks keyShare
    		ks.group = CurveID(rand.Intn(30000) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/image/png/writer.go

    						d[3] = 0
    					} else if s[3] == 0xff {
    						copy(d[:], s[:])
    					} else {
    						// This code does the same as color.NRGBAModel.Convert(
    						// rgba.At(x, y)).(color.NRGBA) but with no extra memory
    						// allocations or interface/function call overhead.
    						//
    						// The multiplier m combines 0x101 (which converts
    						// 8-bit color to 16-bit color) and 0xffff (which, when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

          checkArgument(
              (port >= 0) && (port <= 0xffff), "port '%s' is out of range (0 <= port <= 0xffff)", port);
          checkArgument(
              (flags >= 0) && (flags <= 0xffff),
              "flags '%s' is out of range (0 <= flags <= 0xffff)",
              flags);
    
          this.server = MoreObjects.firstNonNull(server, ANY4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/image/gif/writer_test.go

    	pals := []color.Palette{{
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x01, 0x00, 0x00, 0xff},
    		color.RGBA{0x02, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x00, 0x01, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x03, 0xff},
    		color.RGBA{0x00, 0x00, 0x02, 0xff},
    		color.RGBA{0x00, 0x00, 0x01, 0xff},
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x10, 0x07, 0xf0, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.DWORD, Name: "Dword3", Value: uint64(0xff)},
    	{Type: registry.DWORD, Name: "Dword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword1", Value: uint64(0)},
    	{Type: registry.QWORD, Name: "Qword2", Value: uint64(1)},
    	{Type: registry.QWORD, Name: "Qword3", Value: uint64(0xff)},
    	{Type: registry.QWORD, Name: "Qword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword5", Value: uint64(0xffffff)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm64/asm.go

    		}
    
    		o0 |= (uint32((t>>12)&3) << 29) | (uint32((t>>12>>2)&0x7ffff) << 5)
    		switch rt {
    		case objabi.R_ARM64_PCREL_LDST8, objabi.R_ADDRARM64:
    			o1 |= uint32(t&0xfff) << 10
    		case objabi.R_ARM64_PCREL_LDST16:
    			if t&0x1 != 0 {
    				ldr.Errorf(s, "offset for 16-bit load/store has unaligned value %d", t&0xfff)
    			}
    			o1 |= (uint32(t&0xfff) >> 1) << 10
    		case objabi.R_ARM64_PCREL_LDST32:
    			if t&0x3 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top