Home
last modified time | relevance | path

Searched refs:regoff_t (Results 1 – 6 of 6) sorted by relevance

/haiku/src/build/libgnuregex/
H A Dregex.h354 typedef int regoff_t; typedef
362 regoff_t *start;
363 regoff_t *end;
380 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
381 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
468 unsigned num_regs, regoff_t *starts, regoff_t *ends));
H A Dregex.c2815 regoff_t *starts, *ends;
2828 regs->start = regs->end = (regoff_t) 0;
3440 regs->start = TALLOC (regs->num_regs, regoff_t);
3441 regs->end = TALLOC (regs->num_regs, regoff_t);
3453 RETALLOC (regs->start, regs->num_regs, regoff_t);
3454 RETALLOC (regs->end, regs->num_regs, regoff_t);
4831 regs.start = TALLOC (nmatch, regoff_t);
4832 regs.end = TALLOC (nmatch, regoff_t);
/haiku/headers/posix/
H A Dregex.h416 typedef int regoff_t; typedef
425 regoff_t *start;
426 regoff_t *end;
444 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
445 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
514 regoff_t *__starts, regoff_t *__ends);
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregexec.c39 static regoff_t re_search_2_stub (struct re_pattern_buffer *bufp,
42 Idx start, regoff_t range,
45 static regoff_t re_search_stub (struct re_pattern_buffer *bufp,
47 regoff_t range, Idx stop,
275 regoff_t
285 regoff_t in weak_alias()
287 Idx start, regoff_t range, struct re_registers *regs) in weak_alias()
296 regoff_t in weak_alias()
308 regoff_t in weak_alias()
310 const char *string2, Idx length2, Idx start, regoff_t range, in weak_alias()
[all …]
H A Dregex_internal.h189 typedef regoff_t Idx;
/haiku/src/kits/mail/
H A Dmail_util.cpp1254 regs.start = (regoff_t*)malloc(gNsub*sizeof(regoff_t)); in SubjectToThread()
1255 regs.end = (regoff_t*)malloc(gNsub*sizeof(regoff_t)); in SubjectToThread()