Searched defs:Uint32 (Results 1 - 7 of 7) sorted by relevance

/external/gemmlowp/internal/
H A Dallocator.h54 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 }; member in class:gemmlowp::TypeId
77 GEMMLOWP_REGISTER_TYPEID(std::uint32_t, Uint32)
/external/v8/src/
H A Dmachine-type.h120 static MachineType Uint32() { function in class:v8::internal::MachineRepresentation::MachineType
193 return isSigned ? MachineType::Int32() : MachineType::Uint32();
H A Dapi.cc3516 MaybeLocal<Uint32> Value::ToUint32(Local<Context> context) const {
3518 if (obj->IsSmi()) return ToApiHandle<Uint32>(obj);
3519 Local<Uint32> result;
3520 PREPARE_FOR_EXECUTION(context, Object, ToUint32, Uint32);
3522 !ToLocal<Uint32>(i::Object::ToUint32(isolate, obj), &result);
3523 RETURN_ON_FAILED_EXECUTION(Uint32);
3528 Local<Uint32> Value::ToUint32(Isolate* isolate) const {
3529 RETURN_TO_LOCAL_UNCHECKED(ToUint32(isolate->GetCurrentContext()), Uint32);
3609 void v8::Uint32::CheckCast(v8::Value* that) {
3610 Utils::ApiCheck(that->IsUint32(), "v8::Uint32
3902 RETURN_TO_LOCAL_UNCHECKED(ToArrayIndex(context), Uint32); local
[all...]
/external/vixl/src/
H A Dutils-vixl.h690 class Uint32 {
694 // Unlike uint32_t, Uint32 has a default constructor.
695 Uint32() { data_ = 0; }
696 explicit Uint32(uint32_t data) : data_(data) {}
697 inline explicit Uint32(Uint64 data);
704 Uint32 operator~() const { return Uint32(~data_); }
705 Uint32 operator-() const { return Uint32(-data_); }
706 bool operator==(Uint32 valu
873 Uint32::Uint32(Uint64 data) : data_(data.ToUint32().Get()) {} function in class:Uint32
[all...]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DDescriptor.cs1655 [pbr::OriginalName("TYPE_UINT32")] Uint32 = 13, enumerator in enum:Google.Protobuf.Reflection.FieldDescriptorProto.Types.Type
/external/syslinux/gpxe/src/include/gpxe/efi/IndustryStandard/
H A DPci22.h376 UINT32 Uint32; member in union:__anon20519
/external/v8/include/
H A Dv8.h108 class Uint32;
2183 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToUint32(
2200 Local<Uint32> ToUint32(Isolate* isolate) const);
2213 inline V8_DEPRECATED("Use maybe version", Local<Uint32> ToUint32() const);
2220 V8_DEPRECATED("Use maybe version", Local<Uint32> ToArrayIndex() const);
2221 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToArrayIndex(
2783 class V8_EXPORT Uint32 : public Integer { class in namespace:v8
2786 V8_INLINE static Uint32* Cast(v8::Value* obj);
2789 Uint32();
9118 Local<Uint32> Valu
[all...]

Completed in 347 milliseconds