Searched refs:__shift (Results 1 – 10 of 10) sorted by relevance
/external/stlport/stlport/stl/ |
D | _bitset.c | 35 void _Base_bitset<_Nw>::_M_do_left_shift(size_t __shift) { in _M_do_left_shift() argument 36 if (__shift != 0) { in _M_do_left_shift() 37 const size_t __wshift = __shift / __BITS_PER_WORD; in _M_do_left_shift() 38 const size_t __offset = __shift % __BITS_PER_WORD; in _M_do_left_shift() 57 void _Base_bitset<_Nw>::_M_do_right_shift(size_t __shift) { in _M_do_right_shift() argument 58 if (__shift != 0) { in _M_do_right_shift() 59 const size_t __wshift = __shift / __BITS_PER_WORD; in _M_do_right_shift() 60 const size_t __offset = __shift % __BITS_PER_WORD; in _M_do_right_shift()
|
D | _bitset.h | 156 void _M_do_left_shift(size_t __shift); 158 void _M_do_right_shift(size_t __shift); 241 void _M_do_left_shift(size_t __shift) { _M_w <<= __shift; } 242 void _M_do_right_shift(size_t __shift) { _M_w >>= __shift; }
|
/external/webkit/JavaScriptCore/icu/unicode/ |
D | utf8.h | 461 uint8_t __b, __count=1, __shift=6; \ 469 (c)|=(UChar32)__b<<__shift; \ 472 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 474 __shift+=6; \
|
/external/webkit/JavaScriptGlue/icu/unicode/ |
D | utf8.h | 461 uint8_t __b, __count=1, __shift=6; \ 469 (c)|=(UChar32)__b<<__shift; \ 472 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 474 __shift+=6; \
|
/external/webkit/WebKit/mac/icu/unicode/ |
D | utf8.h | 461 uint8_t __b, __count=1, __shift=6; \ 469 (c)|=(UChar32)__b<<__shift; \ 472 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 474 __shift+=6; \
|
/external/webkit/WebCore/icu/unicode/ |
D | utf8.h | 461 uint8_t __b, __count=1, __shift=6; \ 469 (c)|=(UChar32)__b<<__shift; \ 472 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 474 __shift+=6; \
|
/external/icu4c/common/unicode/ |
D | utf8.h | 517 uint8_t __b, __count=1, __shift=6; \ 525 (c)|=(UChar32)__b<<__shift; \ 528 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 530 __shift+=6; \
|
D | utf_old.h | 442 uint8_t __b, __count=1, __shift=6; \ 450 (c)|=(UChar32)__b<<__shift; \ 453 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 455 __shift+=6; \
|
/external/chromium/third_party/icu/public/common/unicode/ |
D | utf8.h | 486 uint8_t __b, __count=1, __shift=6; \ 494 (c)|=(UChar32)__b<<__shift; \ 497 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 499 __shift+=6; \
|
D | utf_old.h | 442 uint8_t __b, __count=1, __shift=6; \ 450 (c)|=(UChar32)__b<<__shift; \ 453 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 455 __shift+=6; \
|