Symbol: regoff_t
headers/posix/regex.h
425
regoff_t *start;
headers/posix/regex.h
426
regoff_t *end;
headers/posix/regex.h
444
regoff_t rm_so; /* Byte offset from string's start to substring's start. */
headers/posix/regex.h
445
regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
headers/posix/regex.h
514
regoff_t *__starts, regoff_t *__ends);
src/build/libgnuregex/regex.c
2815
regoff_t *starts, *ends;
src/build/libgnuregex/regex.c
2828
regs->start = regs->end = (regoff_t) 0;
src/build/libgnuregex/regex.c
3440
regs->start = TALLOC (regs->num_regs, regoff_t);
src/build/libgnuregex/regex.c
3441
regs->end = TALLOC (regs->num_regs, regoff_t);
src/build/libgnuregex/regex.c
3453
RETALLOC (regs->start, regs->num_regs, regoff_t);
src/build/libgnuregex/regex.c
3454
RETALLOC (regs->end, regs->num_regs, regoff_t);
src/build/libgnuregex/regex.c
4831
regs.start = TALLOC (nmatch, regoff_t);
src/build/libgnuregex/regex.c
4832
regs.end = TALLOC (nmatch, regoff_t);
src/build/libgnuregex/regex.h
362
regoff_t *start;
src/build/libgnuregex/regex.h
363
regoff_t *end;
src/build/libgnuregex/regex.h
380
regoff_t rm_so; /* Byte offset from string's start to substring's start. */
src/build/libgnuregex/regex.h
381
regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
src/build/libgnuregex/regex.h
468
unsigned num_regs, regoff_t *starts, regoff_t *ends));
src/kits/mail/mail_util.cpp
1254
regs.start = (regoff_t*)malloc(gNsub*sizeof(regoff_t));
src/kits/mail/mail_util.cpp
1255
regs.end = (regoff_t*)malloc(gNsub*sizeof(regoff_t));
src/system/libroot/posix/glibc/regex/regex_internal.h
189
typedef regoff_t Idx;
src/system/libroot/posix/glibc/regex/regexec.c
2683
regoff_t sl_str_diff;
src/system/libroot/posix/glibc/regex/regexec.c
2730
regoff_t sl_str_off;
src/system/libroot/posix/glibc/regex/regexec.c
275
regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
285
regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
287
Idx start, regoff_t range, struct re_registers *regs)
src/system/libroot/posix/glibc/regex/regexec.c
296
regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
308
regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
310
const char *string2, Idx length2, Idx start, regoff_t range,
src/system/libroot/posix/glibc/regex/regexec.c
320
static regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
323
regoff_t range, struct re_registers *regs,
src/system/libroot/posix/glibc/regex/regexec.c
327
regoff_t rval;
src/system/libroot/posix/glibc/regex/regexec.c
368
static regoff_t
src/system/libroot/posix/glibc/regex/regexec.c
370
Idx start, regoff_t range, Idx stop, struct re_registers *regs,
src/system/libroot/posix/glibc/regex/regexec.c
376
regoff_t rval;
src/system/libroot/posix/glibc/regex/regexec.c
39
static regoff_t re_search_2_stub (struct re_pattern_buffer *bufp,
src/system/libroot/posix/glibc/regex/regexec.c
42
Idx start, regoff_t range,
src/system/libroot/posix/glibc/regex/regexec.c
45
static regoff_t re_search_stub (struct re_pattern_buffer *bufp,
src/system/libroot/posix/glibc/regex/regexec.c
47
regoff_t range, Idx stop,
src/system/libroot/posix/glibc/regex/regexec.c
470
regs->start = re_malloc (regoff_t, need_regs);
src/system/libroot/posix/glibc/regex/regexec.c
473
regs->end = re_malloc (regoff_t, need_regs);
src/system/libroot/posix/glibc/regex/regexec.c
487
regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs);
src/system/libroot/posix/glibc/regex/regexec.c
488
regoff_t *new_end;
src/system/libroot/posix/glibc/regex/regexec.c
491
new_end = re_realloc (regs->end, regoff_t, need_regs);
src/system/libroot/posix/glibc/regex/regexec.c
537
__re_size_t num_regs, regoff_t *starts, regoff_t *ends)