Searched refs:_old (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/util/ |
D | u_atomic.h | 90 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v)) argument 149 #define p_atomic_cmpxchg(_v, _old, _new) (\ argument 150 …eof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), (char) (_old)) : \ 151 …eof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), (short) (_old)) : \ 152 …eof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), (long) (_old)) : \ 153 …eof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), (__int64)(_old)) : \
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 1609 self._old = self._default_varscope[0] 1619 self._old.name + "/" + self._name_or_scope if self._old.name 1622 or self._old.reuse) # Re-using is inherited by sub-scopes. 1630 initializer=self._old.initializer, 1631 regularizer=self._old.regularizer, 1632 caching_device=self._old.caching_device, 1633 partitioner=self._old.partitioner, 1634 dtype=self._old.dtype, 1635 use_resource=self._old.use_resource, 1636 custom_getter=self._old.custom_getter, [all …]
|
/external/python/cpython3/Include/ |
D | ceval.h | 113 do { unsigned char _old = PyThreadState_GET()->recursion_critical;\ 117 PyThreadState_GET()->recursion_critical = _old; \
|
/external/tensorflow/tensorflow/python/eager/ |
D | function.py | 221 self._old = self._g._get_control_flow_context() # pylint: disable=protected-access 225 self._g._set_control_flow_context(self._old) # pylint: disable=protected-access
|
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/ |
D | tpu_estimator.py | 2171 self._old = self._g._get_control_flow_context() 2176 self._g._set_control_flow_context(self._old) # pylint: disable=protected-access
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2404 .. _old-style-special-lookup:
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 2060 .. _old-string-formatting:
|