Searched refs:inspec (Results 1 – 1 of 1) sorted by relevance
372 copy_expand_unix_filename_escape(char *outspec, const char *inspec, int *output_cnt, const int * ut… in copy_expand_unix_filename_escape() argument383 if (*inspec >= 0x80) { in copy_expand_unix_filename_escape()389 if ((*inspec & 0xE0) == 0xC0) { in copy_expand_unix_filename_escape()391 ucs_char = ((inspec[0] & 0x1F) << 6) + (inspec[1] & 0x3f); in copy_expand_unix_filename_escape()396 } else if ((*inspec & 0xF0) == 0xE0) { in copy_expand_unix_filename_escape()398 ucs_char = ((inspec[0] & 0xF) << 12) + in copy_expand_unix_filename_escape()399 ((inspec[1] & 0x3f) << 6) + in copy_expand_unix_filename_escape()400 (inspec[2] & 0x3f); in copy_expand_unix_filename_escape()408 } else if ((*inspec & 0xF8) == 0xF0) { in copy_expand_unix_filename_escape()411 } else if ((*inspec & 0xFC) == 0xF8) { in copy_expand_unix_filename_escape()[all …]