Searched refs:_CASable (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dtypes.h127 typedef int64_t _CASable; typedef in namespace:__gnu_parallel
129 /// Number of bits of _CASable.
130 static const int _CASable_bits = std::numeric_limits<_CASable>::digits;
132 /// ::_CASable with the right half of bits set to 1.
133 static const _CASable _CASable_mask =
134 ((_CASable(1) << (_CASable_bits / 2)) - 1);
H A Dqueue.h63 _GLIBCXX_VOLATILE _CASable _M_borders;
85 _CASable __former_borders = _M_borders;
108 _CASable __former_borders = __encode2(__former_front,
110 _CASable __new_borders = __encode2(__former_front - 1,
135 _CASable __former_borders = __encode2(__former_front,
137 _CASable __new_borders = __encode2(__former_front,
H A Dbase.h110 /** @brief Encode two integers into one gnu_parallel::_CASable.
118 inline _CASable
121 return (((_CASable)__a) << (_CASable_bits / 2)) | (((_CASable)__b) << 0);
124 /** @brief Decode two integers from one gnu_parallel::_CASable.
125 * @param __x __gnu_parallel::_CASable to decode integers from.
133 __decode2(_CASable __x, int& __a, int& __b)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dtypes.h127 typedef int64_t _CASable; typedef in namespace:__gnu_parallel
129 /// Number of bits of _CASable.
130 static const int _CASable_bits = std::numeric_limits<_CASable>::digits;
132 /// ::_CASable with the right half of bits set to 1.
133 static const _CASable _CASable_mask =
134 ((_CASable(1) << (_CASable_bits / 2)) - 1);
H A Dqueue.h63 _GLIBCXX_VOLATILE _CASable _M_borders;
85 _CASable __former_borders = _M_borders;
108 _CASable __former_borders = __encode2(__former_front,
110 _CASable __new_borders = __encode2(__former_front - 1,
135 _CASable __former_borders = __encode2(__former_front,
137 _CASable __new_borders = __encode2(__former_front,
H A Dbase.h110 /** @brief Encode two integers into one gnu_parallel::_CASable.
118 inline _CASable
121 return (((_CASable)__a) << (_CASable_bits / 2)) | (((_CASable)__b) << 0);
124 /** @brief Decode two integers from one gnu_parallel::_CASable.
125 * @param __x __gnu_parallel::_CASable to decode integers from.
133 __decode2(_CASable __x, int& __a, int& __b)

Completed in 368 milliseconds