Searched refs:bytes (Results 201 - 225 of 800) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dfib_semantics.c606 static struct hlist_head *fib_hash_alloc(int bytes) argument
608 if (bytes <= PAGE_SIZE)
609 return kmalloc(bytes, GFP_KERNEL);
612 __get_free_pages(GFP_KERNEL, get_order(bytes));
615 static void fib_hash_free(struct hlist_head *hash, int bytes) argument
620 if (bytes <= PAGE_SIZE)
623 free_pages((unsigned long) hash, get_order(bytes));
632 unsigned int i, bytes; local
677 bytes = old_size * sizeof(struct hlist_head *);
678 fib_hash_free(old_info_hash, bytes);
713 unsigned int bytes; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/test/
H A DBindingSpeedTest.java238 byte[] bytes = fo.toByteArray();
239 FastInputStream fi = new FastInputStream(bytes);
242 return bytes.length;
258 byte[] bytes = fo.toByteArray();
259 FastInputStream fi = new FastInputStream(bytes);
262 return (bytes.length - SerialOutput.getStreamHeader().length);
271 byte[] bytes = fo.toByteArray();
272 FastInputStream fi = new FastInputStream(bytes);
275 return (bytes.length - SerialOutput.getStreamHeader().length);
401 byte[] bytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Ddecoder.h160 virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes) = 0;
189 static ::FLAC__StreamDecoderReadStatus read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
235 virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dmemory.c40 void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address) argument
48 x = safe_malloc_add_2op_(bytes, /*+*/31);
68 x = safe_malloc_(bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libs_common/
H A Dfile_utils_flac.c53 static FLAC__StreamEncoderWriteStatus encoder_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) argument
59 if(local__fwrite(buffer, 1, bytes, ecd->file) != bytes)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/gadget/
H A Dpxa2xx_udc.h104 unsigned long bytes; member in struct:udc_stats::ep0stats
269 dev->stats.write.bytes, dev->stats.write.ops,
270 dev->stats.read.bytes, dev->stats.read.ops);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/nand/
H A Dnand_base.c189 * @len: number of bytes to write
206 * @len: number of bytes to read
223 * @len: number of bytes to compare
242 * @len: number of bytes to write
262 * @len: number of bytes to read
281 * @len: number of bytes to compare
367 /* We write two bytes, so we dont have to mess with 16 bit
473 /* First 256 bytes --> READ0 */
786 int eccbytes = chip->ecc.bytes;
834 /* Column address wihin the page aligned to ECC size (256bytes)
1016 size_t bytes = 0; local
1056 int chipnr, page, realpage, col, bytes, aligned; local
1687 size_t bytes = 0; local
1773 int bytes = mtd->writesize; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dstat.c430 void inode_add_bytes(struct inode *inode, loff_t bytes) argument
433 inode->i_blocks += bytes >> 9;
434 bytes &= 511;
435 inode->i_bytes += bytes;
445 void inode_sub_bytes(struct inode *inode, loff_t bytes) argument
448 inode->i_blocks -= bytes >> 9;
449 bytes &= 511;
450 if (inode->i_bytes < bytes) {
454 inode->i_bytes -= bytes;
472 void inode_set_bytes(struct inode *inode, loff_t bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-parisc/
H A Dfloppy.h73 static int bytes=0; local
83 bytes = virtual_dma_count;
115 printk("count=%x, residue=%x calls=%d bytes=%d dma_wait=%d\n",
116 virtual_dma_count, virtual_dma_residue, calls, bytes,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Dfloppy.h63 static int bytes=0; local
73 bytes = virtual_dma_count;
105 printk("count=%x, residue=%x calls=%d bytes=%d dma_wait=%d\n",
106 virtual_dma_count, virtual_dma_residue, calls, bytes,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dfloppy.h195 static int bytes=0; local
205 bytes = virtual_dma_count;
240 printk("count=%x, residue=%x calls=%d bytes=%d dma_wait=%d\n",
241 virtual_dma_count, virtual_dma_residue, calls, bytes,
H A Dsun3xflop.h123 static int bytes=0; local
135 bytes = virtual_dma_count;
184 printk("count=%x, residue=%x calls=%d bytes=%x dma_wait=%d\n",
185 virtual_dma_count, virtual_dma_residue, calls, bytes,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dev6-memset.S23 * small (say < 32 bytes) memset()s. Whether or not that change would be
81 insql $17,$16,$2 # U : Insert new bytes
87 bis $2,$4,$1 # E : Final bytes
102 and $18,7,$18 # E : Number of trailing bytes to write
113 * $18 Number trailer bytes
118 subq $3, 16, $4 # E : Only try to unroll if > 128 bytes
202 * Write 0..7 trailing bytes.
258 insql $17,$16,$2 # U : Insert new bytes
264 bis $2,$4,$1 # E : Final bytes
279 and $18,7,$18 # E : Number of trailing bytes t
[all...]
H A Dclear_user.S8 * right "bytes left to zero" value (and that it is updated only _after_
22 * bytes left to copy in $0
86 and $1, 7, $2 # e1 : number of bytes in tail
96 addq $0, $4, $0 # .. e1 : bytes left -= 8 - misalignment
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dsynthesis.c36 oggpack_readinit(opb,op->packet,op->bytes);
92 oggpack_readinit(opb,op->packet,op->bytes);
132 oggpack_readinit(&opb,op->packet,op->bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/x25/
H A Dx25_out.c34 int bytes = 1; local
40 bytes *= 2;
42 return bytes;
48 * Returns the amount of user data bytes sent on success
77 " failed, err=%d, %d bytes "
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/volume_id/lib/
H A Dlinux_raid.c66 uint8_t bytes[16]; member in union:__anon11527
90 volume_id_set_uuid(id, uuid.bytes, 0, UUID_FOURINT);
106 volume_id_set_uuid(id, uuid.bytes, 0, UUID_FOURINT);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/pcp/
H A Dsamba.c51 static pmdaInstid *bytes = NULL; variable
138 /* bytes instance domain */
271 else if (idp->cluster == 5) { /* bytes */
328 bytes = (pmdaInstid *)malloc(inst_count * sizeof(pmdaInstid));
329 if (bytes == NULL) {
330 __pmNoMem("bytes",inst_count * sizeof(pmdaInstid),PM_FATAL_ERR);
334 bytes[i].i_inst = i;
335 bytes[i].i_name = samba_bytes[i].name;
338 indomtab[BYTE_INDOM].it_set = bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mp/
H A Dmp_fmethod.c321 *bytesp = dbmfp->bytes;
342 __memp_set_maxsize(dbmfp, gbytes, bytes)
344 u_int32_t gbytes, bytes;
351 dbmfp->bytes = bytes;
359 ((bytes + mfp->stat.st_pagesize - 1) /
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dquotearg.c342 be the first bytes of multibyte characters, which means
412 size_t bytes = mbrtowc (&w, &arg[i + m], local
414 if (bytes == 0)
416 else if (bytes == (size_t) -1)
421 else if (bytes == (size_t) -2)
437 for (j = 1; j < bytes; j++)
451 m += bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Delectronicarts.c74 int bytes; member in struct:EaDemuxContext
108 ea->bytes = 2;
221 ea->bytes = get_byte(pb); /* 1=8-bit, 2=16-bit */
228 switch (ea->bytes) {
233 case 1: ea->audio_codec = CODEC_ID_PCM_MULAW; ea->bytes = 1; break;
252 ea->bytes = get_le32(pb); /* 1=8-bit, 2=16-bit */
427 st->codec->bits_per_coded_sample = ea->bytes * 8;
494 (ea->bytes * ea->num_channels);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dstream_encoder.cpp368 ::FLAC__StreamEncoderReadStatus Stream::read_callback(FLAC__byte buffer[], size_t *bytes) argument
370 (void)buffer, (void)bytes;
391 ::FLAC__StreamEncoderReadStatus Stream::read_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) argument
397 return instance->read_callback(buffer, bytes);
400 ::FLAC__StreamEncoderWriteStatus Stream::write_callback_(const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) argument
406 return instance->write_callback(buffer, bytes, samples, current_frame);
489 ::FLAC__StreamEncoderWriteStatus File::write_callback(const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame) argument
491 (void)buffer, (void)bytes, (void)samples, (void)current_frame;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dencoders.c91 static FLAC__StreamEncoderReadStatus stream_encoder_read_callback_(const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) argument
95 if(*bytes > 0) {
96 *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, f);
99 else if(*bytes == 0)
108 static FLAC__StreamEncoderWriteStatus stream_encoder_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) argument
112 if(fwrite(buffer, 1, bytes, f) != bytes)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/syslib/
H A Dm8260_pci_erratum9.c107 idma_pci9_read(u8 *dst, u8 *src, int bytes, int unit_size, int sinc) argument
130 bd->len = bytes;
159 idma_pci9_write(u8 *dst, u8 *src, int bytes, int unit_size, int dinc) argument
182 bd->len = bytes;
205 idma_pci9_read_le(u8 *dst, u8 *src, int bytes, int unit_size, int sinc) argument
210 idma_pci9_read(dst, src, bytes, unit_size, sinc);
213 for (i = 0, p = dst; i < bytes; i += 2, p += 2)
217 for (i = 0, p = dst; i < bytes; i += 4, p += 4)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/lib/
H A Dnand_init.S6 ## due to a bug/feature we can only trust the 256 first bytes. So this
8 ## code must fit in the first 256 bytes so alter with care.
21 ## can't trust more than the first 256 bytes.

Completed in 206 milliseconds

1234567891011>>