HomeSort by relevance Sort by last modified time
    Searched refs:_old (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/util/
u_atomic.h 90 #define p_atomic_cmpxchg(_v, _old, _new) (*(_v) == (_old) ? (*(_v) = (_new), (_old)) : *(_v))
149 #define p_atomic_cmpxchg(_v, _old, _new) (\
150 sizeof *(_v) == sizeof(char) ? _InterlockedCompareExchange8 ((char *) (_v), (char) (_new), (char) (_old)) : \
151 sizeof *(_v) == sizeof(short) ? _InterlockedCompareExchange16((short *) (_v), (short) (_new), (short) (_old)) : \
152 sizeof *(_v) == sizeof(long) ? _InterlockedCompareExchange ((long *) (_v), (long) (_new), (long) (_old)) : \
153 sizeof *(_v) == sizeof(__int64) ? InterlockedCompareExchange64 ((__int64 *)(_v), (__int64)(_new), (__int64)(_old)) : \
  /external/python/cpython3/Include/
ceval.h 113 do { unsigned char _old = PyThreadState_GET()->recursion_critical;\
117 PyThreadState_GET()->recursion_critical = _old; \
  /external/tensorflow/tensorflow/python/ops/
variable_scope.py     [all...]
  /external/tensorflow/tensorflow/python/eager/
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
    [all...]

Completed in 1149 milliseconds