Searched defs:short_size (Results 1 - 4 of 4) sorted by relevance

/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp77 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/
H A Dassembler-x87.cc1346 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);
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.cc1413 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
1472 if (is_int8(offs - short_size)) {
1475 EMIT((offs - short_size) & 0xFF);
/external/chromium_org/v8/src/x64/
H A Dassembler-x64.cc977 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);

Completed in 106 milliseconds