Searched refs:bytes (Results 1 - 25 of 800) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/
H A Dudev_sysdeps.c33 size_t bytes = 0; local
39 if (bytes+1 < size)
41 bytes++;
47 return bytes;
52 size_t bytes = 0; local
57 while (bytes < size && *q) {
59 bytes++;
61 if (bytes == size)
62 return (bytes + strlen(src));
65 if (bytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/
H A DByteArrayBinding.java39 byte[] bytes = new byte[len];
41 bytes, 0, bytes.length);
42 return bytes;
49 byte[] bytes = (byte[]) object;
50 entry.setData(bytes, 0, bytes.length);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtask_io_accounting_ops.h10 static inline void task_io_account_read(size_t bytes) argument
12 current->ioac.read_bytes += bytes;
16 * We approximate number of blocks, because we account bytes only.
17 * A 'block' is 512 bytes
24 static inline void task_io_account_write(size_t bytes) argument
26 current->ioac.write_bytes += bytes;
30 * We approximate number of blocks, because we account bytes only.
31 * A 'block' is 512 bytes
38 static inline void task_io_account_cancelled_write(size_t bytes) argument
40 current->ioac.cancelled_write_bytes += bytes;
50 task_io_account_read(size_t bytes) argument
59 task_io_account_write(size_t bytes) argument
68 task_io_account_cancelled_write(size_t bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/zd1211rw/
H A Dzd_util.h24 void zd_hexdump(const void *bytes, size_t size);
26 #define zd_hexdump(bytes, size)
H A Dzd_util.c35 static void dump_line(const u8 *bytes, size_t size) argument
41 printk(KERN_DEBUG "zd1211 %p ", bytes);
55 printk("%c%c%c", hex(bytes[i] >> 4), hex(bytes[i]), c);
62 printk("%c", hex_print(bytes[i]));
66 void zd_hexdump(const void *bytes, size_t size) argument
71 dump_line((u8 *)bytes + i, size-i);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/lpfc/
H A Dlpfc_compat.h30 However on a big-endian host, copy 4 bytes at a time,
38 lpfc_memcpy_to_slim(void __iomem *dest, void *src, unsigned int bytes) argument
48 /* write input bytes, 4 bytes at a time */
49 for (four_bytes = bytes /4; four_bytes > 0; four_bytes--) {
60 lpfc_memcpy_from_slim( void *dest, void __iomem *src, unsigned int bytes) argument
70 /* read input bytes, 4 bytes at a time */
71 for (four_bytes = bytes /4; four_bytes > 0; four_bytes--) {
83 lpfc_memcpy_to_slim( void __iomem *dest, void *src, unsigned int bytes) argument
90 lpfc_memcpy_from_slim( void *dest, void __iomem *src, unsigned int bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dfilemap.h21 size_t bytes);
24 * Copy as much as we can into the page and return the number of bytes which
26 * out to (offset+bytes) and return the number of bytes which were copied.
38 const char __user *buf, unsigned bytes)
44 left = __copy_from_user_inatomic_nocache(kaddr + offset, buf, bytes);
50 left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
53 return bytes - left;
59 * page (out to offset+bytes), to emulate filemap_copy_from_user()'s
64 const struct iovec *iov, size_t base, size_t bytes)
37 filemap_copy_from_user(struct page *page, unsigned long offset, const char __user *buf, unsigned bytes) argument
63 filemap_copy_from_user_iovec(struct page *page, unsigned long offset, const struct iovec *iov, size_t base, size_t bytes) argument
85 filemap_set_next_iovec(const struct iovec **iovp, size_t *basep, size_t bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DUtfOps.java26 * @param bytes the data containing the UTF string.
32 * @return the number of bytes.
34 public static int getZeroTerminatedByteLength(byte[] bytes, int offset) argument
38 while (bytes[offset++] != 0) {
89 * @param bytes the UTF string.
99 public static int getCharLength(byte[] bytes) argument
102 return getCharLength(bytes, 0, bytes.length);
108 * @param bytes the data containing the UTF string.
120 public static int getCharLength(byte[] bytes, in argument
167 bytesToChars(byte[] bytes, int byteOffset, char[] chars, int charOffset, int len, boolean isByteLen) argument
218 charsToBytes(char[] chars, int charOffset, byte[] bytes, int byteOffset, int charLength) argument
255 bytesToString(byte[] bytes, int offset, int length) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dparse.c41 signed long id3_parse_int(id3_byte_t const **ptr, unsigned int bytes) argument
45 assert(bytes >= 1 && bytes <= 4);
50 switch (bytes) {
60 unsigned long id3_parse_uint(id3_byte_t const **ptr, unsigned int bytes) argument
64 assert(bytes >= 1 && bytes <= 4);
66 switch (bytes) {
76 unsigned long id3_parse_syncsafe(id3_byte_t const **ptr, unsigned int bytes) argument
80 assert(bytes
93 id3_parse_immediate(id3_byte_t const **ptr, unsigned int bytes, char *value) argument
[all...]
H A Drender.c43 char const *value, unsigned int bytes)
46 assert(bytes == 8 || bytes == 4 || bytes == 3);
49 switch (bytes) {
61 return bytes;
65 unsigned long num, unsigned int bytes)
67 assert(bytes == 4 || bytes == 5);
70 switch (bytes) {
42 id3_render_immediate(id3_byte_t **ptr, char const *value, unsigned int bytes) argument
64 id3_render_syncsafe(id3_byte_t **ptr, unsigned long num, unsigned int bytes) argument
82 id3_render_int(id3_byte_t **ptr, signed long num, unsigned int bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dparse.c41 signed long id3_parse_int(id3_byte_t const **ptr, unsigned int bytes) argument
45 assert(bytes >= 1 && bytes <= 4);
50 switch (bytes) {
60 unsigned long id3_parse_uint(id3_byte_t const **ptr, unsigned int bytes) argument
64 assert(bytes >= 1 && bytes <= 4);
66 switch (bytes) {
76 unsigned long id3_parse_syncsafe(id3_byte_t const **ptr, unsigned int bytes) argument
80 assert(bytes
93 id3_parse_immediate(id3_byte_t const **ptr, unsigned int bytes, char *value) argument
[all...]
H A Drender.c43 char const *value, unsigned int bytes)
46 assert(bytes == 8 || bytes == 4 || bytes == 3);
49 switch (bytes) {
61 return bytes;
65 unsigned long num, unsigned int bytes)
67 assert(bytes == 4 || bytes == 5);
70 switch (bytes) {
42 id3_render_immediate(id3_byte_t **ptr, char const *value, unsigned int bytes) argument
64 id3_render_syncsafe(id3_byte_t **ptr, unsigned long num, unsigned int bytes) argument
82 id3_render_int(id3_byte_t **ptr, signed long num, unsigned int bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dpcm-indirect.h35 unsigned int sw_io; /* Current software pointer in bytes */
41 struct snd_pcm_indirect *rec, size_t bytes);
66 unsigned int bytes = qsize - rec->hw_ready; local
67 if (rec->sw_ready < (int)bytes)
68 bytes = rec->sw_ready;
69 if (hw_to_end < bytes)
70 bytes = hw_to_end;
71 if (sw_to_end < bytes)
72 bytes = sw_to_end;
73 if (! bytes)
95 int bytes = ptr - rec->hw_io; local
131 size_t bytes = rec->sw_buffer_size - rec->sw_ready; local
161 int bytes = ptr - rec->hw_io; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/sn/kernel/sn2/
H A Dcache.c16 * @bytes: number of bytes to flush
20 * @flush_addr to @flush_addr + @bytes are flushed
24 sn_flush_all_caches(long flush_addr, long bytes) argument
32 flush_icache_range(addr, addr + bytes);
38 flush_icache_range(addr, addr + bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dsampleconv.c45 size_t bytes = length; local
48 rc = platform_a2e(&tempptrin, &bytes, &tempptrout, &bytes);
59 size_t bytes = length; local
62 rc = platform_e2a(&tempptrin, &bytes, &tempptrout, &bytes);
73 size_t bytes = length; local
76 rc = platform_u2e(&tempptrin, &bytes, &tempptrout, &bytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dbytestream.h29 #define DEF_T(type, name, bytes, read, write) \
31 (*b) += bytes;\
32 return read(*b - bytes);\
36 (*b) += bytes;\
39 #define DEF(name, bytes, read, write) \
40 DEF_T(unsigned int, name, bytes, read, write)
41 #define DEF64(name, bytes, read, write) \
42 DEF_T(uint64_t, name, bytes, read, write)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc/
H A Dxor.h24 sparc_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) argument
26 int lines = bytes / (sizeof (long)) / 8;
61 sparc_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
64 int lines = bytes / (sizeof (long)) / 8;
112 sparc_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
115 int lines = bytes / (sizeof (long)) / 8;
176 sparc_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, argument
179 int lines = bytes / (sizeof (long)) / 8;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/include/
H A Dflashutl.h27 int sysFlashRead(uint off, uchar *dst, uint bytes);
28 int sysFlashWrite(uint off, uchar *src, uint bytes);
H A Dbcmendian.h29 /* Reverse the bytes in a 16-bit value */
34 /* Reverse the bytes in a 32-bit value */
46 /* Reverse the bytes in a 64-bit value */
182 #define htol16_ua_store(val, bytes) ({ \
184 uint8 *_bytes = (uint8 *)(bytes); \
189 #define htol32_ua_store(val, bytes) ({ \
191 uint8 *_bytes = (uint8 *)(bytes); \
198 #define hton16_ua_store(val, bytes) ({ \
200 uint8 *_bytes = (uint8 *)(bytes); \
205 #define hton32_ua_store(val, bytes) ({ \
279 htol16_ua_store(uint16 val, uint8 *bytes) argument
289 htol32_ua_store(uint32 val, uint8 *bytes) argument
301 hton16_ua_store(uint16 val, uint8 *bytes) argument
311 hton32_ua_store(uint32 val, uint8 *bytes) argument
323 ltoh16_ua(const void *bytes) argument
332 ltoh32_ua(const void *bytes) argument
341 ntoh16_ua(const void *bytes) argument
350 ntoh32_ua(const void *bytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/kvm/
H A Dx86_emulate.h42 * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
56 * read_std: Read bytes of standard (non-emulated/special) memory.
60 * @bytes: [IN ] Number of bytes to read from memory.
63 unsigned int bytes, struct x86_emulate_ctxt * ctxt);
66 * write_std: Write bytes of standard (non-emulated/special) memory.
69 * @val: [IN ] Value to write to memory (low-order bytes used as
71 * @bytes: [IN ] Number of bytes to write to memory.
74 unsigned int bytes, struc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmbchar.h40 returns the number of bytes occupied by the multibyte sequence.
164 size_t bytes; /* number of bytes of current character, > 0 */ member in struct:mbchar
167 char buf[MBCHAR_BUF_SIZE]; /* room for the bytes, used for file input only */
170 /* EOF (not a real character) is represented with bytes = 0 and
177 #define mb_len(mbc) ((mbc).bytes)
189 : (mbc1).bytes == (mbc2).bytes \
190 ? memcmp ((mbc1).ptr, (mbc2).ptr, (mbc1).bytes) \
191 : (mbc1).bytes < (mbc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dmbchar.h40 returns the number of bytes occupied by the multibyte sequence.
164 size_t bytes; /* number of bytes of current character, > 0 */ member in struct:mbchar
167 char buf[MBCHAR_BUF_SIZE]; /* room for the bytes, used for file input only */
170 /* EOF (not a real character) is represented with bytes = 0 and
177 #define mb_len(mbc) ((mbc).bytes)
189 : (mbc1).bytes == (mbc2).bytes \
190 ? memcmp ((mbc1).ptr, (mbc2).ptr, (mbc1).bytes) \
191 : (mbc1).bytes < (mbc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/raid/
H A Dxor.h8 extern void xor_block(unsigned int count, unsigned int bytes, void **ptr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/env/
H A Denv_file.c67 u_int32_t mbytes, bytes; local
71 (ret = __os_ioinfo(env, path, fhp, &mbytes, &bytes, NULL)) == 0) {
79 __db_file_write(env, fhp, mbytes, bytes, 255)) != 0)
82 __db_file_write(env, fhp, mbytes, bytes, 0)) != 0)
85 __db_file_write(env, fhp, mbytes, bytes, 255)) != 0)
103 __db_file_write(env, fhp, mbytes, bytes, pattern)
107 u_int32_t mbytes, bytes;
126 for (; bytes > 0; bytes -= (u_int32_t)len) {
127 len = bytes < FILE_WRITE_IO_SIZ
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-sharp/
H A DUtility.cs50 byte[] bytes = new byte[len];
51 Marshal.Copy (ptr, bytes, 0, len);
52 return Encoding.UTF8.GetString (bytes);
78 byte[] bytes = Utility.StringToBytes (str);
79 IntPtr buf = Stdlib.malloc ((uint) bytes.Length + 1);
80 Marshal.Copy (bytes, 0, buf, bytes.Length);
81 Marshal.WriteByte (buf, bytes.Length, 0);

Completed in 322 milliseconds

1234567891011>>