Searched refs:cur_idx (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.cpp137 uint32_t cur_idx = m_frames.size ();
139 m_frames[cur_idx - 1]->reg_ctx_lldb_sp,
141 cur_idx,
151 if (cur_idx > 300000)
155 cur_idx < 100 ? cur_idx : 100, "", cur_idx);
163 if (m_frames[cur_idx - 1]->reg_ctx_lldb_sp->TryFallbackUnwindPlan())
169 cur_idx < 100 ? cur_idx
[all...]
/freebsd-10.1-release/contrib/libgnuregex/
H A Dregex_internal.h344 int cur_idx; member in struct:re_string_t
404 ((pstr)->mbs[(pstr)->cur_idx + offset])
406 ((pstr)->mbs[(pstr)->cur_idx++])
412 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx)
413 #define re_string_cur_idx(pstr) ((pstr)->cur_idx)
417 #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx))
418 #define re_string_set_index(pstr,idx) ((pstr)->cur_idx = (idx))
H A Dregexec.c63 int cur_idx, int nmatch) internal_function;
1543 regmatch_t *prev_idx_match, int cur_node, int cur_idx, int nmatch)
1553 pmatch[reg_num].rm_so = cur_idx;
1563 if (pmatch[reg_num].rm_so < cur_idx)
1565 pmatch[reg_num].rm_eo = cur_idx;
1583 pmatch[reg_num].rm_eo = cur_idx;
2341 int cur_idx = re_string_cur_idx (&mctx->input);
2343 if (cur_idx > mctx->state_log_top)
2345 mctx->state_log[cur_idx] = next_state;
2346 mctx->state_log_top = cur_idx;
1539 update_regs(const re_dfa_t *dfa, regmatch_t *pmatch, regmatch_t *prev_idx_match, int cur_node, int cur_idx, int nmatch) argument
2337 int cur_idx = re_string_cur_idx (&mctx->input); local
3066 int cur_idx; local
[all...]
H A Dregex_internal.c830 pstr->cur_idx = 0;
846 && ! re_string_is_single_byte_char (pstr, pstr->cur_idx + idx))
850 off = pstr->cur_idx + idx;
862 since peek_byte_case doesn't advance cur_idx in any way. */
889 if (!re_string_first_byte (pstr, pstr->cur_idx))
892 off = pstr->offsets[pstr->cur_idx];
899 re_string_char_size_at (pstr, pstr->cur_idx));
904 return pstr->raw_mbs[pstr->raw_mbs_idx + pstr->cur_idx++];

Completed in 118 milliseconds