Home
last modified time | relevance | path

Searched refs:AsBitset (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dtypes.cc96 if (this->IsBitset()) return BitsetType::Min(this->AsBitset()); in Min()
114 if (this->IsBitset()) return BitsetType::Max(this->AsBitset()); in Max()
140 return type->AsBitset(); in Glb()
160 if (type->IsBitset()) return type->AsBitset(); in Lub()
526 return BitsetType::Is(this->BitsetLub(), that->AsBitset()); in SlowIs()
530 return BitsetType::Is(this->AsBitset(), that->BitsetGlb()); in SlowIs()
552 return BitsetType::Is(SEMANTIC(this->BitsetLub()), that->AsBitset()); in SemanticIs()
555 return BitsetType::Is(SEMANTIC(this->AsBitset()), that->BitsetGlb()); in SemanticIs()
662 bitset number_bits = BitsetType::NumberBits(that->AsBitset()); in SemanticMaybe()
731 (BitsetType::NumberBits(this->Get(0)->AsBitset()) == in Wellformed()
[all …]
Dtypes.h584 bitset AsBitset() { in AsBitset() function
818 this->Get(0)->AsBitset(); in Lub()
846 bitset Lub() { return this->Get(0)->AsBitset(); } in Lub()
865 bitset representation_bits = representation->AsBitset(); in New()
/external/v8/test/cctest/
Dtest-types.cc44 static bitset AsBitset(Type* t) { in AsBitset() function
76 static bitset AsBitset(Handle<HeapType> t) { in AsBitset() function
122 this->AsBitset(type1) == this->AsBitset(type2)) && in Equal()
136 CHECK(this->AsBitset(type1) != this->AsBitset(type2)); in CheckSub()
143 CHECK((this->AsBitset(type1) | this->AsBitset(type2)) in CheckSubOrEqual()
144 == this->AsBitset(type2)); in CheckSubOrEqual()
152 CHECK(this->AsBitset(type1) != this->AsBitset(type2)); in CheckUnordered()
182 CHECK(bitset(0) == this->AsBitset(T.None)); in Bitset()
183 CHECK(bitset(0xfffffffeu) == this->AsBitset(T.Any)); in Bitset()
226 (this->AsBitset(type1) | this->AsBitset(type2)) == in Bitset()
[all …]