Lines Matching refs:outptr
227 if (__glibc_unlikely (outptr + 4 > outend)) \
234 put16 (outptr, bswap_16 (0xd7c0 + (c >> 10))); \
235 outptr += 2; \
236 put16 (outptr, bswap_16 (0xdc00 + (c & 0x3ff))); \
239 put16 (outptr, bswap_16 (c)); \
251 if (__glibc_unlikely (outptr + 4 > outend)) \
258 put16 (outptr, 0xd7c0 + (c >> 10)); \
259 outptr += 2; \
260 put16 (outptr, 0xdc00 + (c & 0x3ff)); \
263 put16 (outptr, c); \
265 outptr += 2; \
290 put32 (outptr, u1); \
323 put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
332 put32 (outptr, u1); \
363 put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
367 outptr += 4; \