HomeSort by relevance Sort by last modified time
    Searched defs:kLineShift (Results 1 - 5 of 5) 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/s390/
simulator-s390.h 81 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
82 static const int kLineLength = 1 << kLineShift;
88 return &validity_map_[offset >> kLineShift];
95 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 103 static const int kLineShift = 2; // The cache line is only 4 bytes right now.
104 static const int kLineLength = 1 << kLineShift;
112 return &validity_map_[offset >> kLineShift];
121 static const int kValidityMapSize = kPageSize >> kLineShift;

Completed in 63 milliseconds