Lines Matching refs:store
74 smp_mb(); // Order store to x before load from y.
77 All CPUs will agree that the store to "x" happened before the load
146 smp_mb__after_atomic(); // Order store to x before load from y.
185 store, as described in the "Release Operations" section below.
263 end in _release. These operations order their own store against all
288 to a simple load instruction followed by a simple store instruction.
308 memory-store portion of the RMW operation, and not against the
346 memory-store portion. Note also that conditional operations
416 through an "if" condition to a marked store (WRITE_ONCE() or stronger)
460 primitives require the compiler to emit the corresponding store
502 might (and sometimes does) split a plain C-language store into multiple
504 CPU while such a store is executing might see a value that is a mashup
517 a series of stores with a single store. Some compilers will even split
518 a single store into multiple smaller stores.