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

  /external/lldb/include/lldb/Target/
Unwind.h 56 GetFramesUpTo (uint32_t end_idx)
62 for (idx = 0; idx < end_idx; idx++)
StackFrameList.h 105 GetFramesUpTo (uint32_t end_idx);
  /external/chromium_org/third_party/simplejson/
_speedups.c 1030 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1178 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1329 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1401 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
1501 Py_ssize_t end_idx = PyString_GET_SIZE(pystr) - 1; local
1604 Py_ssize_t end_idx = PyUnicode_GET_SIZE(pystr) - 1; local
    [all...]
  /external/oprofile/opjitconv/
jitsymbol.c 207 static int select_one(int start_idx, int end_idx)
215 for (i = start_idx; i <= end_idx; i++) {
315 static unsigned long long eliminate_overlaps(int start_idx, int end_idx,
328 for (i = start_idx; i <= end_idx; i++) {
370 static int handle_overlap_region(int start_idx, int end_idx)
381 for (i = start_idx; i <= end_idx; i++) {
391 idx = select_one(start_idx, end_idx);
392 totaltime = eliminate_overlaps(start_idx, end_idx, idx);
create_bfd.c 26 * from start_idx to end_idx pointing into entries_address_ascending array */
104 /* create a .text section. end_idx: index last jitentry (inclusive!) */
105 static int create_text_section(int start_idx, int end_idx)
114 struct jitentry * ee = entries_address_ascending[end_idx];
144 * Copy all code of the functions that are within start_idx and end_idx to
148 int end_idx)
156 for (i = start_idx; i <= end_idx; i++) {
  /external/lldb/source/Target/
StackFrameList.cpp 254 StackFrameList::GetFramesUpTo(uint32_t end_idx)
261 if (m_frames.size() > end_idx || GetAllFramesFetched())
272 // frames to fetch. However, we don't need ot do that if end_idx is 0 since in that case we always
273 // get the first concrete frame and all the inlined frames below it... And of course, if end_idx is
277 if (end_idx > 0 && end_idx != UINT32_MAX)
282 if (end_idx > 0)
283 end_idx += inlined_depth;
374 } while (m_frames.size() - 1 < end_idx);
449 if (end_idx < m_concrete_frames_fetched
    [all...]
  /art/compiler/dex/
dataflow_iterator.h 69 * @param end_idx the last index we want to iterate (not included).
71 DataflowIterator(MIRGraph* mir_graph, int32_t start_idx, int32_t end_idx)
74 end_idx_(end_idx),
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 215 Idx byte_idx, end_idx, remain_len;
220 end_idx = (pstr->bufs_len > pstr->len) ? pstr->len : pstr->bufs_len;
221 for (byte_idx = pstr->valid_len; byte_idx < end_idx;)
226 remain_len = end_idx - byte_idx;
277 Idx src_idx, byte_idx, end_idx, remain_len;
287 end_idx = (pstr->bufs_len > pstr->len) ? pstr->len : pstr->bufs_len;
293 while (byte_idx < end_idx)
310 remain_len = end_idx - byte_idx;
362 for (src_idx = pstr->valid_raw_len; byte_idx < end_idx;)
367 remain_len = end_idx - byte_idx
214 Idx byte_idx, end_idx, remain_len; local
276 Idx src_idx, byte_idx, end_idx, remain_len; local
533 Idx char_idx, end_idx; local
556 Idx buf_idx, end_idx; local
    [all...]
  /system/core/fs_mgr/
fs_mgr.c 275 * end_idx: On return, will be the last rec that was looked at.
282 static int mount_with_alternatives(struct fstab *fstab, int start_idx, int *end_idx, int *attempted_idx)
288 if (!end_idx || !attempted_idx || start_idx >= fstab->num_entries) {
290 if (end_idx) *end_idx = start_idx;
291 if (attempted_idx) *end_idx = start_idx;
332 *end_idx = i;
  /external/lldb/examples/python/
symbolication.py 501 end_idx = inst_idx
503 end_idx = pc_index + insts_after_pc
504 if end_idx > inst_idx:
505 end_idx = inst_idx
506 for i in range(start_idx, end_idx+1):
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 609 // end_idx must be one past the last valid packet byte. Start
612 size_t end_idx = idx; local
619 end_idx = idx + 1; // The command is one byte long...
624 end_idx = data.find('#', idx + 1);
625 if (end_idx == std::string::npos || end_idx + 3 > data_size)
627 end_idx = std::string::npos;
633 end_idx += 3;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 522 uptr end_idx = beg_idx + count * size; local
524 if (end_idx + size > region->mapped_user) {
527 while (end_idx + size > region->mapped_user + map_size)
529 CHECK_GE(region->mapped_user + map_size, end_idx);
    [all...]
  /external/opencv/cxcore/include/
cxcore.h     [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp     [all...]

Completed in 599 milliseconds