Home
last modified time | relevance | path

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

/Linux-v4.19/arch/alpha/include/asm/
Dtermios.h23 int canon, ret; \
32 canon = k_termio.c_lflag & ICANON; \
40 k_termios->c_cc[canon ? VEOF : VMIN] = k_termio.c_cc[_VEOF]; \
41 k_termios->c_cc[canon ? VEOL : VTIME] = k_termio.c_cc[_VEOL]; \
55 int canon; \
60 canon = (k_termio.c_lflag = k_termios->c_lflag) & ICANON; \
67 k_termio.c_cc[_VEOF] = k_termios->c_cc[canon ? VEOF : VMIN]; \
68 k_termio.c_cc[_VEOL] = k_termios->c_cc[canon ? VEOL : VTIME]; \
/Linux-v4.19/crypto/asymmetric_keys/
Dverify_pefile.c249 unsigned *canon, tmp, loop, i, hashed_bytes; in pefile_digest_pe_contents() local
270 canon = kcalloc(ctx->n_sections, sizeof(unsigned), GFP_KERNEL); in pefile_digest_pe_contents()
271 if (!canon) in pefile_digest_pe_contents()
277 canon[0] = 0; in pefile_digest_pe_contents()
280 if (pefile_compare_shdrs(&ctx->secs[canon[i]], in pefile_digest_pe_contents()
282 memmove(&canon[i + 1], &canon[i], in pefile_digest_pe_contents()
283 (loop - i) * sizeof(canon[0])); in pefile_digest_pe_contents()
287 canon[i] = loop; in pefile_digest_pe_contents()
292 i = canon[loop]; in pefile_digest_pe_contents()
299 kfree(canon); in pefile_digest_pe_contents()
[all …]
/Linux-v4.19/security/selinux/
Dselinuxfs.c597 char *canon = NULL; in sel_write_context() local
611 length = security_sid_to_context(state, sid, &canon, &len); in sel_write_context()
622 memcpy(buf, canon, len); in sel_write_context()
625 kfree(canon); in sel_write_context()