Searched refs:ec (Results 1 – 3 of 3) sorted by relevance
/fs/exfat/ |
D | misc.c | 194 void exfat_chain_set(struct exfat_chain *ec, unsigned int dir, in exfat_chain_set() argument 197 ec->dir = dir; in exfat_chain_set() 198 ec->size = size; in exfat_chain_set() 199 ec->flags = flags; in exfat_chain_set() 202 void exfat_chain_dup(struct exfat_chain *dup, struct exfat_chain *ec) in exfat_chain_dup() argument 204 return exfat_chain_set(dup, ec->dir, ec->size, ec->flags); in exfat_chain_dup()
|
D | exfat_fs.h | 529 void exfat_chain_set(struct exfat_chain *ec, unsigned int dir, 531 void exfat_chain_dup(struct exfat_chain *dup, struct exfat_chain *ec);
|
/fs/fat/ |
D | dir.c | 146 wchar_t ec; in uni16_to_x8() local 154 ec = *ip++; in uni16_to_x8() 155 charlen = nls->uni2char(ec, op, NLS_MAX_CHARSET_SIZE); in uni16_to_x8() 162 op = hex_byte_pack(op, ec >> 8); in uni16_to_x8() 163 op = hex_byte_pack(op, ec); in uni16_to_x8()
|