Home
last modified time | relevance | path

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

/fs/exfat/
Dmisc.c194 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()
Dexfat_fs.h529 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/
Ddir.c146 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()