subkey            796 arch/x86/crypto/camellia_glue.c #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32))
subkey            798 arch/x86/crypto/camellia_glue.c static void camellia_setup_tail(u64 *subkey, u64 *subRL, int max)
subkey            980 arch/x86/crypto/camellia_glue.c static void camellia_setup128(const unsigned char *key, u64 *subkey)
subkey           1083 arch/x86/crypto/camellia_glue.c 	camellia_setup_tail(subkey, subRL, 24);
subkey           1086 arch/x86/crypto/camellia_glue.c static void camellia_setup256(const unsigned char *key, u64 *subkey)
subkey           1216 arch/x86/crypto/camellia_glue.c 	camellia_setup_tail(subkey, subRL, 32);
subkey           1219 arch/x86/crypto/camellia_glue.c static void camellia_setup192(const unsigned char *key, u64 *subkey)
subkey           1228 arch/x86/crypto/camellia_glue.c 	camellia_setup256(kk, subkey);
subkey            362 crypto/camellia_generic.c #define SUBKEY_L(INDEX) (subkey[(INDEX)*2])
subkey            363 crypto/camellia_generic.c #define SUBKEY_R(INDEX) (subkey[(INDEX)*2 + 1])
subkey            365 crypto/camellia_generic.c static void camellia_setup_tail(u32 *subkey, u32 *subL, u32 *subR, int max)
subkey            545 crypto/camellia_generic.c static void camellia_setup128(const unsigned char *key, u32 *subkey)
subkey            648 crypto/camellia_generic.c 	camellia_setup_tail(subkey, subL, subR, 24);
subkey            651 crypto/camellia_generic.c static void camellia_setup256(const unsigned char *key, u32 *subkey)
subkey            797 crypto/camellia_generic.c 	camellia_setup_tail(subkey, subL, subR, 32);
subkey            800 crypto/camellia_generic.c static void camellia_setup192(const unsigned char *key, u32 *subkey)
subkey            812 crypto/camellia_generic.c 	camellia_setup256(kk, subkey);
subkey            851 crypto/camellia_generic.c static void camellia_do_encrypt(const u32 *subkey, u32 *io, unsigned max)
subkey            906 crypto/camellia_generic.c static void camellia_do_decrypt(const u32 *subkey, u32 *io, unsigned i)
subkey            523 include/sound/wavefront.h     u8  subkey;            /* WF_ST_{SAMPLE,ALIAS,etc.} */
subkey            890 sound/isa/wavefront/wavefront_synth.c 				      header->number, header->subkey,
subkey           1383 sound/isa/wavefront/wavefront_synth.c 				      header->subkey,
subkey           1387 sound/isa/wavefront/wavefront_synth.c 	switch (header->subkey) {
subkey           1453 sound/isa/wavefront/wavefront_synth.c 			    header->subkey);
subkey            252 tools/perf/builtin-help.c 	const char *subkey = strrchr(name, '.');
subkey            254 tools/perf/builtin-help.c 	if (!subkey) {
subkey            259 tools/perf/builtin-help.c 	if (!strcmp(subkey, ".path")) {
subkey            262 tools/perf/builtin-help.c 		return add_man_viewer_path(name, subkey - name, value);
subkey            264 tools/perf/builtin-help.c 	if (!strcmp(subkey, ".cmd")) {
subkey            267 tools/perf/builtin-help.c 		return add_man_viewer_cmd(name, subkey - name, value);
subkey            270 tools/perf/builtin-help.c 	pr_warning("'%s': unsupported man viewer sub key.", subkey);