Searched refs:regstart (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/less/
H A Dregexp.h15 char regstart; /* Internal use only. */ member in struct:regexp
H A Dregexp.c47 * regstart char that must begin a match; '\0' if none obvious
249 r->regstart = '\0'; /* Worst-case defaults. */
259 r->regstart = *OPERAND(scan);
267 * the regstart check works with the beginning of the r.e.
766 if (prog->regstart != '\0')
768 while ((s = strchr(s, prog->regstart)) != NULL) {
1128 if (r->regstart != '\0')
1129 printf("start `%c' ", r->regstart);
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dregex.c1594 Requires variables fail_stack, regstart, regend, reg_info, and
1640 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1641 PUSH_FAILURE_POINTER (regstart[this_reg]); \
1720 # define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
1772 regstart[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER (); \
1773 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1781 regstart[this_reg] = 0; \
2228 static const char ** regstart, ** regend;
2245 RETALLOC_IF (regstart, num_regs, const char *);
5343 FREE_VAR (regstart); \
2216 static const char ** regstart, ** regend; variable
5626 const CHAR_T **regstart, **regend; local
[all...]
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dregex.c1594 Requires variables fail_stack, regstart, regend, reg_info, and
1640 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1641 PUSH_FAILURE_POINTER (regstart[this_reg]); \
1720 # define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
1772 regstart[this_reg] = (const CHAR_T *) POP_FAILURE_POINTER (); \
1773 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1781 regstart[this_reg] = 0; \
2228 static const char ** regstart, ** regend;
2245 RETALLOC_IF (regstart, num_regs, const char *);
5343 FREE_VAR (regstart); \
2216 static const char ** regstart, ** regend; variable
5626 const CHAR_T **regstart, **regend; local
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dregcache.c1024 int regstart, regend; local
1026 regstart = DEPRECATED_REGISTER_BYTE (regnum);
1027 regend = regstart + DEPRECATED_REGISTER_RAW_SIZE (regnum);
1030 if (myregend <= regstart || regend <= myregstart)
1034 else if (myregstart <= regstart && regend <= myregend)
1035 deprecated_write_register_gen (regnum, myaddr + (regstart - myregstart));
1043 int overlapstart = max (regstart, myregstart);

Completed in 127 milliseconds