Lines Matching refs:out_value
332 int32_t* out_value) { in TryToInt32Constant() argument
338 *out_value = static_cast<int32_t>(m.ResolvedValue()); in TryToInt32Constant()
346 *out_value = m.ResolvedValue(); in TryToInt32Constant()
355 int64_t* out_value) { in TryToInt64Constant() argument
357 if (m.HasResolvedValue()) *out_value = m.ResolvedValue(); in TryToInt64Constant()
361 bool CodeAssembler::TryToSmiConstant(TNode<Smi> tnode, Smi* out_value) { in TryToSmiConstant() argument
366 return TryToSmiConstant(ReinterpretCast<IntPtrT>(tnode), out_value); in TryToSmiConstant()
369 bool CodeAssembler::TryToSmiConstant(TNode<IntegralT> node, Smi* out_value) { in TryToSmiConstant() argument
375 *out_value = Smi(static_cast<Address>(value)); in TryToSmiConstant()
381 bool CodeAssembler::TryToIntPtrConstant(TNode<Smi> tnode, intptr_t* out_value) { in TryToIntPtrConstant() argument
387 return TryToIntPtrConstant(ReinterpretCast<IntPtrT>(tnode), out_value); in TryToIntPtrConstant()
391 intptr_t* out_value) { in TryToIntPtrConstant() argument
393 if (m.HasResolvedValue()) *out_value = m.ResolvedValue(); in TryToIntPtrConstant()