Home | History | Annotate | Download | only in spirit

Lines Matching defs:uint32_t

35 typedef uint32_t LiteralExtInstInteger;
36 typedef uint32_t LiteralSpecConstantOpInteger;
37 typedef uint32_t IdResult;
43 uint32_t mId;
61 OpCodeAndWordCount(uint32_t codeAndCount)
63 mWordCount((uint32_t)(codeAndCount >> 16)) {}
64 OpCodeAndWordCount(uint32_t opcode, uint32_t wordCount)
67 operator uint32_t() const {
68 return ((uint32_t)mWordCount << 16) | (uint32_t)mOpCode;