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

  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 88 const uint32_t stop_idx = m_curr_idx + size; local
89 for (uint32_t i = first_idx; i < stop_idx; ++i)
112 const uint32_t stop_idx = m_curr_idx + size; local
113 for (uint32_t i = first_idx; i < stop_idx; ++i)
  /external/opencv/cv/src/
cvconvhull.cpp 255 int stop_idx; local
427 stop_idx = tr_count > 2 ? tr_stack[1] : tl_count > 2 ? tl_stack[tl_count - 2] : -1;
443 if( stop_idx >= 0 )
447 if( check_idx == stop_idx || (check_idx >= 0 &&
448 pointer[check_idx]->x == pointer[stop_idx]->x &&
449 pointer[check_idx]->y == pointer[stop_idx]->y) )
  /external/lldb/source/Commands/
CommandObjectCommands.cpp 160 std::pair<bool,uint64_t> stop_idx = {m_options.m_stop_idx.OptionWasSet(),m_options.m_stop_idx.GetCurrentValue()}; local
170 stop_idx.second = history.GetSize() - 1;
172 else if (stop_idx.first)
174 start_idx.second = stop_idx.second;
175 stop_idx.second = history.GetSize() - 1;
180 stop_idx.second = history.GetSize() - 1;
185 if (!start_idx.first && !stop_idx.first && !count.first)
188 stop_idx.second = history.GetSize() - 1;
194 stop_idx.second = start_idx.second + count.second - 1;
196 else if (!stop_idx.first
    [all...]

Completed in 59 milliseconds