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

  /external/v8/src/ast/
scopeinfo.h 66 DCHECK(IndexField::is_valid(index));
67 value_ = ModeField::encode(mode) | IndexField::encode(index) |
90 int index() { return IndexField::decode(value_); }
97 class IndexField : public BitField<int, 6, 32 - 6> {};
  /external/v8/src/compiler/
instruction.h 410 value_ |= static_cast<int64_t>(index) << IndexField::kShift;
415 return static_cast<int64_t>(value_) >> IndexField::kShift;
421 IndexField::kShift);
427 IndexField::kShift);
474 class IndexField : public BitField64<int32_t, 35, 29> {};
    [all...]

Completed in 58 milliseconds