Searched refs:_old (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/util/ |
D | u_atomic.h | 93 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument 152 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument 153 …eof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), (char) (_old)) : \ 154 …eof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), (short) (_old)) : \ 155 …eof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), (long) (_old)) : \ 156 …eof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), (__int64)(_old)) : \
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 1885 self._old = self._var_scope_store.current_scope 1896 self._old.name + "/" + self._name_or_scope if self._old.name 1899 or self._old.reuse) # Re-using is inherited by sub-scopes. 1907 initializer=self._old.initializer, 1908 regularizer=self._old.regularizer, 1909 caching_device=self._old.caching_device, 1910 partitioner=self._old.partitioner, 1911 dtype=self._old.dtype, 1912 use_resource=self._old.use_resource, 1913 custom_getter=self._old.custom_getter, [all …]
|
/external/python/cpython3/Include/ |
D | ceval.h | 129 do { unsigned char _old = PyThreadState_GET()->recursion_critical;\ 133 PyThreadState_GET()->recursion_critical = _old; \
|
/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/tensorflow/tensorflow/python/tpu/ |
D | tpu_estimator.py | 3379 self._old = self._g._get_control_flow_context() 3384 self._g._set_control_flow_context(self._old) # pylint: disable=protected-access
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2416 .. _old-style-special-lookup:
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 2091 .. _old-string-formatting:
|