HomeSort by relevance Sort by last modified time
    Searched refs:SOP (Results 1 - 14 of 14) sorted by null

  /toolchain/binutils/binutils-2.27/include/opcode/
arc.h 486 #define INSN3OP(MOP,SOP) (((MOP & 0x1F) << 27) | ((SOP & 0x3F) << 16))
488 #define INSN2OP(MOP,SOP) (INSN2OPX (MOP,0x2F,SOP))
490 #define INSN3OP_ABC(MOP,SOP) (INSN3OP (MOP,SOP))
491 #define INSN3OP_ALC(MOP,SOP) (INSN3OP (MOP,SOP) | FIELDB (62))
492 #define INSN3OP_ABL(MOP,SOP) (INSN3OP (MOP,SOP) | FIELDC (62)
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
arc-ext-tbl.h 58 #define EXTINSN2OP(NAME, CPU, CLASS, SCLASS, MOP, SOP) \
59 { NAME, INSN2OP_BC (MOP,SOP), MINSN2OP_BC, CPU, CLASS, SCLASS, \
61 { NAME, INSN2OP_0C (MOP,SOP), MINSN2OP_0C, CPU, CLASS, SCLASS, \
63 { NAME, INSN2OP_BU (MOP,SOP), MINSN2OP_BU, CPU, CLASS, SCLASS, \
65 { NAME, INSN2OP_0U (MOP,SOP), MINSN2OP_0U, CPU, CLASS, SCLASS, \
67 { NAME, INSN2OP_BL (MOP,SOP), MINSN2OP_BL, CPU, CLASS, SCLASS, \
69 { NAME, INSN2OP_0L (MOP,SOP), MINSN2OP_0L, CPU, CLASS, SCLASS, \
73 #define EXTINSN3OP(NAME, CPU, CLASS, SCLASS, MOP, SOP) \
74 { NAME, INSN3OP_ABC (MOP,SOP), MINSN3OP_ABC, CPU, CLASS, SCLASS, \
76 { NAME, INSN3OP_0BC (MOP,SOP), MINSN3OP_0BC, CPU, CLASS, SCLASS,
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regex2.h 112 typedef u_int32_t sop; /* strip operator */ typedef
119 #define SOP(op, opnd) ((op)|(opnd))
181 sop *strip; /* malloced area for strip */
engine.c 361 sopno ss; /* start sop of current subRE */
362 sopno es; /* end sop of current subRE */
367 sopno ssub; /* start sop of subsubRE */
368 sopno esub; /* end sop of subsubRE */
571 sopno ss; /* start sop of current subRE */
573 sopno ssub; /* start sop of subsubRE */
574 sopno esub; /* end sop of subsubRE */
579 sop s;
686 while (m->g->strip[ss] != SOP(O_BACK, i))
976 sop s
    [all...]
regcomp.c 112 sop *strip; /* malloced strip */
163 static void doemit(struct parse *p, sop op, sopno opnd);
164 static void doinsert(struct parse *p, sop op, sopno opnd, sopno pos);
199 #define EMIT(op, sopnd) doemit(p, (sop)(op), sopnd)
200 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
202 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos)
218 (p)->ssize * sizeof(sop))
269 p->strip = calloc(p->ssize, sizeof(sop));
    [all...]
  /external/llvm/lib/Support/
regex2.h 65 typedef unsigned long sop; /* strip operator */ typedef
72 #define SOP(op, opnd) ((op)|(opnd))
132 sop *strip; /* malloced area for strip */
regengine.inc 299 sopno ss; /* start sop of current subRE */
300 sopno es; /* end sop of current subRE */
305 sopno ssub; /* start sop of subsubRE */
306 sopno esub; /* end sop of subsubRE */
487 sopno ss; /* start sop of current subRE */
489 sopno ssub; /* start sop of subsubRE */
490 sopno esub; /* end sop of subsubRE */
495 sop s;
598 while (m->g->strip[ss] != SOP(O_BACK, i))
857 sop s
    [all...]
regcomp.c 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)
195 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
regex2.h 62 typedef unsigned long sop; /* strip operator */ typedef
69 #define SOP(op, opnd) ((op)|(opnd))
129 sop *strip; /* malloced area for strip */
regengine.inc 299 sopno ss; /* start sop of current subRE */
300 sopno es; /* end sop of current subRE */
305 sopno ssub; /* start sop of subsubRE */
306 sopno esub; /* end sop of subsubRE */
487 sopno ss; /* start sop of current subRE */
489 sopno ssub; /* start sop of subsubRE */
490 sopno esub; /* end sop of subsubRE */
495 sop s;
598 while (m->g->strip[ss] != SOP(O_BACK, i))
857 sop s
    [all...]
regcomp.c 60 sop *strip; /* malloced strip */
100 static void doemit(struct parse *, sop, size_t);
101 static void doinsert(struct parse *, sop, size_t, sopno);
102 static void dofwd(struct parse *, sopno, sop);
131 #define EMIT(op, sopnd) doemit(p, (sop)(op), (size_t)(sopnd))
132 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
134 #define ASTERN(sop, pos) EMIT(sop, HERE()-pos)
187 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regex2.h 65 typedef unsigned long sop; /* strip operator */ typedef
72 #define SOP(op, opnd) ((op)|(opnd))
132 sop *strip; /* malloced area for strip */
regengine.inc 299 sopno ss; /* start sop of current subRE */
300 sopno es; /* end sop of current subRE */
305 sopno ssub; /* start sop of subsubRE */
306 sopno esub; /* end sop of subsubRE */
487 sopno ss; /* start sop of current subRE */
489 sopno ssub; /* start sop of subsubRE */
490 sopno esub; /* end sop of subsubRE */
495 sop s;
598 while (m->g->strip[ss] != SOP(O_BACK, i))
857 sop s
    [all...]
regcomp.c 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)
195 p->strip = (sop *)calloc(p->ssize, sizeof(sop));
    [all...]

Completed in 295 milliseconds