| /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/ufs/lfs/ |
| ulfs_quota1_subr.c | 59 struct quotaval *blocks, struct quotaval *files) 63 blocks->qv_hardlimit = dqblk2q2e_limit(dqblk->dqb_bhardlimit); 64 blocks->qv_softlimit = dqblk2q2e_limit(dqblk->dqb_bsoftlimit); 65 blocks->qv_usage = dqblk->dqb_curblocks; 66 blocks->qv_expiretime = dqblk->dqb_btime; 75 lfs_quotavals_to_dqblk(const struct quotaval *blocks, const struct quotaval *files, 80 dqblk->dqb_bhardlimit = q2e2dqblk_limit(blocks->qv_hardlimit); 81 dqblk->dqb_bsoftlimit = q2e2dqblk_limit(blocks->qv_softlimit); 82 dqblk->dqb_curblocks = blocks->qv_usage; 83 dqblk->dqb_btime = blocks->qv_expiretime [all...] |
| /src/sys/ufs/ufs/ |
| quota1_subr.c | 59 struct quotaval *blocks, struct quotaval *files) 63 blocks->qv_hardlimit = dqblk2q2e_limit(dqblk->dqb_bhardlimit); 64 blocks->qv_softlimit = dqblk2q2e_limit(dqblk->dqb_bsoftlimit); 65 blocks->qv_usage = dqblk->dqb_curblocks; 66 blocks->qv_expiretime = dqblk->dqb_btime; 75 quotavals_to_dqblk(const struct quotaval *blocks, const struct quotaval *files, 80 dqblk->dqb_bhardlimit = q2e2dqblk_limit(blocks->qv_hardlimit); 81 dqblk->dqb_bsoftlimit = q2e2dqblk_limit(blocks->qv_softlimit); 82 dqblk->dqb_curblocks = blocks->qv_usage; 83 dqblk->dqb_btime = blocks->qv_expiretime [all...] |
| /src/regress/sys/kern/ras/ras1/ |
| Makefile | 16 CFLAGS+= ${${ACTIVE_CC} == "gcc":? -fno-reorder-blocks :}
|
| /src/regress/sys/kern/ras/ras2/ |
| Makefile | 16 CFLAGS+= ${${ACTIVE_CC} == "gcc":? -fno-reorder-blocks :}
|
| /src/regress/sys/kern/ras/ras3/ |
| Makefile | 16 CFLAGS+= ${${ACTIVE_CC} == "gcc":? -fno-reorder-blocks :}
|
| /src/external/public-domain/xz/dist/src/liblzma/common/ |
| index_hash.c | 48 /// Information collected while decoding the actual Blocks. 49 lzma_index_hash_info blocks; member in struct:lzma_index_hash_s 83 index_hash->blocks.blocks_size = 0; 84 index_hash->blocks.uncompressed_size = 0; 85 index_hash->blocks.count = 0; 86 index_hash->blocks.index_list_size = 0; 97 (void)lzma_check_init(&index_hash->blocks.check, LZMA_CHECK_BEST); 116 // Get the size of the Index from ->blocks instead of ->records for 119 return index_size(index_hash->blocks.count, 120 index_hash->blocks.index_list_size) [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| 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...] |
| cipher_aes_cbc_hmac_sha256_hw.c | 36 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 112 int blocks; member in struct:__anon478 118 int blocks; member in struct:__anon479 139 } blocks[8]; local 150 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) 182 memcpy(blocks[0].c, sctx->md.data, 8); 183 seqnum = BSWAP8(blocks[0].q[0]); 203 blocks[i].q[0] = BSWAP8(seqnum + i); 206 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; 207 carry = (blocks[i].c[j] - carry) >> (sizeof(carry) * 8 - 1) 404 size_t aes_off = 0, blocks; local [all...] |
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| 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...] |
| cipher_aes_cbc_hmac_sha256_hw.c | 36 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 112 int blocks; member in struct:__anon1547 118 int blocks; member in struct:__anon1548 139 } blocks[8]; local 150 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) 182 memcpy(blocks[0].c, sctx->md.data, 8); 183 seqnum = BSWAP8(blocks[0].q[0]); 203 blocks[i].q[0] = BSWAP8(seqnum + i); 206 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; 207 carry = (blocks[i].c[j] - carry) >> (sizeof(carry) * 8 - 1) 404 size_t aes_off = 0, blocks; local [all...] |
| /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/gpl2/libmalloc/dist/ |
| 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/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/sysinst/arch/alpha/ |
| msg.md.en | 48 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/amiga/ |
| msg.md.en | 46 {Installing boot blocks on %s....
|
| msg.md.es | 46 {Instalando boot blocks en %s....
|
| /src/usr.sbin/sysinst/arch/emips/ |
| msg.md.en | 47 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/ews4800mips/ |
| msg.md.en | 47 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/hppa/ |
| msg.md.en | 48 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/mipsco/ |
| msg.md.en | 47 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/newsmips/ |
| msg.md.en | 48 {Installing boot blocks on %s....
|
| /src/usr.sbin/sysinst/arch/vax/ |
| msg.md.en | 48 {Installing boot blocks on %s....
|
| /src/external/gpl3/binutils/dist/gprof/ |
| bbconv.pl | 40 if (/^File .*, ([0-9]+) basic blocks/) {
|