OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NEW_VAL
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython3/Include/
pyatomic.h
52
#define _Py_atomic_store_explicit(ATOMIC_VAL,
NEW_VAL
, ORDER) \
53
atomic_store_explicit(&(ATOMIC_VAL)->_value,
NEW_VAL
, ORDER)
83
#define _Py_atomic_store_explicit(ATOMIC_VAL,
NEW_VAL
, ORDER) \
87
__atomic_store_n(&(ATOMIC_VAL)->_value,
NEW_VAL
, ORDER))
157
#define _Py_atomic_store_explicit(ATOMIC_VAL,
NEW_VAL
, ORDER) \
160
__typeof__(atomic_val->_value)
new_val
=
NEW_VAL
;\
161
volatile __typeof__(
new_val
) *volatile_data = &atomic_val->_value; \
172
*volatile_data =
new_val
; \
179
: "+r"(
new_val
) \
[
all
...]
/external/u-boot/scripts/kconfig/
merge_config.sh
120
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/
s_stencil.c
98
#define STENCIL_OP(
NEW_VAL
) \
104
stencil[j] = (GLubyte) (
NEW_VAL
); \
112
stencil[j] = (GLubyte) ((invmask & s) | (wrtmask & (
NEW_VAL
))); \
Completed in 543 milliseconds