Searched refs:__shift (Results 1 – 9 of 9) sorted by relevance
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | utf8.h | 687 uint8_t __b, __count=1, __shift=6; \ 695 (c)|=(UChar32)__b<<__shift; \ 698 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 700 __shift+=6; \
|
D | utf_old.h | 474 uint8_t __b, __count=1, __shift=6; \ 482 (c)|=(UChar32)__b<<__shift; \ 485 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 487 __shift+=6; \
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | utf8.h | 687 uint8_t __b, __count=1, __shift=6; \ 695 (c)|=(UChar32)__b<<__shift; \ 698 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 700 __shift+=6; \
|
D | utf_old.h | 471 uint8_t __b, __count=1, __shift=6; \ 479 (c)|=(UChar32)__b<<__shift; \ 482 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 484 __shift+=6; \
|
/third_party/icu/icu4c/source/common/unicode/ |
D | utf8.h | 687 uint8_t __b, __count=1, __shift=6; \ 695 (c)|=(UChar32)__b<<__shift; \ 698 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 700 __shift+=6; \
|
D | utf_old.h | 471 uint8_t __b, __count=1, __shift=6; \ 479 (c)|=(UChar32)__b<<__shift; \ 482 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 484 __shift+=6; \
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | utf8.h | 687 uint8_t __b, __count=1, __shift=6; \ 695 (c)|=(UChar32)__b<<__shift; \ 698 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 700 __shift+=6; \
|
D | utf_old.h | 471 uint8_t __b, __count=1, __shift=6; \ 479 (c)|=(UChar32)__b<<__shift; \ 482 (c)|=(UChar32)(__b&0x3f)<<__shift; \ 484 __shift+=6; \
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstutils.h | 165 #define _GST_GET(__data, __idx, __size, __shift) \ argument 166 (((guint##__size) (((const guint8 *) (__data))[__idx])) << (__shift)) 168 #define _GST_PUT(__data, __idx, __size, __shift, __num) \ argument 169 (((guint8 *) (__data))[__idx] = (((guint##__size) (__num)) >> (__shift)) & 0xff)
|