Home
last modified time | relevance | path

Searched refs:UnsignedLong (Results 1 – 25 of 48) sorted by relevance

12

/external/guava/android/guava-tests/test/com/google/common/primitives/
DUnsignedLongTest.java63 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/
DUnsignedLongTest.java63 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/
DUnsignedLong.java41 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/
DUnsignedLong.java41 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/
DTargetInfo.cpp57 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/
DTargetInfo.cpp90 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/
DCloudTraceFormatTest.java26 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/
DWebAssembly.h59 SizeType = UnsignedLong; in WebAssemblyTargetInfo()
165 SizeType = UnsignedLong; in WebAssembly64TargetInfo()
DVE.h37 SizeType = UnsignedLong; in VETargetInfo()
DBPF.h31 SizeType = UnsignedLong; in BPFTargetInfo()
DX86.h474 SizeType = UnsignedLong; in OpenBSDI386TargetInfo()
493 SizeType = UnsignedLong; in DarwinI386TargetInfo()
635 SizeType = UnsignedLong; in RTEMSX86_32TargetInfo()
662 SizeType = IsX32 ? UnsignedInt : UnsignedLong; in X86_64TargetInfo()
DSPIR.h130 SizeType = TargetInfo::UnsignedLong; in SPIR64TargetInfo()
DAVR.h55 Char32Type = UnsignedLong; in AVRTargetInfo()
DSparc.h164 SizeType = UnsignedLong; in SparcV8TargetInfo()
DNVPTX.cpp99 SizeType = TargetInfo::UnsignedLong; in NVPTXTargetInfo()
/external/guava/android/guava-testlib/test/com/google/common/testing/anotherpackage/
DForwardingWrapperTesterTest.java28 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/
DForwardingWrapperTesterTest.java28 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/
DArbitraryInstances.java76 import com.google.common.primitives.UnsignedLong;
198 .put(UnsignedLong.class, UnsignedLong.ZERO)
/external/llvm-project/clang/include/clang/Basic/
DTargetInfo.h119 UnsignedLong, enumerator
311 case UnsignedLong: in getSignedSizeType()
353 return UnsignedLong; in getCorrespondingUnsignedType()
/external/guava/guava-testlib/src/com/google/common/testing/
DArbitraryInstances.java76 import com.google.common.primitives.UnsignedLong;
203 .put(UnsignedLong.class, UnsignedLong.ZERO)
/external/guava/android/guava-testlib/test/com/google/common/testing/
DArbitraryInstancesTest.java61 import com.google.common.primitives.UnsignedLong;
158 assertEquals(UnsignedLong.ZERO, ArbitraryInstances.get(UnsignedLong.class)); in testGet_primitives()
DFreshValueGeneratorTest.java60 import com.google.common.primitives.UnsignedLong;
143 UnsignedLong.class, in testFreshInstance()
/external/clang/include/clang/Basic/
DTargetInfo.h133 UnsignedLong, enumerator
257 return UnsignedLong; in getCorrespondingUnsignedType()
/external/guava/guava-testlib/test/com/google/common/testing/
DArbitraryInstancesTest.java61 import com.google.common.primitives.UnsignedLong;
162 assertEquals(UnsignedLong.ZERO, ArbitraryInstances.get(UnsignedLong.class)); in testGet_primitives()
DFreshValueGeneratorTest.java60 import com.google.common.primitives.UnsignedLong;
147 UnsignedLong.class, in testFreshInstance()

12