Home | History | Annotate | Download | only in efi

Lines Matching refs:osz

102  * osz   = bytes in output buffer (size_t *)
110 ucs2_to_utf8(const uint16_t *ibuf, size_t isz, char *obuf, size_t *osz)
119 assert(osz != NULL);
120 dsz = *osz;
131 * may well be larger than the UCS2 string. 'osz' is the
164 if (osz)
165 *osz = j;
174 * osz = bytes in output buffer (size_t *)
182 utf8_to_ucs2(const char *ibuf, size_t isz, uint16_t *obuf, size_t *osz)
190 assert(osz != NULL);
192 dsz = *osz;
251 if (osz)
252 *osz = (j + 1) * sizeof(*dst);