Home
last modified time | relevance | path

Searched refs:ascii_len (Results 1 – 3 of 3) sorted by relevance

/linux/tools/perf/util/
H A Ddemangle-rust-v0.c301 static NODISCARD punycode_status punycode_decode(const char *start, size_t ascii_len, const char *p… in punycode_decode() argument
308 if (ascii_len > SMALL_PUNYCODE_LEN) { in punycode_decode()
311 for (size_t i = 0; i < ascii_len; i++) { in punycode_decode()
314 size_t len = ascii_len; in punycode_decode()
397 size_t ascii_len; member
402 static NODISCARD overflow_status display_ident(const char *ascii_start, size_t ascii_len, const cha… in display_ident() argument
409 if (ascii_len > out_buflen) { in display_ident()
412 memcpy(out, ascii_start, ascii_len); in display_ident()
413 *out_len = ascii_len; in display_ident()
414 …} else if (punycode_decode(ascii_start, ascii_len, punycode_start, punycode_len, &outbuf, &wide_le… in display_ident()
[all …]
/linux/drivers/scsi/
H A Dipr.h764 u8 ascii_len; member
779 u8 ascii_len; member
/linux/drivers/ufs/core/
H A Dufshcd.c3814 ssize_t ascii_len; in ufshcd_read_string_desc() local
3817 ascii_len = (uc_str->len - QUERY_DESC_HDR_SIZE) / 2 + 1; in ufshcd_read_string_desc()
3818 str = kzalloc(ascii_len, GFP_KERNEL); in ufshcd_read_string_desc()
3830 UTF16_BIG_ENDIAN, str, ascii_len - 1); in ufshcd_read_string_desc()