Lines Matching refs:sop
68 sop *strip; /* malloced strip */
108 static void doemit(struct parse *, sop, size_t);
109 static void doinsert(struct parse *, sop, size_t, sopno);
110 static void dofwd(struct parse *, sopno, sop);
139 #define EMIT(op, sopnd) doemit(p, (sop)(op), (size_t)(sopnd))
140 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
142 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos) argument
195 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp()
1334 (char *)(p->strip + start), (size_t)len*sizeof(sop)); in dupl()
1347 doemit(struct parse *p, sop op, size_t opnd) in doemit()
1369 doinsert(struct parse *p, sop op, size_t opnd, sopno pos) in doinsert()
1372 sop s; in doinsert()
1396 (HERE()-pos-1)*sizeof(sop)); in doinsert()
1404 dofwd(struct parse *p, sopno pos, sop value) in dofwd()
1420 sop *sp; in enlarge()
1425 if ((uintptr_t)size > SIZE_MAX / sizeof(sop)) { in enlarge()
1430 sp = (sop *)realloc(p->strip, size*sizeof(sop)); in enlarge()
1446 if ((uintptr_t)p->slen > SIZE_MAX / sizeof(sop)) { in stripsnug()
1452 g->strip = (sop *)realloc((char *)p->strip, p->slen * sizeof(sop)); in stripsnug()
1471 sop *scan; in findmust()
1472 sop *start = 0; /* start initialized in the default case, after that */ in findmust()
1473 sop *newstart = 0; /* newstart was initialized in the OCHAR case */ in findmust()
1475 sop s; in findmust()
1549 sop *scan; in pluscount()
1550 sop s; in pluscount()