Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dtypes.h222 class OtherNumberConstantType; variable
405 const OtherNumberConstantType* AsOtherNumberConstant() const;
511 class OtherNumberConstantType : public TypeBase {
521 static OtherNumberConstantType* New(double value, Zone* zone) { in New()
522 return new (zone->New(sizeof(OtherNumberConstantType))) in New()
523 OtherNumberConstantType(value); // NOLINT in New()
526 explicit OtherNumberConstantType(double value) in OtherNumberConstantType() function
Dtypes.cc457 bool OtherNumberConstantType::IsOtherNumberConstant(double value) { in IsOtherNumberConstant()
821 DCHECK(OtherNumberConstantType::IsOtherNumberConstant(value)); in NewConstant()
1059 return FromTypeBase(OtherNumberConstantType::New(value, zone)); in OtherNumberConstant()
1094 const OtherNumberConstantType* Type::AsOtherNumberConstant() const { in AsOtherNumberConstant()
1096 return static_cast<const OtherNumberConstantType*>(ToTypeBase()); in AsOtherNumberConstant()