Home
last modified time | relevance | path

Searched refs:P (Results 1 – 4 of 4) sorted by relevance

/crypto/
Dblowfish_common.c304 #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()
Dblowfish_generic.c34 #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/
Dasync_pq.c26 #define P(b, d) (b[d-2]) macro
168 &P(blocks, disks), 2, in async_gen_syndrome()
173 BUG_ON(disks > MAX_DISKS || !(P(blocks, disks) || Q(blocks, disks))); in async_gen_syndrome()
211 if (P(blocks, disks)) in async_gen_syndrome()
212 unmap->addr[j++] = dma_map_page(device->dev, P(blocks, disks), in async_gen_syndrome()
241 if (!P(blocks, disks)) { in async_gen_syndrome()
242 P(blocks, disks) = pq_scribble_page; in async_gen_syndrome()
318 if (!P(blocks, disks)) { in async_syndrome_val()
322 pq[0] = dma_map_page(dev, P(blocks, disks), in async_syndrome_val()
357 struct page *p_src = P(blocks, disks); in async_syndrome_val()
[all …]
/crypto/asymmetric_keys/
Dx509_cert_parser.c543 #define DD2bin(P) ({ unsigned x = dec2bin(P[0]) * 10 + dec2bin(P[1]); P += 2; x; }) in x509_decode_time() argument