HomeSort by: relevance | last modified time | path
    Searched refs:regstart (Results 1 - 3 of 3) sorted by relevancy

  /src/include/
regexp.h 87 char regstart; /* Internal use only. */ member in struct:regexp
  /src/sys/arch/aarch64/aarch64/
aarch32_syscall.c 86 int regstart = 1; /* args start from r1 */ local in function:EMULNAME
89 int regstart = 0; /* args start from r0 */ local in function:EMULNAME
104 int regstart = 0; /* args start from r0 */ local in function:EMULNAME
126 regstart = off; /* args start from r1 or r2 */
150 *args32++ = (uint32_t)tf->tf_reg[regstart++];
  /src/lib/libcompat/regexp/
regexp.c 53 * regstart char that must begin a match; '\0' if none obvious
58 * Regstart and reganch permit very fast decisions on suitable starting points
255 r->regstart = '\0'; /* Worst-case defaults. */
265 r->regstart = *OPERAND(scan);
273 * the regstart check works with the beginning of the r.e.
838 if (prog->regstart != '\0')
840 while ((s = strchr(s, prog->regstart)) != NULL) {
1199 if (r->regstart != '\0')
1200 printf("start `%c' ", r->regstart);

Completed in 12 milliseconds