Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for charToThreeUtf8Bytes (0.1 sec)

  1. guava/src/com/google/common/hash/Murmur3_32HashFunction.java

              buffer |= charToTwoUtf8Bytes(c) << shift;
              shift += 16;
              len += 2;
            } else if (c < Character.MIN_SURROGATE || c > Character.MAX_SURROGATE) {
              buffer |= charToThreeUtf8Bytes(c) << shift;
              shift += 24;
              len += 3;
            } else {
              int codePoint = Character.codePointAt(input, i);
              if (codePoint == c) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 02 13:50:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top