| /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/ |
| poly1305_local.h | 24 poly1305_blocks_f blocks; member in struct:poly1305_context::__anon2107
|
| poly1305_local.h | 24 poly1305_blocks_f blocks; member in struct:poly1305_context::__anon2107
|
| /src/external/bsd/elftosb/dist/common/ |
| RijndaelCBCMAC.cpp | 35 unsigned blocks = length / BLOCK_SIZE; local 36 while (blocks--)
|
| RijndaelCBCMAC.cpp | 35 unsigned blocks = length / BLOCK_SIZE; local 36 while (blocks--)
|
| /src/external/bsd/wpa/dist/src/crypto/ |
| aes-cbc.c | 29 int i, j, blocks; local 39 blocks = data_len / AES_BLOCK_SIZE; 40 for (i = 0; i < blocks; i++) { 65 int i, j, blocks; local 75 blocks = data_len / AES_BLOCK_SIZE; 76 for (i = 0; i < blocks; i++) {
|
| aes-cbc.c | 29 int i, j, blocks; local 39 blocks = data_len / AES_BLOCK_SIZE; 40 for (i = 0; i < blocks; i++) { 65 int i, j, blocks; local 75 blocks = data_len / AES_BLOCK_SIZE; 76 for (i = 0; i < blocks; i++) {
|
| /src/external/gpl3/gcc/dist/gcc/ |
| memory-block.cc | 1 /* Shared pool of memory blocks for pool allocators. 31 /* Reduce free list to NUM blocks and return remaining to malloc. */ 35 block_list **blocks = &m_blocks; local 37 /* First skip NUM blocks. */ 39 for (;num > 0 && *blocks; num--) 40 blocks = &(*blocks)->m_next; 42 if (!*blocks) 47 block_list *to_free = *blocks; 48 *blocks = NULL [all...] |
| memory-block.cc | 1 /* Shared pool of memory blocks for pool allocators. 31 /* Reduce free list to NUM blocks and return remaining to malloc. */ 35 block_list **blocks = &m_blocks; local 37 /* First skip NUM blocks. */ 39 for (;num > 0 && *blocks; num--) 40 blocks = &(*blocks)->m_next; 42 if (!*blocks) 47 block_list *to_free = *blocks; 48 *blocks = NULL [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| memory-block.cc | 1 /* Shared pool of memory blocks for pool allocators. 31 /* Reduce free list to NUM blocks and return remaining to malloc. */ 35 block_list **blocks = &m_blocks; local 37 /* First skip NUM blocks. */ 39 for (;num > 0 && *blocks; num--) 40 blocks = &(*blocks)->m_next; 42 if (!*blocks) 47 block_list *to_free = *blocks; 48 *blocks = NULL [all...] |
| memory-block.cc | 1 /* Shared pool of memory blocks for pool allocators. 31 /* Reduce free list to NUM blocks and return remaining to malloc. */ 35 block_list **blocks = &m_blocks; local 37 /* First skip NUM blocks. */ 39 for (;num > 0 && *blocks; num--) 40 blocks = &(*blocks)->m_next; 42 if (!*blocks) 47 block_list *to_free = *blocks; 48 *blocks = NULL [all...] |
| /src/sys/arch/alpha/stand/common/ |
| bbinfo.h | 43 int32_t blocks[1]; member in struct:bbinfo
|
| /src/sys/arch/bebox/bebox/ |
| cpu.c | 94 int blocks, i; local 95 extern void cache_flush_invalidate_all(int blocks); 105 /* Flush-invalidate all blocks */ 106 blocks = curcpu()->ci_ci.dcache_size / curcpu()->ci_ci.dcache_line_size; 107 cache_flush_invalidate_all(blocks);
|
| /src/sys/arch/evbmips/stand/sbmips/common/ |
| bbinfo.h | 43 int32_t blocks[1]; member in struct:bbinfo
|
| /src/sys/arch/sbmips/stand/common/ |
| bbinfo.h | 43 int32_t blocks[1]; member in struct:bbinfo
|
| /src/sys/compat/common/ |
| compat_50_quota.c | 74 struct quotaval blocks, files; local 113 error = vfs_quotactl_get(mp, &key, &blocks); 124 quotavals_to_dqblk(&blocks, &files, &dqblk); 133 dqblk_to_quotavals(&dqblk, &blocks, &files); 139 error = vfs_quotactl_put(mp, &key, &blocks);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/ |
| tsan_dense_alloc_test.cc | 34 IndexT blocks[N]; local 38 blocks[i] = idx; 45 IndexT idx = blocks[i];
|
| /src/usr.sbin/installboot/ |
| bbinfo.c | 152 ib_block *blocks; local 165 blocks = NULL; 230 blocks = malloc(sizeof(*blocks) * maxblk); 231 if (blocks == NULL) { 233 (unsigned long)sizeof(*blocks) * maxblk); 246 /* Collect the blocks for the secondary bootstrap. */ 248 if (! params->fstype->findstage2(params, &nblk, blocks)) 256 /* Save those blocks in the primary bootstrap. */ 258 bbinfop->bbi_block_size = HOSTTOTARGET32(blocks[0].blocksize) [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/modes/ |
| ctr128.c | 168 size_t blocks = len / 16; local 174 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) 175 blocks = (1U << 28); 180 * amount of blocks to the exact overflow point... 182 ctr32 += (u32)blocks; 183 if (ctr32 < blocks) { 184 blocks -= ctr32; 187 (*func)(in, out, blocks, key, ivec); 193 blocks *= 16; 194 len -= blocks; [all...] |
| /src/crypto/external/apache2/openssl/dist/include/crypto/ |
| poly1305.h | 36 poly1305_blocks_f blocks; member in struct:poly1305_context::__anon412
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_ccm.h | 32 unsigned long long blocks; member in struct:prov_aes_ccm_ctx_st::__anon483::__anon485
|
| cipher_chacha20_hw.c | 70 size_t blocks = inl / CHACHA_BLK_SIZE; local 77 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) 78 blocks = (1U << 28); 84 * amount of blocks to the exact overflow point... 86 ctr32 += (unsigned int)blocks; 87 if (ctr32 < blocks) { 88 blocks -= ctr32; 91 blocks *= CHACHA_BLK_SIZE; 92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); 93 inl -= blocks; [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/modes/ |
| ctr128.c | 168 size_t blocks = len / 16; local 174 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) 175 blocks = (1U << 28); 180 * amount of blocks to the exact overflow point... 182 ctr32 += (u32)blocks; 183 if (ctr32 < blocks) { 184 blocks -= ctr32; 187 (*func) (in, out, blocks, key, ivec); 193 blocks *= 16; 194 len -= blocks; [all...] |
| /src/crypto/external/bsd/openssl/dist/include/crypto/ |
| poly1305.h | 36 poly1305_blocks_f blocks; member in struct:poly1305_context::__anon1505
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_ccm.h | 32 unsigned long long blocks; member in struct:prov_aes_ccm_ctx_st::__anon1552::__anon1554
|
| cipher_chacha20_hw.c | 70 size_t blocks = inl / CHACHA_BLK_SIZE; local 77 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) 78 blocks = (1U << 28); 84 * amount of blocks to the exact overflow point... 86 ctr32 += (unsigned int)blocks; 87 if (ctr32 < blocks) { 88 blocks -= ctr32; 91 blocks *= CHACHA_BLK_SIZE; 92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); 93 inl -= blocks; [all...] |