Lines Matching full:static_cast
40 BinaryType addType = static_cast<BinaryType>(argType.GetInt()); in AddWithTSType()
110 BinaryType subType = static_cast<BinaryType>(argType.GetInt()); in SubWithTSType()
143 BinaryType mulType = static_cast<BinaryType>(argType.GetInt()); in MulWithTSType()
178 BinaryType divType = static_cast<BinaryType>(argType.GetInt()); in DivWithTSType()
214 BinaryType modType = static_cast<BinaryType>(argType.GetInt()); in ModWithTSType()
298 BinaryType shlType = static_cast<BinaryType>(argType.GetInt()); in ShlWithTSType()
303 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-number… in ShlWithTSType()
306 …static_cast<int32_t>(static_cast<unsigned_type>(opNumber0) << shift); // NOLINT(hicpp-signed-bitw… in ShlWithTSType()
314 BinaryType shrType = static_cast<BinaryType>(argType.GetInt()); in ShrWithTSType()
319 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-num… in ShrWithTSType()
320 auto ret = static_cast<int32_t>(opNumber0 >> shift); // NOLINT(hicpp-signed-bitwise) in ShrWithTSType()
328 BinaryType ashrType = static_cast<BinaryType>(argType.GetInt()); in AshrWithTSType()
333 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-number… in AshrWithTSType()
336 …static_cast<uint32_t>(static_cast<unsigned_type>(opNumber0) >> shift); // NOLINT(hicpp-signed-bit… in AshrWithTSType()
344 BinaryType andType = static_cast<BinaryType>(argType.GetInt()); in AndWithTSType()
349 auto ret = static_cast<uint32_t>(opNumber0) & static_cast<uint32_t>(opNumber1); in AndWithTSType()
357 BinaryType orType = static_cast<BinaryType>(argType.GetInt()); in OrWithTSType()
362 auto ret = static_cast<uint32_t>(opNumber0) | static_cast<uint32_t>(opNumber1); in OrWithTSType()
370 BinaryType xorType = static_cast<BinaryType>(argType.GetInt()); in XorWithTSType()
375 auto ret = static_cast<uint32_t>(opNumber0) ^ static_cast<uint32_t>(opNumber1); in XorWithTSType()