Lines Matching refs:intConst
363 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get()); in reduce() local
364 if (intConst) in reduce()
366 int32_t value = -(int32_t)intConst->getValue(); in reduce()
367 return new IntConstExprASTNode((uint32_t)value, intConst->getSize()); in reduce()
397 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get()); in reduce() local
398 if (intConst) in reduce()
400 int32_t value = !((int32_t)intConst->getValue()); in reduce()
401 return new IntConstExprASTNode((uint32_t)value, intConst->getSize()); in reduce()
856 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get()); in reduce() local
857 if (!intConst) in reduce()
862 return new IntConstExprASTNode(intConst->getValue(), m_size); in reduce()