Searched refs:P (Results 1 – 4 of 4) sorted by relevance
/crypto/ |
D | blowfish_common.c | 304 #define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); }) 312 const u32 *P = bctx->p; in encrypt_block() local 334 yl ^= P[16]; in encrypt_block() 335 yr ^= P[17]; in encrypt_block() 347 u32 *P = ctx->p; in blowfish_setkey() local 359 P[i] = bf_pbox[i]; in blowfish_setkey() 368 P[i] = P[i] ^ temp; in blowfish_setkey() 378 P[i] = data[0]; in blowfish_setkey() 379 P[i + 1] = data[1]; in blowfish_setkey()
|
D | blowfish_generic.c | 34 #define ROUND(a, b, n) ({ b ^= P[n]; a ^= bf_F(b); }) 41 const u32 *P = ctx->p; in bf_encrypt() local 63 yl ^= P[16]; in bf_encrypt() 64 yr ^= P[17]; in bf_encrypt() 75 const u32 *P = ctx->p; in bf_decrypt() local 97 yl ^= P[1]; in bf_decrypt() 98 yr ^= P[0]; in bf_decrypt()
|
/crypto/async_tx/ |
D | async_pq.c | 26 #define P(b, d) (b[d-2]) macro 182 &P(blocks, disks), 2, in async_gen_syndrome() 187 BUG_ON(disks > MAX_DISKS || !(P(blocks, disks) || Q(blocks, disks))); in async_gen_syndrome() 225 if (P(blocks, disks)) in async_gen_syndrome() 226 unmap->addr[j++] = dma_map_page(device->dev, P(blocks, disks), in async_gen_syndrome() 227 P(offsets, disks), in async_gen_syndrome() 257 if (!P(blocks, disks)) { in async_gen_syndrome() 258 P(blocks, disks) = pq_scribble_page; in async_gen_syndrome() 259 P(offsets, disks) = 0; in async_gen_syndrome() 335 if (!P(blocks, disks)) { in async_syndrome_val() [all …]
|
/crypto/asymmetric_keys/ |
D | x509_cert_parser.c | 560 #define DD2bin(P) ({ unsigned x = dec2bin(P[0]) * 10 + dec2bin(P[1]); P += 2; x; }) in x509_decode_time() argument
|