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

/external/gemmlowp/internal/
H A Dallocator.h46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 }; member in class:gemmlowp::TypeId
69 GEMMLOWP_REGISTER_TYPEID(std::uint32_t, Uint32)
/external/v8/src/
H A Dmachine-type.h90 return (kPointerSize == 4) ? Uint32() : Uint64();
111 static MachineType Uint32() { function in class:v8::internal::MachineRepresentation::MachineType
218 return isSigned ? MachineType::Int32() : MachineType::Uint32();
H A Dapi.cc3678 MaybeLocal<Uint32> Value::ToUint32(Local<Context> context) const {
3680 if (obj->IsSmi()) return ToApiHandle<Uint32>(obj);
3681 Local<Uint32> result;
3682 PREPARE_FOR_EXECUTION(context, Object, ToUint32, Uint32);
3684 !ToLocal<Uint32>(i::Object::ToUint32(isolate, obj), &result);
3685 RETURN_ON_FAILED_EXECUTION(Uint32);
3690 Local<Uint32> Value::ToUint32(Isolate* isolate) const {
3691 RETURN_TO_LOCAL_UNCHECKED(ToUint32(isolate->GetCurrentContext()), Uint32);
3771 void v8::Uint32::CheckCast(v8::Value* that) {
3772 Utils::ApiCheck(that->IsUint32(), "v8::Uint32
4064 RETURN_TO_LOCAL_UNCHECKED(ToArrayIndex(context), Uint32); local
[all...]
/external/vixl/src/
H A Dutils-vixl.h699 class Uint32 {
703 // Unlike uint32_t, Uint32 has a default constructor.
704 Uint32() { data_ = 0; }
705 explicit Uint32(uint32_t data) : data_(data) {}
706 inline explicit Uint32(Uint64 data);
713 Uint32 operator~() const { return Uint32(~data_); }
714 Uint32 operator-() const { return Uint32(-data_); }
715 bool operator==(Uint32 valu
882 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:__anon24898
/external/v8/include/
H A Dv8.h108 class Uint32;
2205 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToUint32(
2222 Local<Uint32> ToUint32(Isolate* isolate) const);
2235 inline V8_DEPRECATED("Use maybe version", Local<Uint32> ToUint32() const);
2242 V8_DEPRECATED("Use maybe version", Local<Uint32> ToArrayIndex() const);
2243 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToArrayIndex(
2807 class V8_EXPORT Uint32 : public Integer { class in namespace:v8
2810 V8_INLINE static Uint32* Cast(v8::Value* obj);
2813 Uint32();
9332 Local<Uint32> Valu
[all...]

Completed in 727 milliseconds