/lib/crypto/ |
D | curve25519-fiat32.c | 30 static __always_inline void fe_frombytes_impl(u32 h[10], const u8 *s) in fe_frombytes_impl() 41 h[0] = a0&((1<<26)-1); /* 26 used, 32-26 left. 26 */ in fe_frombytes_impl() 42 h[1] = (a0>>26) | ((a1&((1<<19)-1))<< 6); /* (32-26) + 19 = 6+19 = 25 */ in fe_frombytes_impl() 43 h[2] = (a1>>19) | ((a2&((1<<13)-1))<<13); /* (32-19) + 13 = 13+13 = 26 */ in fe_frombytes_impl() 44 h[3] = (a2>>13) | ((a3&((1<< 6)-1))<<19); /* (32-13) + 6 = 19+ 6 = 25 */ in fe_frombytes_impl() 45 h[4] = (a3>> 6); /* (32- 6) = 26 */ in fe_frombytes_impl() 46 h[5] = a4&((1<<25)-1); /* 25 */ in fe_frombytes_impl() 47 h[6] = (a4>>25) | ((a5&((1<<19)-1))<< 7); /* (32-25) + 19 = 7+19 = 26 */ in fe_frombytes_impl() 48 h[7] = (a5>>19) | ((a6&((1<<12)-1))<<13); /* (32-19) + 12 = 13+12 = 25 */ in fe_frombytes_impl() 49 h[8] = (a6>>12) | ((a7&((1<< 6)-1))<<20); /* (32-12) + 6 = 20+ 6 = 26 */ in fe_frombytes_impl() [all …]
|
D | poly1305-donna32.c | 58 h0 = state->h[0]; in poly1305_core_blocks() 59 h1 = state->h[1]; in poly1305_core_blocks() 60 h2 = state->h[2]; in poly1305_core_blocks() 61 h3 = state->h[3]; in poly1305_core_blocks() 62 h4 = state->h[4]; in poly1305_core_blocks() 112 state->h[0] = h0; in poly1305_core_blocks() 113 state->h[1] = h1; in poly1305_core_blocks() 114 state->h[2] = h2; in poly1305_core_blocks() 115 state->h[3] = h3; in poly1305_core_blocks() 116 state->h[4] = h4; in poly1305_core_blocks() [all …]
|
D | sha256.c | 66 #define SHA256_ROUND(i, a, b, c, d, e, f, g, h) do { \ argument 68 t1 = h + e1(e) + Ch(e, f, g) + SHA256_K[i] + W[i]; \ 71 h = t1 + t2; \ 76 u32 a, b, c, d, e, f, g, h; in sha256_transform() local 105 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha256_transform() 109 SHA256_ROUND(i + 0, a, b, c, d, e, f, g, h); in sha256_transform() 110 SHA256_ROUND(i + 1, h, a, b, c, d, e, f, g); in sha256_transform() 111 SHA256_ROUND(i + 2, g, h, a, b, c, d, e, f); in sha256_transform() 112 SHA256_ROUND(i + 3, f, g, h, a, b, c, d, e); in sha256_transform() 113 SHA256_ROUND(i + 4, e, f, g, h, a, b, c, d); in sha256_transform() [all …]
|
D | poly1305.c | 23 poly1305_core_init(&desc->h); in poly1305_init_generic() 43 poly1305_core_blocks(&desc->h, &desc->core_r, desc->buf, in poly1305_update_generic() 50 poly1305_core_blocks(&desc->h, &desc->core_r, src, in poly1305_update_generic() 69 poly1305_core_blocks(&desc->h, &desc->core_r, desc->buf, 1, 0); in poly1305_final_generic() 72 poly1305_core_emit(&desc->h, desc->s, dst); in poly1305_final_generic()
|
D | blake2s.c | 55 cpu_to_le32_array(state->h, ARRAY_SIZE(state->h)); in blake2s_final() 56 memcpy(out, state->h, state->outlen); in blake2s_final()
|
D | blake2s-generic.c | 58 memcpy(v, state->h, 32); in blake2s_compress_generic() 104 state->h[i] ^= v[i] ^ v[i + 8]; in blake2s_compress_generic()
|
/lib/lz4/ |
D | lz4_compress.c | 93 U32 h, in LZ4_putPositionOnHash() argument 103 hashTable[h] = p; in LZ4_putPositionOnHash() 110 hashTable[h] = (U32)(p - srcBase); in LZ4_putPositionOnHash() 117 hashTable[h] = (U16)(p - srcBase); in LZ4_putPositionOnHash() 129 U32 const h = LZ4_hashPosition(p, tableType); in LZ4_putPosition() local 131 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition() 135 U32 h, in LZ4_getPositionOnHash() argument 143 return hashTable[h]; in LZ4_getPositionOnHash() 149 return hashTable[h] + srcBase; in LZ4_getPositionOnHash() 156 return hashTable[h] + srcBase; in LZ4_getPositionOnHash() [all …]
|
D | lz4hc_compress.c | 84 U32 const h = LZ4HC_hashPtr(base + idx); in LZ4HC_Insert() local 85 size_t delta = idx - hashTable[h]; in LZ4HC_Insert() 92 hashTable[h] = idx; in LZ4HC_Insert()
|
/lib/ |
D | inflate.c | 340 int h; /* table level */ in huft_build() local 446 h = -1; /* no tables yet--level -1 */ in huft_build() 466 h++; in huft_build() 491 if (h) in huft_build() 500 u[h] = ++q; /* table starts after link */ in huft_build() 504 if (h) in huft_build() 506 x[h] = i; /* save pattern for backing up */ in huft_build() 511 u[h-1][j] = r; /* connect to last table */ in huft_build() 545 while ((i & ((1 << w) - 1)) != x[h]) in huft_build() 547 h--; /* don't need to update q */ in huft_build() [all …]
|
D | .gitignore | 2 /crc32table.h 3 /crc64table.h
|
D | Makefile | 295 clean-files := crc32table.h 296 clean-files += crc64table.h 298 $(obj)/crc32.o: $(obj)/crc32table.h 303 $(obj)/crc32table.h: $(obj)/gen_crc32table 306 $(obj)/crc64.o: $(obj)/crc64table.h 311 $(obj)/crc64table.h: $(obj)/gen_crc64table 321 $(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \
|
D | digsig.c | 69 const char *h, int hlen) in digsig_verify_rsa() argument 169 if (!m || len != hlen || memcmp(m, h, hlen)) in digsig_verify_rsa()
|
D | test_rhashtable.c | 311 struct rhlist_head *h, *pos; in test_rhltable() local 319 h = rhltable_lookup(&rhlt, &key, test_rht_params); in test_rhltable() 320 if (WARN(!h, "key not found during iteration %d of %d", i, entries)) { in test_rhltable() 327 rhl_for_each_entry_rcu(obj, pos, h, list_node) { in test_rhltable() 337 rhl_for_each_entry_rcu(obj, pos, h, list_node) { in test_rhltable()
|
D | irq_poll.c | 78 static void __latent_entropy irq_poll_softirq(struct softirq_action *h) in irq_poll_softirq() argument
|
D | plist.c | 64 # define plist_check_head(h) do { } while (0) argument
|
D | bch.c | 906 struct gf_poly **g, struct gf_poly **h) in factor_polynomial() argument 917 *h = NULL; in factor_polynomial() 930 *h = &((struct gf_poly_deg1 *)f)[gcd->deg].poly; in factor_polynomial() 932 gf_poly_copy(*h, q); in factor_polynomial()
|
/lib/raid6/ |
D | vpermxor.uc | 23 #include <linux/raid/pq.h> 26 #include <altivec.h> 28 #include <asm/cputable.h> 29 #include <asm/ppc-opcode.h> 30 #include <asm/switch_to.h>
|
D | altivec.uc | 25 #include <linux/raid/pq.h> 29 #include <altivec.h> 31 # include <asm/cputable.h> 32 # include <asm/switch_to.h>
|
D | s390vx.uc | 14 #include <linux/raid/pq.h> 15 #include <asm/fpu/api.h> 17 asm(".include \"asm/vx-insn.h\"\n");
|
D | int.uc | 21 #include <linux/raid/pq.h>
|
/lib/zstd/ |
D | compress.c | 953 static U32 ZSTD_hash3(U32 u, U32 h) { return ((u << (32 - 24)) * prime3bytes) >> (32 - h); } in ZSTD_hash3() argument 954 ZSTD_STATIC size_t ZSTD_hash3Ptr(const void *ptr, U32 h) { return ZSTD_hash3(ZSTD_readLE32(ptr), h)… in ZSTD_hash3Ptr() argument 957 static U32 ZSTD_hash4(U32 u, U32 h) { return (u * prime4bytes) >> (32 - h); } in ZSTD_hash4() argument 958 static size_t ZSTD_hash4Ptr(const void *ptr, U32 h) { return ZSTD_hash4(ZSTD_read32(ptr), h); } in ZSTD_hash4Ptr() argument 961 static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64 - 40)) * prime5bytes) >> (64 - … in ZSTD_hash5() argument 962 static size_t ZSTD_hash5Ptr(const void *p, U32 h) { return ZSTD_hash5(ZSTD_readLE64(p), h); } in ZSTD_hash5Ptr() argument 965 static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64 - 48)) * prime6bytes) >> (64 - … in ZSTD_hash6() argument 966 static size_t ZSTD_hash6Ptr(const void *p, U32 h) { return ZSTD_hash6(ZSTD_readLE64(p), h); } in ZSTD_hash6Ptr() argument 969 static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64 - 56)) * prime7bytes) >> (64 - … in ZSTD_hash7() argument 970 static size_t ZSTD_hash7Ptr(const void *p, U32 h) { return ZSTD_hash7(ZSTD_readLE64(p), h); } in ZSTD_hash7Ptr() argument [all …]
|
/lib/zlib_deflate/ |
D | deftree.c | 364 int h; /* heap index */ in gen_bitlen() local 378 for (h = s->heap_max+1; h < HEAP_SIZE; h++) { in gen_bitlen() 379 n = s->heap[h]; in gen_bitlen() 420 m = s->heap[--h]; in gen_bitlen()
|
D | deflate.c | 163 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) argument
|
/lib/mpi/ |
D | ec.c | 1217 MPI x1, y1, z1, k, h, yy; in mpi_ec_mul_point() local 1324 h = mpi_alloc_like(ctx->p); in mpi_ec_mul_point() 1352 mpi_mul(h, k, mpi_const(MPI_C_THREE)); /* h = 3k */ in mpi_ec_mul_point() 1353 loops = mpi_get_nbits(h); in mpi_ec_mul_point() 1382 if (mpi_test_bit(h, i) == 1 && mpi_test_bit(k, i) == 0) { in mpi_ec_mul_point() 1386 if (mpi_test_bit(h, i) == 0 && mpi_test_bit(k, i) == 1) { in mpi_ec_mul_point() 1395 mpi_free(h); in mpi_ec_mul_point()
|
D | longlong.h | 440 #define rshift_rhlc(r, h, l, c) \ argument 443 "=r" (r) : "r" (h), "r" (l), "rn" (c)) 499 #define rshift_rhlc(r, h, l, c) \ argument 504 __nn.__i.__h = (h); __nn.__i.__l = (l); \
|