Home
last modified time | relevance | path

Searched refs:orig_seq (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/microsoft/compiler/
Ddxil_nir_algebraic.py55 orig_seq = (outer_op, (inner_op, 'a@' + str(int(src_sz))))
64 arr += [(orig_seq, new_seq)]
72 orig_seq = (outer_op, (inner_op, 'a@' + str(int(src_sz))))
79 arr += [(orig_seq, new_seq)]
82 orig_seq = (outer_op, (inner_op, a))
89 arr += [(orig_seq, new_seq)]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/
Dsequence_lock.h104 int64_t orig_seq = lock_.load(std::memory_order_relaxed); in Write() local
105 assert((orig_seq & 1) == 0); // Must be initially unlocked. in Write()
106 lock_.store(orig_seq + 1, std::memory_order_relaxed); in Write()
117 lock_.store(orig_seq + 2, std::memory_order_release); in Write()