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

  /external/v8/src/ppc/
simulator-ppc.h 83 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
84 static const int kLineLength = 1 << kLineShift;
90 return &validity_map_[offset >> kLineShift];
97 static const int kValidityMapSize = kPageSize >> kLineShift;
  /external/v8/src/arm/
simulator-arm.h 84 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
85 static const int kLineLength = 1 << kLineShift;
93 return &validity_map_[offset >> kLineShift];
102 static const int kValidityMapSize = kPageSize >> kLineShift;
  /external/v8/src/mips/
simulator-mips.h 94 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
95 static const int kLineLength = 1 << kLineShift;
103 return &validity_map_[offset >> kLineShift];
112 static const int kValidityMapSize = kPageSize >> kLineShift;
  /external/v8/src/mips64/
simulator-mips64.h 124 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
125 static const int kLineLength = 1 << kLineShift;
133 return &validity_map_[offset >> kLineShift];
142 static const int kValidityMapSize = kPageSize >> kLineShift;

Completed in 75 milliseconds