HomeSort by: relevance | last modified time | path
    Searched defs:blocks (Results 1 - 25 of 217) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/
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--)
  /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++) {
  /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...]
  /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...]
  /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...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/modes/
ctr128.c 172 size_t blocks = len / 16; local
178 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28))
179 blocks = (1U << 28);
184 * amount of blocks to the exact overflow point...
186 ctr32 += (u32)blocks;
187 if (ctr32 < blocks) {
188 blocks -= ctr32;
191 (*func) (in, out, blocks, key, ivec);
197 blocks *= 16;
198 len -= blocks;
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/generic/
nsec.h 57 const uint8_t blocks = (uint8_t)(64 - leading_zeroes(windows[window])); local
58 memmove(rdata->octets, &bitmap[window], 2 + blocks);
60 rdata->octets[1] = blocks;
61 rdata->octets += 2 + blocks;
  /src/external/gpl2/libmalloc/dist/
free.c 33 /* List of blocks allocated by memalign. */
43 __malloc_size_t block, blocks; local
105 blocks = _heapinfo[block].free.size;
106 if (blocks >= FINAL_FREE_BLOCKS && block + blocks == _heaplimit
107 && (*__morecore) (0) == ADDRESS (block + blocks))
109 register __malloc_size_t bytes = blocks * BLOCKSIZE;
110 _heaplimit -= blocks;
realloc.c 116 __malloc_size_t block, blocks, oldlimit; local
149 blocks = BLOCKIFY (size);
150 if (blocks < _heapinfo[block].busy.info.size)
154 _heapinfo[block + blocks].busy.type = 0;
155 _heapinfo[block + blocks].busy.info.size
156 = _heapinfo[block].busy.info.size - blocks;
157 _heapinfo[block].busy.info.size = blocks;
162 _free_internal (ADDRESS (block + blocks));
165 else if (blocks == _heapinfo[block].busy.info.size)
173 blocks = _heapinfo[block].busy.info.size
    [all...]
  /src/sbin/fsdb/
fsdbutil.c 97 uint64_t size, blocks; local
105 blocks = is_ufs2 ? iswap64(DIP(dp, blocks)) : iswap32(DIP(dp, blocks));
130 DIP(dp, blocks) == 0) {
186 iswap32(DIP(dp, flags)), (unsigned long long)blocks,

Completed in 52 milliseconds

1 2 3 4 5 6 7 8 9