Home
last modified time | relevance | path

Searched refs:A (Results 1 – 9 of 9) sorted by relevance

/lib/crypto/
Dsha1.c57 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
59 E += TEMP + rol32(A,5) + (fn) + (constant); \
61 TEMP = E; E = D; D = C; C = B; B = A; A = TEMP; } while (0)
63 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
64 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
65 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument
66 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument
67 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument
89 __u32 A, B, C, D, E; in sha1_transform() local
92 A = digest[0]; in sha1_transform()
[all …]
Ddes.c582 #define ROUND(L, R, A, B, K, d) \ argument
583 B = K[0]; A = K[1]; K += d; \
584 B ^= R; A ^= R; \
585 B &= 0x3f3f3f3f; ROR(A, 4); \
586 L ^= S8[0xff & B]; A &= 0x3f3f3f3f; \
588 L ^= S7[0xff & A]; \
589 L ^= S5[0xff & (A >> 8)]; A >>= 16; \
592 L ^= S3[0xff & A]; \
593 L ^= S1[0xff & (A >> 8)];
784 u32 L, R, A, B; in des_encrypt() local
[all …]
/lib/
Dlocking-selftest.c529 LOCK_UNLOCK_2(A, B); \
530 LOCK_UNLOCK_2(B, A); /* fail */
561 LOCK_UNLOCK_2(A, B); \
563 LOCK_UNLOCK_2(C, A); /* fail */
594 LOCK_UNLOCK_2(A, B); \
595 LOCK_UNLOCK_2(C, A); \
627 LOCK_UNLOCK_2(A, B); \
630 LOCK_UNLOCK_2(D, A); /* fail */
660 LOCK_UNLOCK_2(A, B); \
663 LOCK_UNLOCK_2(D, A); /* fail */
[all …]
Ddynamic_queue_limits.c14 #define POSDIFF(A, B) ((int)((A) - (B)) > 0 ? (A) - (B) : 0) argument
15 #define AFTER_EQ(A, B) ((int)((A) - (B)) >= 0) argument
DKconfig.kasan196 A KUnit-based KASAN test suite. Triggers different kinds of
207 A part of the KASAN test suite that is not integrated with KUnit.
DKconfig.kfence82 and allocations/frees. A value of 0 disables stress testing logic.
DKconfig.kcsan130 memory operations are used to set up a watchpoint. A smaller value
DKconfig.debug230 A kernel debug info option other than "None" has been selected
1007 the kernel panics. If n = 0, then we wait forever. A timeout
1187 A timeout of 0 disables the check. The default is two minutes.
2273 A series of tests are made to verify that the fprobe is functioning
2306 A benchmark measuring the performance of the rbtree library.
2326 A benchmark measuring the performance of the interval tree library
/lib/crypto/mpi/
Dec.c1085 #define A (ctx->t.scratch[0]) in add_points_edwards() macro
1099 ctx->mulm(A, Z1, Z2, ctx); in add_points_edwards()
1102 ctx->pow2(B, A, ctx); in add_points_edwards()
1127 ctx->mulm(X3, X3, A, ctx); in add_points_edwards()
1137 ctx->mulm(Y3, Y3, A, ctx); in add_points_edwards()
1152 #undef A in add_points_edwards()