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

  /external/v8/src/
frames.h 94 static const int kKindWidth = 2;
95 STATIC_ASSERT(LAST_KIND < (1 << kKindWidth));
96 static const int kIndexWidth = 32 - kKindWidth;
97 class KindField: public BitField<StackHandler::Kind, 0, kKindWidth> {};
98 class IndexField: public BitField<unsigned, kKindWidth, kIndexWidth> {};
  /external/chromium_org/v8/src/
frames.h 110 static const int kKindWidth = 2;
111 STATIC_ASSERT(LAST_KIND < (1 << kKindWidth));
112 static const int kIndexWidth = 32 - kKindWidth;
113 class KindField: public BitField<StackHandler::Kind, 0, kKindWidth> {};
114 class IndexField: public BitField<unsigned, kKindWidth, kIndexWidth> {};

Completed in 326 milliseconds