Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for 0xffff (0.21 sec)

  1. 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)
  2. android/guava-tests/test/com/google/common/base/Utf8Test.java

              TWO_BYTE_ROUNDTRIPPABLE_CHARACTERS;
    
      // 2048
      private static final long THREE_BYTE_SURROGATES = 2 * 1024;
    
      // 61,440 [chars 0x0800 to 0xFFFF, minus surrogates]
      private static final long THREE_BYTE_ROUNDTRIPPABLE_CHARACTERS =
          0xFFFF - 0x0800 + 1 - THREE_BYTE_SURROGATES;
    
      // 2,650,112
      private static final long EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT =
          // All one byte characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/syscall/zerrors_aix_ppc64.go

    	IN_CLASSA_HOST                = 0xffffff
    	IN_CLASSA_MAX                 = 0x80
    	IN_CLASSA_NET                 = 0xff000000
    	IN_CLASSA_NSHIFT              = 0x18
    	IN_CLASSB_HOST                = 0xffff
    	IN_CLASSB_MAX                 = 0x10000
    	IN_CLASSB_NET                 = 0xffff0000
    	IN_CLASSB_NSHIFT              = 0x10
    	IN_CLASSC_HOST                = 0xff
    	IN_CLASSC_NET                 = 0xffffff00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K 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. src/image/draw/draw.go

    	}
    }
    
    // clamp clamps i to the interval [0, 0xffff].
    func clamp(i int32) int32 {
    	if i < 0 {
    		return 0
    	}
    	if i > 0xffff {
    		return 0xffff
    	}
    	return i
    }
    
    // sqDiff returns the squared-difference of x and y, shifted by 2 so that
    // adding four of those won't overflow a uint32.
    //
    // x and y are both assumed to be in the range [0, 0xffff].
    func sqDiff(x, y int32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. src/debug/elf/file.go

    			return nil, &FormatError{shoff, "invalid ELF shnum contained in sh_size", shnum}
    		}
    
    		// If the section name string table section index is greater than or
    		// equal to SHN_LORESERVE (0xff00), this member has the value
    		// SHN_XINDEX (0xffff) and the actual index of the section name
    		// string table section is contained in the sh_link field of the
    		// section header at index 0.
    		if shstrndx == int(SHN_XINDEX) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        private int pad1 = 0;
        private boolean hasMore = true;
        private boolean isPrimary = true;
        private int bufParameterOffset;
        private int bufDataOffset;
    
        static final int TRANSACTION_BUF_SIZE = 0xFFFF;
    
        static final byte TRANS2_FIND_FIRST2            = (byte)0x01;
        static final byte TRANS2_FIND_NEXT2             = (byte)0x02;
        static final byte TRANS2_QUERY_FS_INFORMATION   = (byte)0x03;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
Back to top