Searched refs:Lub (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Dtypes.cc137 TypeImpl<Config>::BitsetType::Lub(TypeImpl* type) { function in class:v8::internal::TypeImpl::BitsetType
149 return Config::is_class(type) ? Lub(*Config::as_class(type)) :
164 TypeImpl<Config>::BitsetType::Lub(i::Map* map) { function in class:v8::internal::TypeImpl::BitsetType
262 TypeImpl<Config>::BitsetType::Lub(i::Object* value) { function in class:v8::internal::TypeImpl::BitsetType
265 return Lub(value->Number()) & (value->IsSmi() ? kTaggedInt : kTaggedPtr);
267 return Lub(i::HeapObject::cast(value)->map());
273 TypeImpl<Config>::BitsetType::Lub(double value) { function in class:v8::internal::TypeImpl::BitsetType
277 if (IsUint32Double(value)) return Lub(FastD2UI(value));
278 if (IsInt32Double(value)) return Lub(FastD2I(value));
285 TypeImpl<Config>::BitsetType::Lub(int32_ function in class:v8::internal::TypeImpl::BitsetType
298 TypeImpl<Config>::BitsetType::Lub(uint32_t value) { function in class:v8::internal::TypeImpl::BitsetType
337 TypeImpl<Config>::BitsetType::Lub(Limits lim) { function in class:v8::internal::TypeImpl::BitsetType
[all...]
H A Dtypes.h377 return Config::from_bitset(BitsetType::Lub(value), region);
380 return Config::from_bitset(BitsetType::Lub(value), region);
517 bitset BitsetLub() { return BitsetType::Lub(this); }
600 static bitset Lub(TypeImpl* type); // least upper bound that's a bitset
601 static bitset Lub(i::Object* value);
602 static bitset Lub(double value);
603 static bitset Lub(int32_t value);
604 static bitset Lub(uint32_t value);
605 static bitset Lub(i::Map* map);
606 static bitset Lub(Limit
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc44 using Type::BitsetType::Lub;
71 using HeapType::BitsetType::Lub;
74 static bitset Lub(Handle<HeapType> type) { return Lub(*type); } function in struct:HeapRep::BitsetType
845 Rep::BitsetType::New(Rep::BitsetType::Lub(type), T.region());
855 Rep::BitsetType::New(Rep::BitsetType::Lub(type1), T.region());
866 Rep::BitsetType::New(Rep::BitsetType::Lub(type1), T.region());
868 Rep::BitsetType::New(Rep::BitsetType::Lub(type2), T.region());

Completed in 98 milliseconds