Home
last modified time | relevance | path

Searched refs:__bits (Results 1 – 4 of 4) sorted by relevance

/external/autotest/client/tests/tsc/src/
Dsched.h22 __cpu_mask __bits[__CPU_SETSIZE / __NCPUBITS]; member
31 __arr->__bits[__i] = 0; \
34 ((cpusetp)->__bits[__CPUELT (cpu)] |= __CPUMASK (cpu))
36 ((cpusetp)->__bits[__CPUELT (cpu)] &= ~__CPUMASK (cpu))
38 (((cpusetp)->__bits[__CPUELT (cpu)] & __CPUMASK (cpu)) != 0)
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_posix.h530 unsigned int __bits[4]; member
/external/libcxx/include/
Dalgorithm5756 const unsigned __bits = static_cast<unsigned>(sizeof(_Tp) * __CHAR_BIT__ - 1);
5757 __n &= __bits;
5758 …_cast<_Tp>((__t << __n) | (static_cast<typename make_unsigned<_Tp>::type>(__t) >> (__bits - __n)));
5770 const unsigned __bits = static_cast<unsigned>(sizeof(_Tp) * __CHAR_BIT__ - 1);
5771 __n &= __bits;
5772 …return static_cast<_Tp>((__t << (__bits - __n)) | (static_cast<typename make_unsigned<_Tp>::type>(…
Drandom3632 template<class _RealType, size_t __bits, class _URNG>
3637 const size_t __b = _Dt < __bits ? _Dt : __bits;