Searched refs:_old (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/util/ |
D | u_atomic.h | 96 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument 158 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument 159 …eof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), (char) (_old)) : \ 160 …eof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), (short) (_old)) : \ 161 …eof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), (long) (_old)) : \ 162 …eof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), (__int64)(_old)) : \
|
/external/python/cpython3/Include/ |
D | ceval.h | 126 do { unsigned char _old = PyThreadState_GET()->recursion_critical;\ 130 PyThreadState_GET()->recursion_critical = _old; \
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 1951 self._old = self._var_scope_store.current_scope 1962 self._old.name + "/" + 1963 self._name_or_scope if self._old.name else self._name_or_scope) 1965 self._old.reuse) # Re-using is inherited by sub-scopes. 1973 initializer=self._old.initializer, 1974 regularizer=self._old.regularizer, 1975 caching_device=self._old.caching_device, 1976 partitioner=self._old.partitioner, 1977 dtype=self._old.dtype, 1978 use_resource=self._old.use_resource, [all …]
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_atomic.h | 333 #define p_atomic_cmpxchg(_v, _old, _new) \ argument 334 atomic_cas_32( (uint32_t *) _v, (uint32_t) _old, (uint32_t) _new)
|
/external/antlr/runtime/Python3/ |
D | ez_setup.py | 213 DirectorySandbox._old = DirectorySandbox._violation 225 DirectorySandbox._violation = DirectorySandbox._old 226 del DirectorySandbox._old
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2416 .. _old-style-special-lookup:
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 2118 .. _old-string-formatting:
|