Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dutf8.h687 uint8_t __b, __count=1, __shift=6; \
695 (c)|=(UChar32)__b<<__shift; \
698 (c)|=(UChar32)(__b&0x3f)<<__shift; \
700 __shift+=6; \
Dutf_old.h474 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/
Dutf8.h687 uint8_t __b, __count=1, __shift=6; \
695 (c)|=(UChar32)__b<<__shift; \
698 (c)|=(UChar32)(__b&0x3f)<<__shift; \
700 __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; \
/third_party/icu/icu4c/source/common/unicode/
Dutf8.h687 uint8_t __b, __count=1, __shift=6; \
695 (c)|=(UChar32)__b<<__shift; \
698 (c)|=(UChar32)(__b&0x3f)<<__shift; \
700 __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; \
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dutf8.h687 uint8_t __b, __count=1, __shift=6; \
695 (c)|=(UChar32)__b<<__shift; \
698 (c)|=(UChar32)(__b&0x3f)<<__shift; \
700 __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; \
/third_party/gstreamer/gstreamer/gst/
Dgstutils.h165 #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)