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

  /external/v8/src/compiler/
linkage.h 95 class LocationField : public BitField<int32_t, TypeField::kNext, 31> {};
102 ((location << LocationField::kShift) & LocationField::kMask);
106 return static_cast<int32_t>(bit_field_ & LocationField::kMask) >>
107 LocationField::kShift;
  /external/v8/src/
property-details.h 258 value_ = KindField::encode(kind) | LocationField::encode(location) |
308 PropertyLocation location() const { return LocationField::decode(value_); }
342 class LocationField : public BitField<PropertyLocation, 1, 1> {};
359 // NOTE: TypeField overlaps with KindField and LocationField.
361 STATIC_ASSERT(KindField::kNext == LocationField::kShift);
363 STATIC_ASSERT(TypeField::kNext == LocationField::kNext);
  /external/v8/test/cctest/
test-transitions.cc 28 PropertyDetails::LocationField::encode(location);

Completed in 217 milliseconds