Lines Matching refs:isz
100 * isz = bytes in input buffer
110 ucs2_to_utf8(const uint16_t *ibuf, size_t isz, char *obuf, size_t *osz)
116 assert(isz > 0);
124 dsz = isz * sizeof(*dst);
130 * 'isz' is the number of bytes in the source buffer which
134 n = isz / sizeof(*ibuf); /* max number of characters in input buffer */
172 * isz = bytes in input buffer
182 utf8_to_ucs2(const char *ibuf, size_t isz, uint16_t *obuf, size_t *osz)
195 dsz = isz * sizeof(*dst);
201 for (i = 0; i < isz; i++) {
213 if (i + 1 >= isz) { /* insufficient source */
226 if (i + 2 >= isz) { /* insufficient source */