Lines Matching refs:bytes
50 register size_t bytes; in convert_from_ucs() local
58 bytes = 1; in convert_from_ucs()
60 bytes = 2; in convert_from_ucs()
62 bytes = 3; in convert_from_ucs()
64 bytes = 4; in convert_from_ucs()
66 bytes = 5; in convert_from_ucs()
68 bytes = 6; in convert_from_ucs()
70 if (*outbytesleft < bytes) in convert_from_ucs()
75 switch (bytes) in convert_from_ucs()
117 *outbytesleft -= bytes; in convert_from_ucs()
118 *outbuf += bytes; in convert_from_ucs()
120 return bytes; in convert_from_ucs()
131 register size_t bytes; in convert_to_ucs() local
139 if (*inbytesleft < (bytes = 2)) in convert_to_ucs()
155 if (*inbytesleft < (bytes = 3)) in convert_to_ucs()
173 if (*inbytesleft < (bytes = 4)) in convert_to_ucs()
193 if (*inbytesleft < (bytes = 5)) in convert_to_ucs()
215 if (*inbytesleft < (bytes = 6)) in convert_to_ucs()
245 bytes = 1; in convert_to_ucs()
252 *inbytesleft -= bytes; in convert_to_ucs()
253 *inbuf += bytes; in convert_to_ucs()