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

  /src/tests/lib/libc/regex/
debug.c 95 sop opnd; local in function:s_print
114 opnd = OPND(*s);
121 if (strchr("\\|()^$.[+*?{}!<> ", (char)opnd) != NULL)
122 fprintf(d, "\\%c", (char)opnd);
124 fprintf(d, "%s", regchar((char)opnd));
142 fprintf(d, "[(%u)", opnd);
146 fprintf(d, "(\\<%u>", opnd);
149 fprintf(d, "<%u>\\)", opnd);
153 if (OP(*(s+opnd)) != O_PLUS
    [all...]
  /src/lib/libcompat/regexp/
regexp.c 84 /* definition number opnd? meaning */
695 reginsert(op, opnd)
697 char *opnd;
711 while (src > opnd)
714 place = opnd; /* Op node, where operand used to be. */
950 char *opnd; local in function:regmatch
952 opnd = OPERAND(scan);
954 if (*opnd != *reginput)
956 len = strlen(opnd);
957 if (len > 1 && strncmp(opnd, reginput
1104 char *opnd; local in function:regrepeat
    [all...]
  /src/sys/arch/hppa/spmath/
sgl_float.h 323 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
324 Sgl_clear_signexponent_set_hidden(opnd); \
326 guard = (Sall(opnd) >> (-(exponent))) & 1; \
327 if (exponent < 0) sticky |= Sall(opnd) << (32+exponent); \
329 Sall(opnd) >>= (1-exponent); \
333 sticky |= Sall(opnd); \
335 Sgl_setzero(opnd); \
  /src/lib/libc/regex/
regex2.h 85 #define OPND(n) ((n)&OPDMASK)
86 #define SOP(op, opnd) ((op)|(opnd))
regcomp.c 171 static void doemit(struct parse *p, sop op, size_t opnd);
172 static void doinsert(struct parse *p, sop op, size_t opnd, sopno pos);
1866 == static void doemit(struct parse *p, sop op, size_t opnd);
1873 doemit(struct parse *p, sop op, size_t opnd)
1882 assert(opnd < 1<<OPSHIFT);
1890 p->strip[p->slen++] = (sopno)SOP(op, opnd);
1895 == static void doinsert(struct parse *p, sop op, size_t opnd, sopno pos);
1898 doinsert(struct parse *p, sop op, size_t opnd, sopno pos)
1911 EMIT(op, opnd); /* do checks, ensure space */
2047 size_t clen = wcrtomb(buf, (int)OPND(s), &mbs)
    [all...]
  /src/bin/test/
test.c 489 perform_unop(enum token n, const char *opnd)
493 return strlen(opnd) == 0;
495 return strlen(opnd) != 0;
497 return isatty((int)getn(opnd));
499 return filstat(opnd, n);

Completed in 16 milliseconds