Searched refs:block_size (Results 1 - 25 of 268) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/src/router/squashfs-4.2/
H A Dcompressor.h43 int block_size, int datablock)
47 return comp->init(stream, block_size, datablock);
52 void *dest, void *src, int size, int block_size, int *error)
54 return comp->compress(strm, dest, src, size, block_size, error);
59 void *src, int size, int block_size, int *error)
61 return comp->uncompress(dest, src, size, block_size, error);
75 static inline int compressor_options_post(struct compressor *comp, int block_size) argument
79 return comp->options_post(block_size);
84 int block_size, int *size)
88 return comp->dump_options(block_size, siz
42 compressor_init(struct compressor *comp, void **stream, int block_size, int datablock) argument
51 compressor_compress(struct compressor *comp, void *strm, void *dest, void *src, int size, int block_size, int *error) argument
58 compressor_uncompress(struct compressor *comp, void *dest, void *src, int size, int block_size, int *error) argument
83 compressor_dump_options(struct compressor *comp, int block_size, int *size) argument
92 compressor_extract_options(struct compressor *comp, int block_size, void *buffer, int size) argument
[all...]
H A Dgzip_wrapper.c28 static int gzip_init(void **strm, int block_size, int flags) argument
54 static int gzip_compress(void *strm, void *d, void *s, int size, int block_size, argument
67 stream->avail_out = block_size;
90 static int gzip_uncompress(void *d, void *s, int size, int block_size, int *error) argument
93 unsigned long bytes = block_size;
H A Dlzo_wrapper.c44 static int squashfs_lzo_init(void **strm, int block_size, int flags) argument
54 if((stream->out = malloc(LZO_OUTPUT_BUFFER_SIZE(block_size))) == NULL)
68 static int lzo_compress(void *strm, void *d, void *s, int size, int block_size, argument
100 static int lzo_uncompress(void *d, void *s, int size, int block_size, int *error) argument
103 lzo_uint bytes = block_size;
H A Dlzma_wrapper.c32 static int lzma_compress(void *strm, void *dest, void *src, int size, int block_size, argument
37 outlen = block_size - LZMA_HEADER_SIZE;
41 &props_size, 5, block_size, 3, 0, 2, 32, 1);
82 static int lzma_uncompress(void *dest, void *src, int size, int block_size, argument
H A Dlzma_xz_wrapper.c39 int block_size, int *error)
47 opt.dict_size = block_size;
56 strm.avail_out = block_size;
99 static int lzma_uncompress(void *dest, void *src, int size, int block_size, argument
120 strm.avail_out = block_size;
38 lzma_compress(void *dummy, void *dest, void *src, int size, int block_size, int *error) argument
H A Dxz_wrapper.c136 static int xz_options_post(int block_size) argument
146 if(dictionary_size > block_size) {
148 " block_size\n");
152 dictionary_size = block_size * dictionary_percent / 100;
179 dictionary_size = block_size;
188 static void *xz_dump_options(int block_size, int *size) argument
199 * datablock dictionary size: block_size
202 if(dictionary_size == block_size && filter_count == 1)
218 static int xz_extract_options(int block_size, void *buffer, int size) argument
225 dictionary_size = block_size;
266 xz_init(void **strm, int block_size, int datablock) argument
319 xz_compress(void *strm, void *dest, void *src, int size, int block_size, int *error) argument
370 xz_uncompress(void *dest, void *src, int size, int block_size, int *error) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/befs/
H A Dsuper.c38 befs_sb->block_size = fs32_to_cpu(sb, disk_sb->block_size);
78 if ((befs_sb->block_size != 1024)
79 && (befs_sb->block_size != 2048)
80 && (befs_sb->block_size != 4096)
81 && (befs_sb->block_size != 8192)) {
82 befs_error(sb, "invalid blocksize: %u", befs_sb->block_size);
86 if (befs_sb->block_size > PAGE_SIZE) {
88 "than system pagesize(%lu)", befs_sb->block_size,
94 * block_shift and block_size encod
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dgsm_parser.c33 int block_size; member in struct:GSMParseContext
46 if (!s->block_size) {
49 s->block_size = GSM_BLOCK_SIZE;
53 s->block_size = avctx->block_align ? avctx->block_align
66 s->remaining = s->block_size;
H A Dadx_parser.c35 int block_size; member in struct:ADXParseContext
59 s->block_size = BLOCK_SIZE * channels;
60 s->remaining = i - 7 + s->header_size + s->block_size;
70 s->remaining = s->block_size;
H A Dpcm-dvd.c33 int block_size; // Size of a block of samples in bytes member in struct:PCMDVDContext
114 s->block_size = avctx->channels * 2;
121 s->block_size = 4 * avctx->bits_per_coded_sample / 8;
127 s->block_size = 8 * avctx->bits_per_coded_sample / 8;
133 s->block_size = 4 * avctx->channels *
163 bytestream2_init(&gb, src, blocks * s->block_size);
167 bytestream2_get_buffer(&gb, dst16, blocks * s->block_size);
168 dst16 += blocks * s->block_size / 2;
252 if (s->last_block_size && s->last_block_size != s->block_size) {
253 av_log(avctx, AV_LOG_WARNING, "block_size ha
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dgsm_parser.c33 int block_size; member in struct:GSMParseContext
45 if (!s->block_size) {
47 case CODEC_ID_GSM: s->block_size = GSM_BLOCK_SIZE; break;
48 case CODEC_ID_GSM_MS: s->block_size = GSM_MS_BLOCK_SIZE; break;
55 s->remaining = s->block_size;
H A Dadx_parser.c35 int block_size; member in struct:ADXParseContext
59 s->block_size = BLOCK_SIZE * channels;
60 s->remaining = i - 7 + s->header_size + s->block_size;
70 s->remaining = s->block_size;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/lib/
H A Dtre-mem.c109 int 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;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/memrar/
H A Dmemrar_allocator.h60 * @block_size: The size in bytes of individual blocks within
76 size_t block_size; member in struct:memrar_allocator
86 * be larger than the block_size, ideally more than twice
89 * @block_size: The size of individual blocks within the memory
100 * itself, or if the capacity and block_size arguments are not
105 size_t block_size);
H A Dmemrar_allocator.c46 size_t block_size)
52 * Make sure the base address is aligned on a block_size
57 /* base = ALIGN(base, block_size); */
66 || block_size == 0
68 || capacity < block_size)
76 WARN(capacity < block_size * 2,
87 /* Round the capacity down to a multiple of block_size. */
88 allocator->capacity = (capacity / block_size) * block_size;
90 allocator->block_size
44 memrar_create_allocator(unsigned long base, size_t capacity, size_t block_size) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dhuman_readable.c10 * 1) I'm using an unsigned long long to hold the product size * block_size,
32 unsigned long block_size, unsigned long display_unit)
50 val = size * block_size;
31 make_human_readable_str(unsigned long long size, unsigned long block_size, unsigned long display_unit) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/char/
H A Dtape_char.c98 tapechar_check_idalbuffer(struct tape_device *device, size_t block_size) argument
103 device->char_data.idal_buf->size == block_size)
106 if (block_size > MAX_BLOCKSIZE) {
108 block_size, MAX_BLOCKSIZE);
113 new = idal_buffer_alloc(block_size, 0);
133 size_t block_size; local
149 if (device->char_data.block_size != 0) {
150 if (count < device->char_data.block_size) {
155 block_size = device->char_data.block_size;
196 size_t block_size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gdbm-1.8.3/
H A Dgdbmopen.c57 gdbm_open (file, block_size, flags, mode, fatal_func)
59 int block_size;
209 if (block_size < 512)
212 file_block_size = block_size;
223 /* Set the magic number and the block_size. */
225 dbf->header->block_size = file_block_size;
230 while (dbf->header->dir_size < dbf->header->block_size)
236 /* Check for correct block_size. */
237 if (dbf->header->dir_size != dbf->header->block_size)
252 dbf->header->dir = dbf->header->block_size;
[all...]
H A Dconv2gdbm.c62 int block_size; /* gdbm block size. */ local
70 block_size = 0;
83 block_size = atoi (optarg);
126 gfile = gdbm_open (gdbm_file, block_size, GDBM_WRCREAT, 00664, NULL);
182 printf ("usage: %s [-q] [-b block_size] dbmfile [gdbmfile]\n", name);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/gdbm-1.8.3/
H A Dgdbmopen.c57 gdbm_open (file, block_size, flags, mode, fatal_func)
59 int block_size;
209 if (block_size < 512)
212 file_block_size = block_size;
223 /* Set the magic number and the block_size. */
225 dbf->header->block_size = file_block_size;
230 while (dbf->header->dir_size < dbf->header->block_size)
236 /* Check for correct block_size. */
237 if (dbf->header->dir_size != dbf->header->block_size)
252 dbf->header->dir = dbf->header->block_size;
[all...]
H A Dconv2gdbm.c62 int block_size; /* gdbm block size. */ local
70 block_size = 0;
83 block_size = atoi (optarg);
126 gfile = gdbm_open (gdbm_file, block_size, GDBM_WRCREAT, 00664, NULL);
182 printf ("usage: %s [-q] [-b block_size] dbmfile [gdbmfile]\n", name);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/squashfs/
H A Dsquashfs_fs_sb.h34 int block_size; member in struct:squashfs_cache
73 unsigned int block_size; member in struct:squashfs_sb_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/octeon/
H A Dcvmx-fpa.c57 * @block_size: Size for each block controlled by the FPA
64 uint64_t block_size, uint64_t num_blocks)
77 if (block_size < CVMX_FPA_MIN_BLOCK_SIZE) {
90 cvmx_fpa_pool_info[pool].size = block_size;
97 ptr += block_size;
63 cvmx_fpa_setup_pool(uint64_t pool, const char *name, void *buffer, uint64_t block_size, uint64_t num_blocks) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A Devp_locl.h65 bl = ctx->cipher->block_size;\
105 #define BLOCK_CIPHER_def1(cname, nmode, mode, MODE, kstruct, nid, block_size, \
109 nid##_##nmode, block_size, key_len, iv_len, \
121 #define BLOCK_CIPHER_def_cbc(cname, kstruct, nid, block_size, key_len, \
124 BLOCK_CIPHER_def1(cname, cbc, cbc, CBC, kstruct, nid, block_size, key_len, \
141 #define BLOCK_CIPHER_def_ecb(cname, kstruct, nid, block_size, key_len, \
144 BLOCK_CIPHER_def1(cname, ecb, ecb, ECB, kstruct, nid, block_size, key_len, \
148 nid, block_size, key_len, iv_len, cbits, flags, \
150 BLOCK_CIPHER_def_cbc(cname, kstruct, nid, block_size, key_len, iv_len, flags, \
156 BLOCK_CIPHER_def_ecb(cname, kstruct, nid, block_size, key_le
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dioctl.h32 __u64 block_size; /* out: block length */ member in struct:ceph_ioctl_dataloc

Completed in 298 milliseconds

1234567891011