Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 0xFFFFFFFFL (0.13 sec)

  1. src/main/java/jcifs/util/Encdec.java

            enc_uint32be((int) ( l & 0xFFFFFFFFL ), dst, di + 4);
            enc_uint32be((int) ( ( l >> 32L ) & 0xFFFFFFFFL ), dst, di);
            return 8;
        }
    
    
        public static int enc_uint64le ( long l, byte[] dst, int di ) {
            enc_uint32le((int) ( l & 0xFFFFFFFFL ), dst, di);
            enc_uint32le((int) ( ( l >> 32L ) & 0xFFFFFFFFL ), dst, di + 4);
            return 8;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/Encdec.java

        {
            enc_uint32be( (int)(l & 0xFFFFFFFFL), dst, di + 4 );
            enc_uint32be( (int)(( l >> 32L ) & 0xFFFFFFFFL), dst, di );
            return 8;
        }
        public static int enc_uint64le( long l, byte[] dst, int di )
        {
            enc_uint32le( (int)(l & 0xFFFFFFFFL), dst, di );
            enc_uint32le( (int)(( l >> 32L ) & 0xFFFFFFFFL), dst, di + 4 );
            return 8;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/util/SMBUtil.java

                    + ( ( src[ srcIndex + 3 ] & 0xFF ) << 24 );
        }
    
    
        public static long readInt8 ( byte[] src, int srcIndex ) {
            return ( readInt4(src, srcIndex) & 0xFFFFFFFFL ) + ( (long) ( readInt4(src, srcIndex + 4) ) << 32 );
        }
    
    
        public static void writeInt8 ( long val, byte[] dst, int dstIndex ) {
            dst[ dstIndex ] = (byte) ( val );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacDataInputStream.java

        }
    
    
        public int readUnsignedByte () throws IOException {
            return ( readByte() ) & 0xff;
        }
    
    
        public long readUnsignedInt () throws IOException {
            return ( readInt() ) & 0xffffffffL;
        }
    
    
        public int readUnsignedShort () throws IOException {
            return ( readShort() ) & 0xffff;
        }
    
    
        public Date readFiletime () throws IOException {
            Date date = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 21 21:19:58 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              .that(UnsignedInteger.fromIntBits(value).intValue())
              .isEqualTo(value);
        }
      }
    
      public void testFromIntBitsLongValue() {
        for (int value : TEST_INTS) {
          long expected = value & 0xffffffffL;
          assertWithMessage(UnsignedInts.toString(value))
              .that(UnsignedInteger.fromIntBits(value).longValue())
              .isEqualTo(expected);
        }
      }
    
      public void testValueOfLong() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

              .that(UnsignedInteger.fromIntBits(value).intValue())
              .isEqualTo(value);
        }
      }
    
      public void testFromIntBitsLongValue() {
        for (int value : TEST_INTS) {
          long expected = value & 0xffffffffL;
          assertWithMessage(UnsignedInts.toString(value))
              .that(UnsignedInteger.fromIntBits(value).longValue())
              .isEqualTo(expected);
        }
      }
    
      public void testValueOfLong() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComWrite.java

            command = SMB_COM_WRITE;
        }
    
        void setParam( int fid, long offset, int remaining,
                        byte[] b, int off, int len ) {
            this.fid = fid;
            this.offset = (int)(offset & 0xFFFFFFFFL);
            this.remaining = remaining;
            this.b = b;
            this.off = off;
            count = len;
            digest = null; /* otherwise recycled commands
                            * like writeandx will choke if session
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

          return hashLength16(c, d, mul);
        }
        if (length >= 4) {
          long mul = K2 + length * 2;
          long a = load32(bytes, offset) & 0xFFFFFFFFL;
          return hashLength16(length + (a << 3), load32(bytes, offset + length - 4) & 0xFFFFFFFFL, mul);
        }
        if (length > 0) {
          byte a = bytes[offset];
          byte b = bytes[offset + (length >> 1)];
          byte c = bytes[offset + (length - 1)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/FarmHashFingerprint64.java

          return hashLength16(c, d, mul);
        }
        if (length >= 4) {
          long mul = K2 + length * 2;
          long a = load32(bytes, offset) & 0xFFFFFFFFL;
          return hashLength16(length + (a << 3), load32(bytes, offset + length - 4) & 0xFFFFFFFFL, mul);
        }
        if (length > 0) {
          byte a = bytes[offset];
          byte b = bytes[offset + (length >> 1)];
          byte c = bytes[offset + (length - 1)];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

          skipName(buf) // name
    
          val type = buf.readShort().toInt() and 0xffff
          buf.readShort() // class
          @Suppress("UNUSED_VARIABLE")
          val ttl = buf.readInt().toLong() and 0xffffffffL // ttl
          val length = buf.readShort().toInt() and 0xffff
    
          if (type == TYPE_A || type == TYPE_AAAA) {
            val bytes = ByteArray(length)
            buf.read(bytes)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top