Home | History | Annotate | Download | only in libpcap

Lines Matching defs:atom

454 	int atom;
459 atom = atomuse(&s->s);
460 if (atom >= 0) {
461 if (atom == AX_ATOM) {
467 else if (atom < N_ATOMS) {
468 if (!ATOMELEM(def, atom))
469 use |= ATOMMASK(atom);
474 atom = atomdef(&s->s);
475 if (atom >= 0) {
476 if (!ATOMELEM(use, atom))
477 kill |= ATOMMASK(atom);
478 def |= ATOMMASK(atom);
485 atom = atomuse(&b->s);
486 if (atom >= 0) {
487 if (atom == AX_ATOM) {
493 else if (atom < N_ATOMS) {
494 if (!ATOMELEM(def, atom))
495 use |= ATOMMASK(atom);
1144 register int atom;
1146 atom = atomuse(s);
1147 if (atom >= 0) {
1148 if (atom == AX_ATOM) {
1153 last[atom] = 0;
1155 atom = atomdef(s);
1156 if (atom >= 0) {
1157 if (last[atom]) {
1159 last[atom]->code = NOP;
1161 last[atom] = s;
1170 register int atom;
1179 for (atom = 0; atom < N_ATOMS; ++atom)
1180 if (last[atom] && !ATOMELEM(b->out_use, atom)) {
1181 last[atom]->code = NOP;
1205 * Initialize the atom values.
1296 int atom;
1302 for (atom = 0; atom < N_ATOMS; ++atom)
1303 if (ATOMELEM(use, atom))
1304 if (b->val[atom] != succ->val[atom])