| /src/external/apache2/argon2/dist/phc-winner-argon2/src/ |
| bench.c | 49 and different m_cost and threads 63 uint32_t m_cost; local 70 for (m_cost = (uint32_t)1 << 10; m_cost <= (uint32_t)1 << 22; m_cost *= 2) { 87 argon2_hash(t_cost, m_cost, thread_n, pwd_array, inlen, 94 delta = (stop_cycles - start_cycles) / (m_cost); 100 m_cost >> 10, thread_n, (float)delta / 1024, mcycles);
|
| genkat.c | 39 context->m_cost, context->t_cost, context->lanes, 146 unsigned m_cost = 32; local 166 context.m_cost = m_cost;
|
| run.c | 86 @m_cost amount of requested memory in KB 95 uint32_t m_cost, uint32_t lanes, uint32_t threads, 127 encodedlen = argon2_encodedlen(t_cost, m_cost, lanes, (uint32_t)saltlen, outlen, type); 134 result = argon2_hash(t_cost, m_cost, threads, pwd, pwdlen, salt, saltlen, 172 uint32_t m_cost = 1 << LOG_M_COST_DEF; local 224 m_cost = ARGON2_MIN(UINT64_C(1) << input, UINT32_C(0xFFFFFFFF)); 225 if (m_cost > ARGON2_MAX_MEMORY) { 226 fatal("m_cost overflow"); 243 m_cost = ARGON2_MIN(input, UINT32_C(0xFFFFFFFF)); 244 if (m_cost > ARGON2_MAX_MEMORY) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/ |
| gen-mul-tables.cc | 112 m_unary_func (0), m_binary_func (func), m_cost (cost), 121 m_unary_func (func), m_binary_func (0), m_cost (cost), 152 int m_cost; member in class:Operator 441 cost += m_exprs[j].m_op->m_cost;
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
| argon2.h | 180 uint32_t m_cost; /* amount of memory requested (KB) */ member in struct:Argon2_Context 200 * @param m_cost Sets memory usage to m_cost kibibytes 212 int argon2i_hash_encoded(const uint32_t t_cost, const uint32_t m_cost, 221 * @param m_cost Sets memory usage to m_cost kibibytes 233 int argon2id_hash_encoded(const uint32_t t_cost, const uint32_t m_cost, 242 * @param m_cost Sets memory usage to m_cost kibibytes 253 int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost, [all...] |
| /src/external/apache2/argon2/dist/phc-winner-argon2/include/ |
| argon2.h | 208 uint32_t m_cost; /* amount of memory requested (KB) */ member in struct:Argon2_Context 252 * @param m_cost Sets memory usage to m_cost kibibytes 265 const uint32_t m_cost, 275 * @param m_cost Sets memory usage to m_cost kibibytes 286 ARGON2_PUBLIC int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost, 293 const uint32_t m_cost, 300 ARGON2_PUBLIC int argon2d_hash_raw(const uint32_t t_cost, const uint32_t m_cost, 307 const uint32_t m_cost, [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/ |
| argon2.c | 167 uint32_t m_cost; member in struct:__anon546 209 static int kdf_argon2_ctx_set_m_cost(KDF_ARGON2 *ctx, uint32_t m_cost); 657 args[2] = ctx->m_cost; 917 c->m_cost = ARGON2_DEFAULT_M_COST; 1083 if (ctx->m_cost < 8 * ctx->lanes) { 1085 "m_cost must be greater or equal than 8 times the number of lanes"); 1089 memory_blocks = ctx->m_cost; 1184 /* ARGON2_MAX_MEMORY == max m_cost value, so skip check */ 1196 static int kdf_argon2_ctx_set_m_cost(KDF_ARGON2 *ctx, uint32_t m_cost) 1198 /* ARGON2_MAX_MEMORY == max m_cost value, so skip check * [all...] |