Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for b2bit8 (0.02 sec)

  1. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

            return when {
              b2bit8 && b3bit8 -> 127
              b3bit8 -> 126
              b2bit8 -> 125
              else -> 124
            }
          }
    
        val b2: Int
          get() = mappedTo[0] and 0x7f
    
        val b3: Int
          get() = mappedTo[1] and 0x7f
      }
    
      data class InlineDelta(
        override val rangeStart: Int,
        val codepointDelta: Int,
      ) : MappedRange {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

       * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the
       * performance of a Bloom filter (yet only needs two 32bit hash functions).
       */
      MURMUR128_MITZ_32() {
        @Override
        public <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

        return new BigInteger(1, address.getAddress());
      }
    
      /**
       * Returns an Inet4Address having the integer value specified by the argument.
       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

        return new BigInteger(1, address.getAddress());
      }
    
      /**
       * Returns an Inet4Address having the integer value specified by the argument.
       *
       * @param address {@code int}, the 32bit integer address to be converted
       * @return {@link Inet4Address} equivalent of the argument
       */
      public static Inet4Address fromInteger(int address) {
        return getInet4Address(Ints.toByteArray(address));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
Back to top