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

  /external/chromium_org/v8/src/
types.cc 114 // Glb and lub computation.
137 TypeImpl<Config>::BitsetType::Lub(TypeImpl* type) {
149 return Config::is_class(type) ? Lub(*Config::as_class(type)) :
164 TypeImpl<Config>::BitsetType::Lub(i::Map* map) {
262 TypeImpl<Config>::BitsetType::Lub(i::Object* value) {
265 return Lub(value->Number()) & (value->IsSmi() ? kTaggedInt : kTaggedPtr);
267 return Lub(i::HeapObject::cast(value)->map());
273 TypeImpl<Config>::BitsetType::Lub(double value) {
277 if (IsUint32Double(value)) return Lub(FastD2UI(value));
278 if (IsInt32Double(value)) return Lub(FastD2I(value))
341 int lub = kNone; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 44 using Type::BitsetType::Lub;
71 using HeapType::BitsetType::Lub;
74 static bitset Lub(Handle<HeapType> type) { return Lub(*type); }
844 TypeHandle lub = local
845 Rep::BitsetType::New(Rep::BitsetType::Lub(type), T.region());
846 CHECK(type->Is(lub));
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())
    [all...]

Completed in 468 milliseconds