Searched defs:pstr (Results 1 – 3 of 3) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/regex/ |
A D | regex_internal.c | 39 re_string_allocate (re_string_t *pstr, const char *str, int len, int init_len, in re_string_allocate() 67 re_string_construct (re_string_t *pstr, const char *str, int len, in re_string_construct() 130 re_string_realloc_buffers (re_string_t *pstr, int new_buf_len) in re_string_realloc_buffers() 163 re_string_construct_common (const char *str, int len, re_string_t *pstr, in re_string_construct_common() 195 build_wcs_buffer (re_string_t *pstr) in build_wcs_buffer() 263 build_wcs_upper_buffer (re_string_t *pstr) in build_wcs_upper_buffer() 479 re_string_skip_chars (re_string_t *pstr, int new_raw_idx, wint_t *last_wc) in re_string_skip_chars() 514 build_upper_buffer (re_string_t *pstr) in build_upper_buffer() 537 re_string_translate_buffer (re_string_t *pstr) in re_string_translate_buffer() 558 re_string_reconstruct (re_string_t *pstr, int idx, int eflags) in re_string_reconstruct() [all …]
|
A D | regex_internal.h | 346 #define re_string_peek_byte(pstr, offset) \ argument 348 #define re_string_fetch_byte(pstr) \ argument 350 #define re_string_first_byte(pstr, idx) \ argument 352 #define re_string_is_single_byte_char(pstr, idx) \ argument 355 #define re_string_eoi(pstr) ((pstr)->stop <= (pstr)->cur_idx) argument 356 #define re_string_cur_idx(pstr) ((pstr)->cur_idx) argument 357 #define re_string_get_buffer(pstr) ((pstr)->mbs) argument 358 #define re_string_length(pstr) ((pstr)->len) argument 359 #define re_string_byte_at(pstr,idx) ((pstr)->mbs[idx]) argument 360 #define re_string_skip_bytes(pstr,idx) ((pstr)->cur_idx += (idx)) argument [all …]
|
A D | regexec.c | 3980 re_string_t *pstr = &mctx->input; in extend_buffers() local
|
Completed in 15 milliseconds