Home
last modified time | relevance | path

Searched refs:Uint64 (Results 1 – 15 of 15) sorted by relevance

/external/vixl/src/
Dutils-vixl.h687 class Uint64; variable
697 inline explicit Uint32(Uint64 data);
752 class Uint64 {
757 Uint64() { data_ = 0; } in Uint64() function
758 explicit Uint64(uint64_t data) : data_(data) {} in Uint64() function
759 explicit Uint64(Uint32 data) : data_(data.Get()) {} in Uint64() function
760 inline explicit Uint64(Uint128 data);
772 Uint64 operator~() const { return Uint64(~data_); }
773 Uint64 operator-() const { return Uint64(-data_); }
774 bool operator==(Uint64 value) const { return data_ == value.data_; }
[all …]
/external/libmojo/mojo/public/js/
Dcodec.js653 function Uint64() { class
656 Uint64.encodedSize = 8;
658 Uint64.decode = function(decoder) {
662 Uint64.encode = function(encoder, val) {
862 exports.Uint64 = Uint64;
/external/boringssl/src/ssl/test/runner/
Dticket.go135 s.ticketCreationTime = time.Unix(0, int64(binary.BigEndian.Uint64(data)))
137 s.ticketExpiration = time.Unix(0, int64(binary.BigEndian.Uint64(data)))
Dconn.go304 seqU64 := binary.BigEndian.Uint64(hc.seq[:])
/external/boringssl/src/crypto/bn/
Dcheck_bn_tests.go190 r := new(big.Int).Lsh(test.Values["A"], uint(test.Values["N"].Uint64()))
195 r := new(big.Int).Rsh(test.Values["A"], uint(test.Values["N"].Uint64()))
/external/v8/src/
Dmachine-type.h127 static MachineType Uint64() { in Uint64() function
195 return isSigned ? MachineType::Int64() : MachineType::Uint64();
Dcode-stub-assembler.cc1274 Node* element = Load(MachineType::Uint64(), base, offset); in LoadDoubleWithHoleCheck()
/external/vulkan-validation-layers/libs/glm/detail/
Dtype_int.hpp63 typedef Uint64 uint64;
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs142 case FieldDescriptorProto.Types.Type.Uint64: in GetFieldTypeFromProtoType()
DDescriptor.cs1633 [pbr::OriginalName("TYPE_UINT64")] Uint64 = 4, enumerator
/external/protobuf/objectivec/Tests/
DGPBMessageTests+Merge.m295 //%PDDM-EXPAND MERGE2_TEST(Uint64, 13U, Uint32, 102U)
304 //%PDDM-EXPAND MERGE2_TEST(Sint32, 14, Uint64, 103U)
515 //%PDDM-EXPAND MERGE3_TEST(Uint64, 13U, Uint32, 0U)
524 //%PDDM-EXPAND MERGE3_TEST(Sint32, 14, Uint64, 0U)
DGPBMessageTests+Runtime.m64 @"Uint64",
182 @"Uint64",
333 //%PROTO2_TEST_HAS_FIELD(Uint64, 1, 0)
685 //%PROTO3_TEST_HAS_FIELD(Uint64, 1, 0)
DGPBMessageTests+Serialization.m271 //%TEST_ROUNDTRIP_ONEOF(Message##SYNTAX, Uint64, 4U)
/external/v8/src/wasm/
Dwasm-opcodes.h601 } else if (type == MachineType::Uint64()) { in LocalTypeFor()
630 } else if (type == MachineType::Uint64()) { in LoadStoreOpcodeOf()
/external/v8/src/compiler/
Dmachine-operator.cc432 V(Uint64) \