Searched refs:Uint64 (Results 1 - 14 of 14) sorted by relevance

/external/vixl/src/
H A Dutils-vixl.h696 class Uint64;
706 inline explicit Uint32(Uint64 data);
761 class Uint64 {
765 // Unlike uint64_t, Uint64 has a default constructor.
766 Uint64() { data_ = 0; }
767 explicit Uint64(uint64_t data) : data_(data) {}
768 explicit Uint64(Uint32 data) : data_(data.Get()) {}
769 inline explicit Uint64(Uint128 data);
781 Uint64 operator~() const { return Uint64(~data
883 Uint64::Uint64(Uint128 data) : data_(data.ToUint64().Get()) {} function in class:Uint64
[all...]
/external/v8/src/
H A Dmachine-type.h90 return (kPointerSize == 4) ? Uint32() : Uint64();
118 static MachineType Uint64() { function in class:v8::internal::MachineRepresentation::MachineType
220 return isSigned ? MachineType::Int64() : MachineType::Uint64();
H A Dcode-stub-assembler.cc1276 Node* element = Load(MachineType::Uint64(), base, offset);
/external/tensorflow/tensorflow/core/lib/core/
H A Dbit_cast_test.cc80 TEST(BitCast, Uint64) {
/external/vulkan-validation-layers/libs/glm/detail/
H A Dtype_int.hpp63 typedef Uint64 uint64;
/external/tensorflow/tensorflow/go/
H A Dtensor.go50 Uint64 DataType = C.TF_UINT64
316 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
334 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
363 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
375 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
H A Doperation_test.go126 { // Matrix of Uint64
132 Uint64,
/external/libmojo/mojo/public/js/
H A Dcodec.js658 function Uint64() {
661 Uint64.encodedSize = 8;
663 Uint64.decode = function(decoder) {
667 Uint64.encode = function(encoder, val) {
902 exports.Uint64 = Uint64;
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldDescriptor.cs142 case FieldDescriptorProto.Types.Type.Uint64:
H A DDescriptor.cs1633 [pbr::OriginalName("TYPE_UINT64")] Uint64 = 4, enumerator in enum:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type
/external/tensorflow/tensorflow/core/lib/strings/
H A Dordered_code_test.cc285 TEST(Uint64, EncodeDecode) { TestNumbers<uint64>(1); }
287 TEST(Uint64, Ordering) { TestNumberOrdering<uint64>(); }
/external/v8/src/wasm/
H A Dwasm-opcodes.h617 } else if (type == MachineType::Uint64()) {
652 } else if (type == MachineType::Uint64()) {
/external/v8/src/compiler/
H A Dmachine-operator.cc382 V(Uint64) \
/external/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp116 if (Type == MachineType::Uint64()) {

Completed in 488 milliseconds