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

  /external/gflags/src/
gflags_reporting.cc 90 static const int kLineLength = 80;
95 if (*chars_in_line + 1 + slen >= kLineLength) { // < 80 chars/line
132 if (newline == NULL && chars_in_line+chars_left < kLineLength) {
138 if (newline != NULL && newline - c_string < kLineLength - chars_in_line) {
145 int whitespace = kLineLength-chars_in_line-1; // < 80 chars/line
153 chars_in_line = kLineLength; // next part gets its own line for sure!
  /art/dexlayout/
dexdiag.cc 202 static constexpr size_t kLineLength = 32;
213 if ((page - start) % kLineLength == kLineLength - 1) {
219 if ((end - start) % kLineLength != 0) {
370 static constexpr size_t kLineLength = 32;
380 if (page % kLineLength == kLineLength - 1) {
386 if (size % kLineLength != 0) {
  /external/v8/src/ppc/
simulator-ppc.h 84 static const int kLineLength = 1 << kLineShift;
85 static const int kLineMask = kLineLength - 1;
simulator-ppc.cc 724 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/arm/
simulator-arm.h 87 static const int kLineLength = 1 << kLineShift;
88 static const int kLineMask = kLineLength - 1;
simulator-arm.cc 644 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/mips/
simulator-mips.h 95 static const int kLineLength = 1 << kLineShift;
96 static const int kLineMask = kLineLength - 1;
simulator-mips.cc 875 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/mips64/
simulator-mips64.h 104 static const int kLineLength = 1 << kLineShift;
105 static const int kLineMask = kLineLength - 1;
simulator-mips64.cc 807 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/s390/
simulator-s390.h 82 static const int kLineLength = 1 << kLineShift;
83 static const int kLineMask = kLineLength - 1;
simulator-s390.cc 725 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]

Completed in 796 milliseconds