Lines Matching defs:old

1909 		uint32_t new, old;
1911 new = old = itask->itask_flags;
1915 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4106 uint8_t old, new;
4109 old = new = itl->itl_flags;
4110 if (old & STMF_ITL_BEING_TERMINATED)
4113 } while (atomic_cas_8(&itl->itl_flags, old, new) != old);
4820 uint32_t old, new;
4880 old = new = itask->itask_flags;
4893 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4985 uint32_t new, old;
4987 new = old = itask->itask_flags;
4991 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5034 uint32_t new, old;
5057 new = old = itask->itask_flags;
5058 if (old & ITASK_BEING_ABORTED) {
5076 if (old & ITASK_KNOWN_TO_LU) {
5079 if (old & ITASK_IN_WORKER_QUEUE) {
5089 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5136 uint32_t new, old;
5138 new = old = itask->itask_flags;
5142 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5178 uint32_t new, old;
5185 new = old = itask->itask_flags;
5186 if (old & ITASK_BEING_ABORTED) {
5203 if (old & ITASK_KNOWN_TO_LU) {
5206 if (old & ITASK_IN_WORKER_QUEUE) {
5215 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5259 uint32_t new, old;
5263 new = old = itask->itask_flags;
5264 if (old & ITASK_BEING_ABORTED) {
5268 if (old & ITASK_IN_WORKER_QUEUE) {
5274 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5294 uint32_t old, new;
5299 old = new = itask->itask_flags;
5300 if ((old & ITASK_BEING_ABORTED) ||
5301 ((old & (ITASK_KNOWN_TO_TGT_PORT |
5306 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5341 uint32_t old, new, f, rf;
5367 old = new = itask->itask_flags;
5368 if ((old & f) != f) {
5372 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5409 uint32_t old, new;
5427 old = new = itask->itask_flags;
5428 if (!(old & ITASK_KNOWN_TO_TGT_PORT))
5431 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5540 uint32_t old, new;
5547 old = new = itask->itask_flags;
5548 if ((old & (ITASK_KNOWN_TO_LU | ITASK_LU_ABORT_CALLED)) ==
5555 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5584 old = new = itask->itask_flags;
5585 if ((old & (ITASK_KNOWN_TO_TGT_PORT |
5592 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
6575 uint32_t old, new;
6634 old = itask->itask_flags;
6635 if (old & ITASK_BEING_ABORTED) {
6646 new = old | ITASK_KNOWN_TO_LU |
6651 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);