/Linux-v5.10/tools/perf/ |
D | builtin-help.c | 252 const char *subkey = strrchr(name, '.'); in add_man_viewer_info() local 254 if (!subkey) { in add_man_viewer_info() 259 if (!strcmp(subkey, ".path")) { in add_man_viewer_info() 262 return add_man_viewer_path(name, subkey - name, value); in add_man_viewer_info() 264 if (!strcmp(subkey, ".cmd")) { in add_man_viewer_info() 267 return add_man_viewer_cmd(name, subkey - name, value); in add_man_viewer_info() 270 pr_warning("'%s': unsupported man viewer sub key.", subkey); in add_man_viewer_info()
|
/Linux-v5.10/tools/bootconfig/samples/ |
D | bad-mixed-kv1.bconf | 1 # value -> subkey pattern 3 key.subkey = another-value
|
D | bad-mixed-kv2.bconf | 1 # subkey -> value pattern 2 key.subkey = value
|
D | bad-override2.bconf | 2 # We can not override pre-defined value with subkey 3 key.subkey := value
|
D | bad-override.bconf | 1 key.subkey = value
|
/Linux-v5.10/arch/x86/crypto/ |
D | camellia_glue.c | 794 #define SET_SUBKEY_LR(INDEX, sRL) (subkey[(INDEX)] = ror64((sRL), 32)) 796 static void camellia_setup_tail(u64 *subkey, u64 *subRL, int max) in camellia_setup_tail() argument 978 static void camellia_setup128(const unsigned char *key, u64 *subkey) in camellia_setup128() argument 1081 camellia_setup_tail(subkey, subRL, 24); in camellia_setup128() 1084 static void camellia_setup256(const unsigned char *key, u64 *subkey) in camellia_setup256() argument 1214 camellia_setup_tail(subkey, subRL, 32); in camellia_setup256() 1217 static void camellia_setup192(const unsigned char *key, u64 *subkey) in camellia_setup192() argument 1226 camellia_setup256(kk, subkey); in camellia_setup192()
|
D | camellia-x86_64-asm_64.S | 89 #define roundsm(ab, subkey, cd) \ argument 90 movq (key_table + ((subkey) * 2) * 4)(CTX), RT2; \ 266 #define roundsm2(ab, subkey, cd) \ argument 267 movq (key_table + ((subkey) * 2) * 4)(CTX), RT2; \
|
D | aesni-intel_asm.S | 195 # Input: Hash subkey.
|
/Linux-v5.10/crypto/ |
D | camellia_generic.c | 362 #define SUBKEY_L(INDEX) (subkey[(INDEX)*2]) 363 #define SUBKEY_R(INDEX) (subkey[(INDEX)*2 + 1]) 365 static void camellia_setup_tail(u32 *subkey, u32 *subL, u32 *subR, int max) in camellia_setup_tail() argument 545 static void camellia_setup128(const unsigned char *key, u32 *subkey) in camellia_setup128() argument 648 camellia_setup_tail(subkey, subL, subR, 24); in camellia_setup128() 651 static void camellia_setup256(const unsigned char *key, u32 *subkey) in camellia_setup256() argument 797 camellia_setup_tail(subkey, subL, subR, 32); in camellia_setup256() 800 static void camellia_setup192(const unsigned char *key, u32 *subkey) in camellia_setup192() argument 812 camellia_setup256(kk, subkey); in camellia_setup192() 851 static void camellia_do_encrypt(const u32 *subkey, u32 *io, unsigned max) in camellia_do_encrypt() argument [all …]
|
/Linux-v5.10/Documentation/process/ |
D | maintainer-pgp-guide.rst | 167 5. A subkey is fully independent from the master key. A message 168 encrypted to a subkey cannot be decrypted with the master key. If you 169 lose your private subkey, it cannot be recreated from the master key 178 - add or change the expiration date on itself or any subkey 184 - A separate subkey with the Encryption capability (**[E]**) 215 Create a separate Signing subkey 220 signing subkey:: 225 your new subkey:: 237 recommend that you create an ECC signing subkey for your kernel 396 passphrase or adding a subkey, should automatically convert the old [all …]
|
/Linux-v5.10/sound/isa/wavefront/ |
D | wavefront_synth.c | 890 header->number, header->subkey, in wavefront_send_sample() 1389 header->subkey, in wavefront_load_patch() 1393 switch (header->subkey) { in wavefront_load_patch() 1459 header->subkey); in wavefront_load_patch()
|
/Linux-v5.10/include/sound/ |
D | wavefront.h | 523 u8 subkey; /* WF_ST_{SAMPLE,ALIAS,etc.} */ member
|
/Linux-v5.10/Documentation/admin-guide/ |
D | bootconfig.rst | 96 foo.bar = value2 # !ERROR! subkey "bar" and value "value1" can NOT co-exist
|
/Linux-v5.10/Documentation/trace/ |
D | histogram-design.rst | 240 with the key: for each subkey in the key (in the above example, there 241 is just one subkey corresponding to pid), the hist_field that 242 represents that subkey is retrieved from hist_data.fields[] and the 244 field's size and offset, is used to grab that subkey's data from the 269 each subkey in the key, but hist_trigger_elt_update() doesn't look at
|