HomeSort by relevance Sort by last modified time
    Searched full:stack_index (Results 1 - 11 of 11) sorted by null

  /art/compiler/optimizing/
locations.h 116 static uword EncodeStackIndex(intptr_t stack_index) {
117 DCHECK(-kStackIndexBias <= stack_index);
118 DCHECK(stack_index < kStackIndexBias);
119 return static_cast<uword>(kStackIndexBias + stack_index);
122 static Location StackSlot(intptr_t stack_index) {
123 uword payload = EncodeStackIndex(stack_index);
126 DCHECK_EQ(loc.GetStackIndex(), stack_index);
134 static Location DoubleStackSlot(intptr_t stack_index) {
135 uword payload = EncodeStackIndex(stack_index);
138 DCHECK_EQ(loc.GetStackIndex(), stack_index);
    [all...]
  /external/chromium_org/base/test/
trace_event_analyzer.cc 745 for (int stack_index = static_cast<int>(begin_stack.size()) - 1;
746 stack_index >= 0; --stack_index) {
747 TraceEvent& begin_event = *begin_stack[stack_index];
755 begin_stack.erase(begin_stack.begin() + stack_index);
  /external/chromium_org/base/debug/
trace_event_memory.h 115 static ScopeData GetScopeDataForTest(int stack_index);
trace_event_memory.cc 294 int stack_index) {
296 return stack->scope_data[stack_index];
  /external/chromium_org/third_party/mesa/src/src/glx/
indirect_vertex_array.c 292 arrays->stack_index = 0;
    [all...]
indirect_vertex_array_priv.h 308 unsigned stack_index; member in struct:array_state_vector
  /external/mesa3d/src/glx/
indirect_vertex_array.c 292 arrays->stack_index = 0;
    [all...]
indirect_vertex_array_priv.h 308 unsigned stack_index; member in struct:array_state_vector
  /external/chromium_org/v8/src/compiler/
instruction-selector.cc 342 int stack_index = -UnallocatedOperand::cast(op)->fixed_slot_index() - 1; local
343 if (static_cast<size_t>(stack_index) >= buffer->pushed_nodes.size()) {
344 buffer->pushed_nodes.resize(stack_index + 1, NULL);
346 DCHECK_EQ(NULL, buffer->pushed_nodes[stack_index]);
347 buffer->pushed_nodes[stack_index] = *iter;
    [all...]
  /external/chromium_org/tools/findit/
findit_for_crash.py 482 for stack_index, cl, match in matches:
494 combined_matches.append((stack_index, cl, match))
503 for stack_index, cl, match in combined_matches:
  /external/chromium_org/v8/src/mips64/
simulator-mips64.cc     [all...]

Completed in 383 milliseconds