HomeSort by relevance Sort by last modified time
    Searched refs:Lub (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/
types.h 254 static bitset Lub(HeapObjectType const& type);
255 static bitset Lub(double value);
256 static bitset Lub(double min, double max);
331 BitsetType::bitset bits = BitsetType::Lub(lim.min, lim.max);
339 BitsetType::bitset Lub() const { return bitset_; }
382 return NewBitset(BitsetType::ExpandInternals(BitsetType::Lub(type)));
531 BitsetType::bitset Lub() const { return BitsetType::kOtherNumber; }
548 BitsetType::bitset bitset = BitsetType::Lub(heap_ref.type());
555 BitsetType::bitset Lub() const { return bitset_; }
types.cc 92 // Glb and lub computation.
126 if (IsHeapConstant()) return AsHeapConstant()->Lub();
128 return AsOtherNumberConstant()->Lub();
130 if (IsRange()) return AsRange()->Lub();
135 Type::bitset BitsetType::Lub(HeapObjectType const& type) {
350 Type::bitset BitsetType::Lub(double value) {
354 if (IsUint32Double(value) || IsInt32Double(value)) return Lub(value, value);
388 Type::bitset BitsetType::Lub(double min, double max) {
390 int lub = kNone; local
395 lub |= mins[i - 1].internal
    [all...]

Completed in 72 milliseconds