Lines Matching refs:uint8_t

31 static int udf_translate_to_linux(uint8_t *, int, uint8_t *, int, uint8_t *,
34 static int udf_char_to_ustr(struct ustr *dest, const uint8_t *src, int strlen) in udf_char_to_ustr()
100 const uint8_t *ocu; in udf_CS0toUTF8()
101 uint8_t cmp_id, ocu_len; in udf_CS0toUTF8()
129 utf_o->u_name[utf_o->u_len++] = (uint8_t)c; in udf_CS0toUTF8()
134 (uint8_t)(0xc0 | (c >> 6)); in udf_CS0toUTF8()
136 (uint8_t)(0x80 | (c & 0x3f)); in udf_CS0toUTF8()
141 (uint8_t)(0xe0 | (c >> 12)); in udf_CS0toUTF8()
143 (uint8_t)(0x80 | in udf_CS0toUTF8()
146 (uint8_t)(0x80 | (c & 0x3f)); in udf_CS0toUTF8()
196 c = (uint8_t)utf->u_name[i]; in udf_UTF8toCS0()
236 ocu[0] = (uint8_t)0x10U; in udf_UTF8toCS0()
244 ocu[++u_len] = (uint8_t)(utf_char >> 8); in udf_UTF8toCS0()
245 ocu[++u_len] = (uint8_t)(utf_char & 0xffU); in udf_UTF8toCS0()
254 ocu[length - 1] = (uint8_t)u_len + 1; in udf_UTF8toCS0()
262 const uint8_t *ocu; in udf_CS0toNLS()
263 uint8_t cmp_id, ocu_len; in udf_CS0toNLS()
332 ocu[0] = (uint8_t)0x10U; in udf_NLStoCS0()
338 ocu[++u_len] = (uint8_t)(uni_char >> 8); in udf_NLStoCS0()
339 ocu[++u_len] = (uint8_t)(uni_char & 0xffU); in udf_NLStoCS0()
343 ocu[length - 1] = (uint8_t)u_len + 1; in udf_NLStoCS0()
347 int udf_get_filename(struct super_block *sb, uint8_t *sname, int slen, in udf_get_filename()
348 uint8_t *dname, int dlen) in udf_get_filename()
398 int udf_put_filename(struct super_block *sb, const uint8_t *sname, in udf_put_filename()
399 uint8_t *dname, int flen) in udf_put_filename()
429 static int udf_translate_to_linux(uint8_t *newName, int newLen, in udf_translate_to_linux()
430 uint8_t *udfName, int udfLen, in udf_translate_to_linux()
431 uint8_t *fidName, int fidNameLen) in udf_translate_to_linux()
436 uint8_t curr; in udf_translate_to_linux()
471 uint8_t ext[EXT_SIZE]; in udf_translate_to_linux()