Lines Matching refs:outptr
173 register unsigned char* pOutput __asm__ ("10") = outptr; \
174 register size_t outlen __asm__("11") = outend - outptr; \
190 outptr = pOutput; \
245 register unsigned char* pOutput asm ("10") = outptr; \
246 register size_t outlen asm("11") = outend - outptr; \
314 outptr = pOutput; \
424 if (__glibc_unlikely (outptr + 4 > outend)) \
457 put16 (outptr, high); \
458 outptr += 2; \
459 put16 (outptr, low); \
460 outptr += 2; \
494 *((uint16_t *) outptr) = ch; \
495 outptr += sizeof (uint16_t); \
525 *outptr = c & 0xff; \
526 outptr++; \
532 if (__glibc_unlikely (outptr + 2 > outend)) \
539 outptr[0] = 0xc0; \
540 outptr[0] |= c >> 6; \
542 outptr[1] = 0x80; \
543 outptr[1] |= c & 0x3f; \
545 outptr += 2; \
551 if (__glibc_unlikely (outptr + 3 > outend)) \
557 outptr[0] = 0xe0; \
558 outptr[0] |= c >> 12; \
560 outptr[1] = 0x80; \
561 outptr[1] |= (c >> 6) & 0x3f; \
563 outptr[2] = 0x80; \
564 outptr[2] |= c & 0x3f; \
566 outptr += 3; \
573 if (__glibc_unlikely (outptr + 4 > outend)) \
594 outptr[0] = 0xf0; \
595 outptr[0] |= uvwxy >> 2; \
597 outptr[1] = 0x80; \
598 outptr[1] |= (uvwxy << 4) & 0x30; \
599 outptr[1] |= (c >> 2) & 0x0f; \
601 outptr[2] = 0x80; \
602 outptr[2] |= (c & 0x03) << 4; \
603 outptr[2] |= (low >> 6) & 0x0f; \
605 outptr[3] = 0x80; \
606 outptr[3] |= low & 0x3f; \
608 outptr += 4; \
635 size_t outlen = outend - outptr; \
782 , [R_INLEN] "+d" (inlen), [R_OUT] "+a" (outptr) \
821 register unsigned char* pOutput asm ("10") = outptr; \
822 register size_t outlen asm ("11") = outend - outptr; \
894 outptr = pOutput; \