Searched refs:ADD_BYTE (Results 1 – 2 of 2) sorted by relevance
152 #define ADD_BYTE(b) (dst ? dst[dpos] = (b) : 0, dpos++) in utf16_to_utf8() macro159 ADD_BYTE(src[spos]); in utf16_to_utf8()163 ADD_BYTE(0xc0 | (src[spos]>>6)); in utf16_to_utf8()164 ADD_BYTE(0x80 | (src[spos] & 0x3f)); in utf16_to_utf8()177 ADD_BYTE(0xf0 | (c>>18)); in utf16_to_utf8()178 ADD_BYTE(0x80 | ((c>>12) & 0x3f)); in utf16_to_utf8()179 ADD_BYTE(0x80 | ((c>>6) & 0x3f)); in utf16_to_utf8()180 ADD_BYTE(0x80 | (c & 0x3f)); in utf16_to_utf8()188 ADD_BYTE(0xe0 | src[spos]>>12); in utf16_to_utf8()189 ADD_BYTE(0x80 | ((src[spos]>>6) & 0x3f)); in utf16_to_utf8()[all …]
411 #define ADD_BYTE(x) nga_async_add(sc, &fcs, accm, &alen, (x)) in nga_rcv_sync() macro464 ADD_BYTE(*mtod(m, u_char *)); in nga_rcv_sync()473 ADD_BYTE(~fcs0 & 0xff); in nga_rcv_sync()474 ADD_BYTE(~fcs0 >> 8); in nga_rcv_sync()