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

  /external/v8/src/compiler/
linkage.h 101 class LocationField : public BitField<int32_t, TypeField::kNext, 31> {};
108 ((location << LocationField::kShift) & LocationField::kMask);
112 return static_cast<int32_t>(bit_field_ & LocationField::kMask) >>
113 LocationField::kShift;
  /external/v8/src/
property-details.h 262 value_ = KindField::encode(kind) | LocationField::encode(location) |
312 PropertyLocation location() const { return LocationField::decode(value_); }
347 class LocationField : public BitField<PropertyLocation, 1, 1> {};
364 // NOTE: TypeField overlaps with KindField and LocationField.
366 STATIC_ASSERT(KindField::kNext == LocationField::kShift);
368 STATIC_ASSERT(TypeField::kNext == LocationField::kNext);
code-stub-assembler.cc     [all...]
  /external/v8/test/cctest/
test-transitions.cc 29 PropertyDetails::LocationField::encode(location);

Completed in 66 milliseconds