- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for 0000feff (0.14 sec)
-
android/guava/src/com/google/common/collect/CompactHashSet.java
* are the "next" pointer (pointing to the next entry in the bucket chain), which will always be * less than or equal to the hashtable mask. * * <pre> * hash = aaaaaaaa * mask = 00000fff * next = 00000bbb * entry = aaaaabbb * </pre> * * <p>The pointers in [size(), entries.length) are all "null" (UNSET). */ @CheckForNull private transient int[] entries; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashSet.java
* are the "next" pointer (pointing to the next entry in the bucket chain), which will always be * less than or equal to the hashtable mask. * * <pre> * hash = aaaaaaaa * mask = 00000fff * next = 00000bbb * entry = aaaaabbb * </pre> * * <p>The pointers in [size(), entries.length) are all "null" (UNSET). */ @CheckForNull private transient int[] entries; /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
assertThat(converter.convert("0xFF")).isEqualTo((Integer) 255); assertThat(converter.convert("-0xFF")).isEqualTo((Integer) (-255)); assertThat(converter.convert("#0000FF")).isEqualTo((Integer) 255); assertThat(converter.convert("0666")).isEqualTo((Integer) 438); } public void testStringConverter_convertError() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
assertThat(converter.convert("0xFF")).isEqualTo((Long) 255L); assertThat(converter.convert("-0xFF")).isEqualTo((Long) (-255L)); assertThat(converter.convert("#0000FF")).isEqualTo((Long) 255L); assertThat(converter.convert("0666")).isEqualTo((Long) 438L); } public void testStringConverter_convertError() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.8K bytes - Viewed (0)