Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/common/spirv/
Dspirv_types.h22 class BoxedUint32
25 BoxedUint32() : mValue{0} {} in BoxedUint32() function
26 explicit BoxedUint32(uint32_t value) : mValue{value} {} in BoxedUint32() function
32 BoxedUint32(const BoxedUint32 &other) = default;
33 BoxedUint32 &operator=(const BoxedUint32 &other) = default;
35 bool operator==(const BoxedUint32 &other) const { return mValue.value == other.mValue.value; }
52 using IdRef = BoxedUint32<IdRefHelper>;
55 inline BoxedUint32<IdRefHelper>::operator uint32_t() const in uint32_t()
67 using LiteralInteger = BoxedUint32<LiteralIntegerHelper>;