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

  /external/v8/tools/
bigint-tester.py 18 kLineLength = 70 # A bit less than 80.
125 return GenRandom(random.randint(0, kLineLength))
152 return random.randint(0, kLineLength), random.randint(0, kLineLength)
208 left_length = random.randint(1, kLineLength)
209 return left_length, kLineLength - left_length
220 min_left = kLineLength * 6 / 10
221 max_right = kLineLength * 7 / 10
222 return random.randint(min_left, kLineLength), random.randint(1, max_right)
237 left_length = random.randint(0, kLineLength - 1
    [all...]
  /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 209 static constexpr size_t kLineLength = 32;
220 if ((page - start) % kLineLength == kLineLength - 1) {
226 if ((end - start) % kLineLength != 0) {
376 static constexpr size_t kLineLength = 32;
386 if (page % kLineLength == kLineLength - 1) {
392 if (pagemap.size() % kLineLength != 0) {
  /external/v8/src/arm/
simulator-arm.h 40 static const int kLineLength = 1 << kLineShift;
41 static const int kLineMask = kLineLength - 1;
simulator-arm.cc 639 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/ppc/
simulator-ppc.h 37 static const int kLineLength = 1 << kLineShift;
38 static const int kLineMask = kLineLength - 1;
simulator-ppc.cc 730 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/mips/
simulator-mips.h 40 static const int kLineLength = 1 << kLineShift;
41 static const int kLineMask = kLineLength - 1;
simulator-mips.cc 875 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/mips64/
simulator-mips64.h 40 static const int kLineLength = 1 << kLineShift;
41 static const int kLineMask = kLineLength - 1;
simulator-mips64.cc 806 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]
  /external/v8/src/s390/
simulator-s390.h 37 static const int kLineLength = 1 << kLineShift;
38 static const int kLineMask = kLineLength - 1;
simulator-s390.cc 735 memcpy(cached_line, line, CachePage::kLineLength);
    [all...]

Completed in 196 milliseconds