HomeSort by: relevance | last modified time | path
    Searched defs:UCHARAT (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libcompat/regexp/
regsub.c 33 #define UCHARAT(p) ((int)*(unsigned char *)(p))
35 #define UCHARAT(p) ((int)*(p)&CHARBITS)
57 if (UCHARAT(prog->program) != MAGIC) {
regexp.c 148 #define UCHARAT(p) ((int)*(unsigned char *)(p))
150 #define UCHARAT(p) ((int)*(p)&CHARBITS)
516 class = UCHARAT(regparse-2)+1;
517 classend = UCHARAT(regparse);
808 if (UCHARAT(prog->program) != MAGIC) {
929 if ((!isalnum(UCHARAT(reginput))) && *reginput != '_')
933 (isalnum(UCHARAT(reginput - 1))
939 if (isalnum(UCHARAT(reginput)) || *reginput == '_')

Completed in 13 milliseconds