Home
last modified time | relevance | path

Searched refs:NEW_VAL (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_atomic.h60 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument
61 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER)
91 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \
95 __atomic_store_n(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER))
165 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \
168 __typeof__(atomic_val->_value) new_val = NEW_VAL;\
261 #define _Py_atomic_store_64bit(ATOMIC_VAL, NEW_VAL, ORDER) \
264 …InterlockedExchange64_HLEAcquire((__int64 volatile*)&((ATOMIC_VAL)->_value), (__int64)(NEW_VAL)); \
267 …InterlockedExchange64_HLERelease((__int64 volatile*)&((ATOMIC_VAL)->_value), (__int64)(NEW_VAL)); \
270 _InterlockedExchange64((__int64 volatile*)&((ATOMIC_VAL)->_value), (__int64)(NEW_VAL)); \
[all …]
/external/u-boot/scripts/kconfig/
Dmerge_config.sh120 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
121 if [ "x$PREV_VAL" != "x$NEW_VAL" ] ; then
124 echo New value: $NEW_VAL
/external/mesa3d/src/mesa/swrast/
Ds_stencil.c97 #define STENCIL_OP(NEW_VAL) \ argument
103 stencil[j] = (GLubyte) (NEW_VAL); \
111 stencil[j] = (GLubyte) ((invmask & s) | (wrtmask & (NEW_VAL))); \