- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for nativeOrder (0.12 seconds)
-
android/guava/src/com/google/common/hash/LittleEndianByteArray.java
* which will have an efficient native implementation in JDK 9. * */ String arch = System.getProperty("os.arch"); if (Objects.equals(arch, "amd64")) { return ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN) ? UnsafeByteArray.UNSAFE_LITTLE_ENDIAN : UnsafeByteArray.UNSAFE_BIG_ENDIAN; } } catch (Throwable t) { // ensure we really catch *everything*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 10.1K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/UnsignedBytes.java
"UnnecessaryJavacSuppressWarnings" }) @VisibleForTesting enum UnsafeComparator implements LexicographicalComparator { INSTANCE; static final boolean BIG_ENDIAN = ByteOrder.nativeOrder().equals(ByteOrder.BIG_ENDIAN); /* * The following static final fields exist for performance reasons. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 21K bytes - Click Count (0)