HomeSort by relevance Sort by last modified time
    Searched full:__shift (Results 1 - 8 of 8) sorted by null

  /external/stlport/stlport/stl/
_bitset.c 35 void _Base_bitset<_Nw>::_M_do_left_shift(size_t __shift) {
36 if (__shift != 0) {
37 const size_t __wshift = __shift / __BITS_PER_WORD;
38 const size_t __offset = __shift % __BITS_PER_WORD;
57 void _Base_bitset<_Nw>::_M_do_right_shift(size_t __shift) {
58 if (__shift != 0) {
59 const size_t __wshift = __shift / __BITS_PER_WORD;
60 const size_t __offset = __shift % __BITS_PER_WORD;
_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; } local
242 void _M_do_right_shift(size_t __shift) { _M_w >>= __shift; } local
  /external/icu4c/common/unicode/
utf8.h 486 uint8_t __b, __count=1, __shift=6; \
494 (c)|=(UChar32)__b<<__shift; \
497 (c)|=(UChar32)(__b&0x3f)<<__shift; \
499 __shift+=6; \
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; \
    [all...]
  /external/webkit/JavaScriptCore/icu/unicode/
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/
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/
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/
utf8.h 461 uint8_t __b, __count=1, __shift=6; \
469 (c)|=(UChar32)__b<<__shift; \
472 (c)|=(UChar32)(__b&0x3f)<<__shift; \
474 __shift+=6; \

Completed in 641 milliseconds