Searched refs:capacity (Results 1 - 25 of 121) sorted by path

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlibiptc.c2232 int capacity; local
2271 * capacity is exceed with CHAIN_INDEX_INSERT_MAX chains.
2273 capacity = handle->chain_index_sz * CHAIN_INDEX_BUCKET_LEN;
2274 exceeded = handle->num_chains - capacity;
2277 capacity, exceeded, handle->num_chains);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dbitreader.c140 unsigned capacity; /* in words */ member in struct:FLAC__BitReader
227 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes;
303 br->capacity = 0;
332 br->capacity = FLAC__BITREADER_DEFAULT_CAPACITY;
333 br->buffer = (brword*)malloc(sizeof(brword) * br->capacity);
350 br->capacity = 0;
371 fprintf(out, "bitreader: capacity=%u words=%u bytes=%u consumed: words=%u, bits=%u\n", br->capacity, br->words, br->bytes, br->consumed_words, br->consumed_bits);
441 FLAC__ASSERT((br->capacity*FLAC__BITS_PER_WORD) * 2 >= bits);
H A Dbitwriter.c74 * The default capacity here doesn't matter too much. The buffer always grows
105 unsigned capacity; /* capacity of buffer in words */ member in struct:FLAC__BitWriter
134 if(bw->capacity >= new_capacity)
137 /* round up capacity increase to the nearest FLAC__BITWRITER_DEFAULT_INCREMENT */
138 if((new_capacity - bw->capacity) % FLAC__BITWRITER_DEFAULT_INCREMENT)
139 new_capacity += FLAC__BITWRITER_DEFAULT_INCREMENT - ((new_capacity - bw->capacity) % FLAC__BITWRITER_DEFAULT_INCREMENT);
141 FLAC__ASSERT(0 == (new_capacity - bw->capacity) % FLAC__BITWRITER_DEFAULT_INCREMENT);
142 FLAC__ASSERT(new_capacity > bw->capacity);
149 bw->capacity
[all...]
H A Dmd5.c231 ctx->capacity = 0;
270 ctx->capacity = 0;
408 if(ctx->capacity < bytes_needed) {
416 ctx->capacity = bytes_needed;
H A Dstream_encoder.c110 unsigned capacity; member in struct:__anon862
2315 /*@@@ new_blocksize*2 is too pessimistic, but to fix, we need smarter logic because a smaller new_blocksize can actually increase the # of partitions; would require moving this out into a separate function, then checking its capacity against the need of the current blocksize&min/max_partition_order (and maybe predictor order) */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dmd5.h36 size_t capacity; member in struct:__anon848
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doptions.c140 options->ops.capacity = 0;
144 options->args.capacity = 0;
714 if(options->ops.capacity == 0) {
715 options->ops.capacity = 50;
716 if(0 == (options->ops.operations = (Operation*)malloc(sizeof(Operation) * options->ops.capacity)))
718 memset(options->ops.operations, 0, sizeof(Operation) * options->ops.capacity);
720 if(options->ops.capacity <= options->ops.num_operations) {
721 unsigned original_capacity = options->ops.capacity;
722 if(options->ops.capacity > SIZE_MAX / 2) /* overflow check */
724 options->ops.capacity *
[all...]
H A Doptions.h194 unsigned capacity; member in struct:__anon888::__anon889
205 unsigned capacity; member in struct:__anon888::__anon890
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dbitwriter.c46 unsigned capacity; /* of buffer in words */ member in struct:FLAC__BitWriter
160 printf("capacity = %u\n", bw->capacity);
559 j = bw->capacity;
572 printf("capacity = %u\n", bw->capacity);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A Dfooter.tex19 public or corporate capacity. However, the Xiph.org Foundation and
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs27 public CircularBuffer(int capacity) argument
29 Debug.Assert( capacity > 0 );
30 _buffer = new byte[capacity];
31 _capacity = capacity;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dmpartition.c177 * Function : static int setsize(unsigned long capacity,unsigned int *cyls,
181 * SCSI disk in terms of lost space of size capacity, storing
200 * setsize() converts a read capacity value to int 13h
210 static int setsize(unsigned long capacity,unsigned int *cyls,unsigned int *hds, argument
219 heads = capacity / temp; /* Compute value for number of heads */
220 if (capacity % temp) { /* If no remainder, done! */
223 sectors = capacity / temp; /* Compute value for sectors per
225 if (capacity % temp) { /* If no remainder, done! */
228 cylinders = capacity / temp;/* Compute number of cylinders */
239 static void setsize0(unsigned long capacity,unsigne argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dpqueue.c43 if (newent->capacity >= packlen) {
59 } /* end if capacity >= packlen */
71 DEBUG_CMD(log("realloc capacity %d to %d",newent->capacity, packlen););
79 newent->capacity = packlen;
82 DEBUG_CMD(log("Recycle entry from freelist. Capacity: %d", newent->capacity););
92 newent->capacity = 0;
97 if ( ! newent->capacity ) {
107 newent->capacity = size;
108 } /* endif ! capacity */
[all...]
H A Dpqueue.h22 int capacity; member in struct:pqueue
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DDatabaseEntry.java293 setDataNIO(data, 0, (data == null) ? 0 : data.capacity());
H A DMultipleKeyNIODataEntry.java74 if(this.data_nio.capacity() < 16)
H A DMultipleNIODataEntry.java74 if(this.data_nio.capacity() < 8)
H A DMultipleRecnoNIODataEntry.java78 if(this.data_nio.capacity() < 12)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb_java_wrap.c1373 jlong capacity; local
1425 capacity = (*jenv)->GetDirectBufferCapacity(jenv,
1427 if (capacity > (jlong)UINT32_MAX)
1431 ldbt->array_len = (u_int32_t)capacity;
H A Djava_typemaps.i120 jlong capacity;
172 capacity = (*jenv)->GetDirectBufferCapacity(jenv,
174 if (capacity > (jlong)UINT32_MAX)
178 ldbt->array_len = (u_int32_t)capacity;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs27 public CircularBuffer(int capacity) argument
29 Debug.Assert( capacity > 0 );
30 _buffer = new byte[capacity];
31 _capacity = capacity;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/cdrom/
H A Dcdrom-standard.tex291 & int& capacity;& number of discs in a jukebox \cr
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/hp/sim/
H A Dsimscsi.c115 sector_t capacity, int ip[])
119 ip[2] = capacity >> 11; /* cylinders */
114 simscsi_biosparam(struct scsi_device *sdev, struct block_device *n, sector_t capacity, int ip[]) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ata/
H A Dlibata-scsi.c123 sector_t capacity, int geom[])
127 sector_div(capacity, 255*63);
128 geom[2] = capacity;
122 ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev, sector_t capacity, int geom[]) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/aoe/
H A Daoeblk.c236 gd->capacity = d->ssize;

Completed in 269 milliseconds

12345