Home
last modified time | relevance | path

Searched refs:__shift (Results 1 – 7 of 7) sorted by relevance

/external/icu/libandroidicu/include/unicode/
Dutf8.h686 uint8_t __b, __count=1, __shift=6; \
694 (c)|=(UChar32)__b<<__shift; \
697 (c)|=(UChar32)(__b&0x3f)<<__shift; \
699 __shift+=6; \
Dutf_old.h471 uint8_t __b, __count=1, __shift=6; \
479 (c)|=(UChar32)__b<<__shift; \
482 (c)|=(UChar32)(__b&0x3f)<<__shift; \
484 __shift+=6; \
/external/icu/icu4c/source/common/unicode/
Dutf8.h686 uint8_t __b, __count=1, __shift=6; \
694 (c)|=(UChar32)__b<<__shift; \
697 (c)|=(UChar32)(__b&0x3f)<<__shift; \
699 __shift+=6; \
Dutf_old.h471 uint8_t __b, __count=1, __shift=6; \
479 (c)|=(UChar32)__b<<__shift; \
482 (c)|=(UChar32)(__b&0x3f)<<__shift; \
484 __shift+=6; \
/external/libcxx/benchmarks/
Dunordered_set_operations.bench.cpp27 std::size_t rotate_by_at_least_1(std::size_t __val, int __shift) { in rotate_by_at_least_1() argument
28 return (__val >> __shift) | (__val << (64 - __shift)); in rotate_by_at_least_1()
/external/libcxx/include/
Dutility1043 static _Size __rotate(_Size __val, int __shift) {
1044 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
1047 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
1048 return (__val >> __shift) | (__val << (64 - __shift));
Dtype_traits4838 operator<<=(byte& __lhs, _Integer __shift) noexcept
4839 { return __lhs = __lhs << __shift; }
4843 operator<< (byte __lhs, _Integer __shift) noexcept
4844 …{ return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) << __shift)…
4848 operator>>=(byte& __lhs, _Integer __shift) noexcept
4849 { return __lhs = __lhs >> __shift; }
4853 operator>> (byte __lhs, _Integer __shift) noexcept
4854 …{ return static_cast<byte>(static_cast<unsigned char>(static_cast<unsigned int>(__lhs) >> __shift)…