Home
last modified time | relevance | path

Searched refs:Lub (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dtypes.h306 static bitset Lub(Type* type); // least upper bound that's a bitset
307 static bitset Lub(i::Map* map);
308 static bitset Lub(i::Object* value);
309 static bitset Lub(double value);
310 static bitset Lub(double min, double max);
393 ClassType(BitsetType::Lub(*map), map)); in New()
404 BitsetType::bitset Lub() { return bitset_; } in Lub() function
422 BitsetType::bitset bitset = BitsetType::Lub(*value); in New()
435 BitsetType::bitset Lub() { return bitset_; } in Lub() function
481 SEMANTIC(BitsetType::Lub(lim.min, lim.max)) | representation; in New()
[all …]
Dtypes.cc134 Type::bitset BitsetType::Lub(Type* type) { in Lub() function in v8::internal::BitsetType
147 if (type->IsClass()) return type->AsClass()->Lub(); in Lub()
148 if (type->IsConstant()) return type->AsConstant()->Lub(); in Lub()
149 if (type->IsRange()) return type->AsRange()->Lub(); in Lub()
158 Type::bitset BitsetType::Lub(i::Map* map) { in Lub() function in v8::internal::BitsetType
289 Type::bitset BitsetType::Lub(i::Object* value) { in Lub() function in v8::internal::BitsetType
292 return Lub(value->Number()) & in Lub()
295 return Lub(i::HeapObject::cast(value)->map()); in Lub()
298 Type::bitset BitsetType::Lub(double value) { in Lub() function in v8::internal::BitsetType
302 if (IsUint32Double(value) || IsInt32Double(value)) return Lub(value, value); in Lub()
[all …]
/external/icu/icu4c/source/data/locales/
Dlu.txt124 "Lub",
/external/v8/test/cctest/
Dtest-types.cc654 Type* lub = BitsetType::NewForTesting(BitsetType::Lub(type)); in MinMax()
702 Type* lub = BitsetType::NewForTesting(BitsetType::Lub(type)); in BitsetLub()
711 Type* lub1 = BitsetType::NewForTesting(BitsetType::Lub(type1)); in BitsetLub()
721 Type* lub1 = BitsetType::NewForTesting(BitsetType::Lub(type1)); in BitsetLub()
722 Type* lub2 = BitsetType::NewForTesting(BitsetType::Lub(type2)); in BitsetLub()
912 Type* lub = BitsetType::NewForTesting(BitsetType::Lub(type)); in Is2()