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

  /external/lldb/tools/lldb-perf/common/stepping/
lldb-perf-stepping.cpp 77 const size_t short_size = strlen(short_format_string) + 5; local
78 char short_buffer[short_size];
85 snprintf (short_buffer, short_size, short_format_string, i);
  /external/chromium_org/v8/src/x87/
assembler-x87.cc 1346 const int short_size = 2; local
1350 if (is_int8(offs - short_size)) {
1353 EMIT((offs - short_size) & 0xFF);
1401 const int short_size = 2; local
1405 if (is_int8(offs - short_size)) {
1408 EMIT((offs - short_size) & 0xFF);
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.cc 1413 const int short_size = 2; local
1417 if (is_int8(offs - short_size)) {
1420 EMIT((offs - short_size) & 0xFF);
1468 const int short_size = 2; local
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.cc 977 const int short_size = 2; local
990 if (is_int8(offs - short_size) && !predictable_code_size()) {
993 emit((offs - short_size) & 0xFF);
1052 const int short_size = sizeof(int8_t); local
1057 if (is_int8(offs - short_size) && !predictable_code_size()) {
1060 emit((offs - short_size) & 0xFF);
    [all...]

Completed in 335 milliseconds