HomeSort by relevance Sort by last modified time
    Searched defs:first_input (Results 1 - 2 of 2) sorted by null

  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 76 Operand MemoryOperand(int* first_input) {
77 const int offset = *first_input;
80 *first_input += 2;
85 *first_input += 2;
89 *first_input += 1;
98 int first_input = 0; local
99 return MemoryOperand(&first_input);
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 142 Operand MemoryOperand(int* first_input) {
143 const int offset = *first_input;
146 *first_input += 2;
152 *first_input += 2;
161 int first_input = 0; local
162 return MemoryOperand(&first_input);

Completed in 66 milliseconds