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

1 2 3 4 5

  /src/external/ibm-public/postfix/dist/src/util/
fsspace.h 18 unsigned long block_size; /* block size */ member in struct:fsspace
  /src/external/bsd/tre/dist/lib/
tre-mem.c 109 size_t block_size; local
111 block_size = size * 8;
113 block_size = TRE_MEM_BLOCK_SIZE;
115 block_size));
122 l->data = xmalloc(block_size);
136 mem->n = block_size;
  /src/sys/arch/sun68k/stand/bootyy/
bootyy.c 76 int block_size = SUNND_BSIZE; /* default */ variable
117 buf = alloc(block_size);
127 blknum, block_size, buf, &n))
132 if (n != block_size) {
136 memcpy(addr, buf, block_size);
137 addr += block_size;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
vmid.h 48 enum dcn_hubbub_page_table_block_size block_size; member in struct:dcn_vmid_page_table_config
  /src/external/gpl2/groff/dist/src/include/
symbol.h 32 static int block_size; member in class:symbol
  /src/external/gpl2/mkhybrid/dist/
mac_label.c 35 int block_size; local
136 block_size = have_hfs_boot ? SECTOR_SIZE : HFS_BLOCKSZ;
142 set_722 (mac_label->sbBlkSize,block_size);
143 set_732 (mac_label->sbBlkCount,last_extent*(SECTOR_SIZE/block_size));
148 mac_part = (MacPart*)(buffer+block_size);
162 mac_part = (MacPart*)(buffer + (i+2)*block_size);
166 set_732 (mac_label->sbBlkCount,last_extent*(SECTOR_SIZE/block_size));
167 set_732 (mac_label->ddBlock,(mpm[i].start)*(SECTOR_SIZE/block_size));
170 set_732 (mac_part->pmPyPartStart,(mpm[i].start)*(SECTOR_SIZE/block_size));
  /src/external/gpl3/gcc/dist/gcc/
memory-block.h 30 static const size_t block_size = 64 * 1024; member in class:memory_block_pool
32 static const size_t freelist_size = 1024 * 1024 / block_size;
59 return XNEWVEC (char, block_size);
63 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (result, block_size));
77 block_size
lto-section-out.cc 123 unsigned int block_size = 1024; local
132 unsigned int num_chars = block_size - sizeof (struct lto_char_ptr_base);
146 block_size *= 2;
  /src/external/gpl3/gcc.old/dist/gcc/
memory-block.h 30 static const size_t block_size = 64 * 1024; member in class:memory_block_pool
32 static const size_t freelist_size = 1024 * 1024 / block_size;
59 return XNEWVEC (char, block_size);
63 VALGRIND_DISCARD (VALGRIND_MAKE_MEM_UNDEFINED (result, block_size));
77 block_size
  /src/external/public-domain/xz/dist/src/liblzma/common/
filter_encoder.c 37 uint64_t (*block_size)(const void *options); member in struct:__anon349
65 .block_size = NULL, // Not needed for LZMA1
74 .block_size = NULL, // Not needed for LZMA1
85 .block_size = &lzma_lzma2_block_size,
96 .block_size = NULL,
106 .block_size = NULL,
116 .block_size = NULL,
126 .block_size = NULL,
136 .block_size = NULL,
146 .block_size = NULL
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
example_evp_cipher.c 79 size_t block_size = 0; local
95 block_size = atoi(argv[1]);
96 if (block_size == 0)
132 ibuf = malloc(block_size);
133 obuf = malloc(block_size + EVP_CIPHER_block_size(c));
144 while ((ilen = fread(ibuf, 1, block_size, in)) > 0) {
  /src/crypto/external/bsd/openssl/dist/include/internal/
sha3.h 36 size_t block_size; /* cached ctx->digest->block_size */ member in struct:keccak_st
  /src/crypto/external/apache2/openssl/dist/crypto/pkcs12/
p12_decr.c 29 int block_size; local
47 block_size = EVP_CIPHER_CTX_get_block_size(ctx);
49 if (block_size == 0) {
54 max_out_len = inlen + block_size;
  /src/lib/librefuse/refuse/
legacy.h 51 long block_size; member in struct:fuse_statfs
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_gfxhub_v1_0.c 215 unsigned num_level, block_size; local
220 block_size = adev->vm_manager.block_size;
224 block_size -= 9;
248 block_size);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_object_blt.c 25 const u32 block_size = SZ_8M; /* ~1ms at 8GiB/s preemption delay */ local
38 count = div_u64(round_up(vma->size, block_size), block_size);
57 u32 size = min_t(u64, rem, block_size);
209 const u32 block_size = SZ_8M; /* ~1ms at 8GiB/s preemption delay */ local
222 count = div_u64(round_up(dst->size, block_size), block_size);
242 size = min_t(u64, rem, block_size);
i915_gem_region.c 82 u64 block_size, offset; local
84 block_size = min_t(u64, size,
89 segs[i].ds_len = block_size;
127 u64 block_size, offset; local
129 block_size = min_t(u64, size,
133 GEM_BUG_ON(overflows_type(block_size, sg->length));
136 add_overflows_t(typeof(sg->length), sg->length, block_size)) {
143 sg_dma_len(sg) = block_size;
145 sg->length = block_size;
149 sg->length += block_size;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
mm.h 26 u32 block_size; member in struct:nvkm_mm
  /src/crypto/external/apache2/openssl/dist/include/internal/
sha3.h 43 size_t block_size; /* cached ctx->digest->block_size */ member in struct:keccak_st
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_open_fd.c 55 size_t block_size; member in struct:read_fd_data
67 archive_read_open_fd(struct archive *a, int fd, size_t block_size)
80 b = malloc(block_size);
87 mine->block_size = block_size;
122 bytes_read = read(mine->fd, mine->buffer, mine->block_size);
152 /* Reduce 'skip' to the next smallest multiple of block_size */
153 skip = (la_seek_t)(((int64_t)skip / mine->block_size) * mine->block_size);
archive_read_open_file.c 55 size_t block_size; member in struct:read_FILE_data
71 size_t block_size = 128 * 1024; local
76 b = malloc(block_size);
83 mine->block_size = block_size;
118 bytes_read = fread(mine->buffer, 1, mine->block_size, mine->f);
119 if (bytes_read < mine->block_size && ferror(mine->f)) {
  /src/external/bsd/pdisk/dist/
deblock_media.c 110 uint32_t block_size; local
118 block_size = media_granularity(m);
120 if (new_block_size == block_size) {
123 } else if (new_block_size > block_size) {
124 if ((new_block_size % block_size) == 0) {
129 a->next_block_size = block_size;
135 } else /* new_block_size < block_size */ {
136 if ((block_size % new_block_size) == 0) {
141 a->next_block_size = block_size;
142 a->buffer = malloc(block_size);
    [all...]
  /src/external/gpl2/groff/dist/src/libs/libgroff/
symbol.cpp 34 int symbol::block_size = 0; member in class:symbol
39 #ifdef BLOCK_SIZE
40 #undef BLOCK_SIZE
43 const int BLOCK_SIZE = 1024;
140 if (block == 0 || block_size < len) {
141 block_size = len > BLOCK_SIZE ? len : BLOCK_SIZE;
142 block = new char [block_size];
147 block_size -= len
    [all...]
  /src/external/gpl2/lvm2/dist/include/
device.h 44 int block_size; member in struct:device
  /src/external/gpl2/lvm2/dist/lib/device/
device.h 44 int block_size; member in struct:device

Completed in 30 milliseconds

1 2 3 4 5