Home
last modified time | relevance | path

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

/external/clearsilver/util/regex/
Dregex.h357 typedef int regoff_t; typedef
365 regoff_t *start;
366 regoff_t *end;
383 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
384 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
469 unsigned num_regs, regoff_t *starts, regoff_t *ends));
Dregex.c3226 regoff_t *starts, *ends;
3239 regs->start = regs->end = (regoff_t *) 0;
3444 ? ((regoff_t) ((ptr) - string1)) \
3445 : ((regoff_t) ((ptr) - string2 + size1)))
3893 regs->start = TALLOC (regs->num_regs, regoff_t);
3894 regs->end = TALLOC (regs->num_regs, regoff_t);
3909 RETALLOC (regs->start, regs->num_regs, regoff_t);
3910 RETALLOC (regs->end, regs->num_regs, regoff_t);
3932 ? ((regoff_t) (d - string1))
3933 : ((regoff_t) (d - string2 + size1)));
[all …]