/external/guava/android/guava-tests/test/com/google/common/primitives/ |
D | UnsignedLongTest.java | 63 UnsignedLongs.toString(value), value, UnsignedLong.fromLongBits(value).longValue()); in testAsUnsignedAndLongValueAreInverses() 76 UnsignedLong.fromLongBits(value).bigIntegerValue()); in testAsUnsignedBigIntegerValue() 84 assertEquals(value, UnsignedLong.valueOf(value).longValue()); in testValueOfLong() 94 BigInteger max = UnsignedLong.MAX_VALUE.bigIntegerValue(); in testValueOfBigInteger() 98 assertEquals(big, UnsignedLong.valueOf(big).bigIntegerValue()); in testValueOfBigInteger() 108 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testToString() 117 UnsignedLong value = UnsignedLong.fromLongBits(l); in testToStringRadix() 127 UnsignedLong value = UnsignedLong.fromLongBits(l); in testToStringRadixQuick() 135 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testFloatValue() 142 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testDoubleValue() [all …]
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
D | UnsignedLongTest.java | 63 UnsignedLongs.toString(value), value, UnsignedLong.fromLongBits(value).longValue()); in testAsUnsignedAndLongValueAreInverses() 76 UnsignedLong.fromLongBits(value).bigIntegerValue()); in testAsUnsignedBigIntegerValue() 84 assertEquals(value, UnsignedLong.valueOf(value).longValue()); in testValueOfLong() 94 BigInteger max = UnsignedLong.MAX_VALUE.bigIntegerValue(); in testValueOfBigInteger() 98 assertEquals(big, UnsignedLong.valueOf(big).bigIntegerValue()); in testValueOfBigInteger() 108 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testToString() 117 UnsignedLong value = UnsignedLong.fromLongBits(l); in testToStringRadix() 127 UnsignedLong value = UnsignedLong.fromLongBits(l); in testToStringRadixQuick() 135 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testFloatValue() 142 UnsignedLong unsignedValue = UnsignedLong.fromLongBits(value); in testDoubleValue() [all …]
|
/external/guava/guava/src/com/google/common/primitives/ |
D | UnsignedLong.java | 41 public final class UnsignedLong extends Number implements Comparable<UnsignedLong>, Serializable { class 45 public static final UnsignedLong ZERO = new UnsignedLong(0); 46 public static final UnsignedLong ONE = new UnsignedLong(1); 47 public static final UnsignedLong MAX_VALUE = new UnsignedLong(-1L); 51 private UnsignedLong(long value) { in UnsignedLong() method in UnsignedLong 68 public static UnsignedLong fromLongBits(long bits) { in fromLongBits() 70 return new UnsignedLong(bits); in fromLongBits() 80 public static UnsignedLong valueOf(long value) { in valueOf() 92 public static UnsignedLong valueOf(BigInteger value) { in valueOf() 109 public static UnsignedLong valueOf(String string) { in valueOf() [all …]
|
/external/guava/android/guava/src/com/google/common/primitives/ |
D | UnsignedLong.java | 41 public final class UnsignedLong extends Number implements Comparable<UnsignedLong>, Serializable { class 45 public static final UnsignedLong ZERO = new UnsignedLong(0); 46 public static final UnsignedLong ONE = new UnsignedLong(1); 47 public static final UnsignedLong MAX_VALUE = new UnsignedLong(-1L); 51 private UnsignedLong(long value) { in UnsignedLong() method in UnsignedLong 68 public static UnsignedLong fromLongBits(long bits) { in fromLongBits() 70 return new UnsignedLong(bits); in fromLongBits() 80 public static UnsignedLong valueOf(long value) { in valueOf() 92 public static UnsignedLong valueOf(BigInteger value) { in valueOf() 109 public static UnsignedLong valueOf(String string) { in valueOf() [all …]
|
/external/clang/lib/Basic/ |
D | TargetInfo.cpp | 57 SizeType = UnsignedLong; in TargetInfo() 120 case UnsignedLong: return "long unsigned int"; in getTypeName() 143 case UnsignedLong: return "UL"; in getTypeConstantSuffix() 161 case UnsignedLong: return "l"; in getTypeFormatModifier() 179 case UnsignedLong: return getLongWidth(); in getTypeWidth() 194 return IsSigned ? SignedLong : UnsignedLong; in getIntTypeByWidth() 209 return IsSigned ? SignedLong : UnsignedLong; in getLeastIntTypeByWidth() 250 case UnsignedLong: return getLongAlign(); in getTypeAlign() 270 case UnsignedLong: in isTypeSigned() 311 SizeType = Is32BitArch ? UnsignedInt : UnsignedLong; in adjust()
|
/external/llvm-project/clang/lib/Basic/ |
D | TargetInfo.cpp | 90 SizeType = UnsignedLong; in TargetInfo() 174 case UnsignedLong: return "long unsigned int"; in getTypeName() 199 case UnsignedLong: return "UL"; in getTypeConstantSuffix() 217 case UnsignedLong: return "l"; in getTypeFormatModifier() 235 case UnsignedLong: return getLongWidth(); in getTypeWidth() 250 return IsSigned ? SignedLong : UnsignedLong; in getIntTypeByWidth() 265 return IsSigned ? SignedLong : UnsignedLong; in getLeastIntTypeByWidth() 311 case UnsignedLong: return getLongAlign(); in getTypeAlign() 331 case UnsignedLong: in isTypeSigned() 381 SizeType = Is32BitArch ? UnsignedInt : UnsignedLong; in adjust()
|
/external/opencensus-java/contrib/http_util/src/test/java/io/opencensus/contrib/http/util/ |
D | CloudTraceFormatTest.java | 26 import com.google.common.primitives.UnsignedLong; 54 private static final String SPAN_ID_BASE10 = UnsignedLong.valueOf(SPAN_ID_BASE16, 16).toString(); 56 private static final String SPAN_ID_BASE10_MAX_UNSIGNED_LONG = UnsignedLong.MAX_VALUE.toString(); 58 UnsignedLong.MAX_VALUE.toString(16);
|
/external/llvm-project/clang/lib/Basic/Targets/ |
D | WebAssembly.h | 59 SizeType = UnsignedLong; in WebAssemblyTargetInfo() 165 SizeType = UnsignedLong; in WebAssembly64TargetInfo()
|
D | VE.h | 37 SizeType = UnsignedLong; in VETargetInfo()
|
D | BPF.h | 31 SizeType = UnsignedLong; in BPFTargetInfo()
|
D | X86.h | 474 SizeType = UnsignedLong; in OpenBSDI386TargetInfo() 493 SizeType = UnsignedLong; in DarwinI386TargetInfo() 635 SizeType = UnsignedLong; in RTEMSX86_32TargetInfo() 662 SizeType = IsX32 ? UnsignedInt : UnsignedLong; in X86_64TargetInfo()
|
D | SPIR.h | 130 SizeType = TargetInfo::UnsignedLong; in SPIR64TargetInfo()
|
D | AVR.h | 55 Char32Type = UnsignedLong; in AVRTargetInfo()
|
D | Sparc.h | 164 SizeType = UnsignedLong; in SparcV8TargetInfo()
|
D | NVPTX.cpp | 99 SizeType = TargetInfo::UnsignedLong; in NVPTXTargetInfo()
|
/external/guava/android/guava-testlib/test/com/google/common/testing/anotherpackage/ |
D | ForwardingWrapperTesterTest.java | 28 import com.google.common.primitives.UnsignedLong; 444 UnsignedLong ul, in foo() 476 UnsignedLong ul, in foo()
|
/external/guava/guava-testlib/test/com/google/common/testing/anotherpackage/ |
D | ForwardingWrapperTesterTest.java | 28 import com.google.common.primitives.UnsignedLong; 444 UnsignedLong ul, in foo() 476 UnsignedLong ul, in foo()
|
/external/guava/android/guava-testlib/src/com/google/common/testing/ |
D | ArbitraryInstances.java | 76 import com.google.common.primitives.UnsignedLong; 198 .put(UnsignedLong.class, UnsignedLong.ZERO)
|
/external/llvm-project/clang/include/clang/Basic/ |
D | TargetInfo.h | 119 UnsignedLong, enumerator 311 case UnsignedLong: in getSignedSizeType() 353 return UnsignedLong; in getCorrespondingUnsignedType()
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | ArbitraryInstances.java | 76 import com.google.common.primitives.UnsignedLong; 203 .put(UnsignedLong.class, UnsignedLong.ZERO)
|
/external/guava/android/guava-testlib/test/com/google/common/testing/ |
D | ArbitraryInstancesTest.java | 61 import com.google.common.primitives.UnsignedLong; 158 assertEquals(UnsignedLong.ZERO, ArbitraryInstances.get(UnsignedLong.class)); in testGet_primitives()
|
D | FreshValueGeneratorTest.java | 60 import com.google.common.primitives.UnsignedLong; 143 UnsignedLong.class, in testFreshInstance()
|
/external/clang/include/clang/Basic/ |
D | TargetInfo.h | 133 UnsignedLong, enumerator 257 return UnsignedLong; in getCorrespondingUnsignedType()
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | ArbitraryInstancesTest.java | 61 import com.google.common.primitives.UnsignedLong; 162 assertEquals(UnsignedLong.ZERO, ArbitraryInstances.get(UnsignedLong.class)); in testGet_primitives()
|
D | FreshValueGeneratorTest.java | 60 import com.google.common.primitives.UnsignedLong; 147 UnsignedLong.class, in testFreshInstance()
|