Lines Matching refs:outptr

167 	    put32 (outptr, ch);						      \
168 outptr += 4; \
181 put32 (outptr, ch); \
182 outptr += 4; \
253 put32 (outptr, wc1); \
254 outptr += 4; \
283 put32 (outptr, \
285 outptr += 4; \
328 *outptr++ = (unsigned char) ch; \
343 if (__glibc_unlikely (outptr + count > outend)) \
349 *outptr++ = '+'; \
351 *outptr++ = '-'; \
354 *outptr++ = base64 (ch >> 10); \
355 *outptr++ = base64 ((ch >> 4) & 0x3f); \
364 *outptr++ = base64 (ch >> 26); \
365 *outptr++ = base64 ((ch >> 20) & 0x3f); \
366 *outptr++ = base64 ((ch >> 14) & 0x3f); \
367 *outptr++ = base64 ((ch >> 8) & 0x3f); \
368 *outptr++ = base64 ((ch >> 2) & 0x3f); \
384 if (__glibc_unlikely (outptr + count > outend)) \
391 *outptr++ = base64 ((statep->__count >> 3) & ~3); \
393 *outptr++ = '-'; \
394 *outptr++ = (unsigned char) ch; \
408 if (__glibc_unlikely (outptr + count > outend)) \
419 *outptr++ = base64 (ch >> 10); \
420 *outptr++ = base64 ((ch >> 4) & 0x3f); \
424 *outptr++ = \
426 *outptr++ = base64 ((ch >> 6) & 0x3f); \
427 *outptr++ = base64 (ch & 0x3f); \
431 *outptr++ = \
433 *outptr++ = base64 ((ch >> 8) & 0x3f); \
434 *outptr++ = base64 ((ch >> 2) & 0x3f); \
450 *outptr++ = base64 (ch >> 26); \
451 *outptr++ = base64 ((ch >> 20) & 0x3f); \
452 *outptr++ = base64 ((ch >> 14) & 0x3f); \
453 *outptr++ = base64 ((ch >> 8) & 0x3f); \
454 *outptr++ = base64 ((ch >> 2) & 0x3f); \
458 *outptr++ = \
460 *outptr++ = base64 ((ch >> 22) & 0x3f); \
461 *outptr++ = base64 ((ch >> 16) & 0x3f); \
462 *outptr++ = base64 ((ch >> 10) & 0x3f); \
463 *outptr++ = base64 ((ch >> 4) & 0x3f); \
467 *outptr++ = \
469 *outptr++ = base64 ((ch >> 24) & 0x3f); \
470 *outptr++ = base64 ((ch >> 18) & 0x3f); \
471 *outptr++ = base64 ((ch >> 12) & 0x3f); \
472 *outptr++ = base64 ((ch >> 6) & 0x3f); \
473 *outptr++ = base64 (ch & 0x3f); \