Lines Matching refs:low
422 uint16_t zabcd, high, low; \
452 low = (uint16_t)(0xdc << 8); /* low surrogate id */ \
453 low |= ((uint16_t)inptr[2] & 0xc) << 6; /* kl bits */ \
454 low |= (inptr[2] & 0x3) << 6; /* mn bits */ \
455 low |= inptr[3] & 0x3f; /* opqrst bits */ \
459 put16 (outptr, low); \
571 uint16_t low, uvwxy; \
586 low = get16 (inptr); \
588 if ((low & 0xfc00) != 0xdc00) \
603 outptr[2] |= (low >> 6) & 0x0f; \
606 outptr[3] |= low & 0x3f; \