Searched refs:len (Results 1 - 25 of 3079) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/tools/
H A Dprint_offsets.awk43 len = length(name)
44 name = substr(name, 2, len - 2)
45 len -= 2
46 if (len == 0)
49 len += 8
50 if (len >= 40) {
54 while (len < 40) {
55 len += 8
/asus-wl-520gu-7.0.1.45/src/router/vsftpd/port/
H A Dcmsg_extras.h9 #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) \
14 #define CMSG_SPACE(len) (CMSG_ALIGN (len) \
19 #define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Dold-checksum.c13 int len, unsigned int sum,
18 missing = copy_from_user(dst, src, len);
20 memset(dst + len - missing, 0, missing);
24 return csum_partial(dst, len, sum);
27 unsigned int csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
29 memcpy(dst,src,len);
30 return csum_partial(dst,len,sum);
12 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *err_ptr) argument
H A Dio.c5 void *memcpy_toio(void *dst,const void*src,unsigned len) argument
7 return __inline_memcpy(__io_virt(dst),src,len);
10 void *memcpy_fromio(void *dst,const void*src,unsigned len) argument
12 return __inline_memcpy(dst,__io_virt(src),len);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dproc.c72 int len = socket_get_info(buffer,start,offset,length); local
74 len += sprintf(buffer+len,"TCP: inuse %d orphan %d tw %d alloc %d mem %d\n",
79 len += sprintf(buffer+len,"UDP: inuse %d\n",
81 len += sprintf(buffer+len,"RAW: inuse %d\n",
83 len += sprintf(buffer+len, "FRAG: inuse %d memory %d\n",
85 if (offset >= len)
120 int len, i; local
168 int len, i; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/scsi/
H A Deata_pio_proc.c31 int size, len = 0; local
48 size = sprintf(buffer+len, "EATA (Extended Attachment) PIO driver version: "
50 len += size; pos = begin + len;
51 size = sprintf(buffer + len, "queued commands: %10ld\n"
53 len += size; pos = begin + len;
55 size = sprintf(buffer + len, "\nscsi%-2d: HBA %.10s\n",
57 len += size;
58 pos = begin + len;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dtrim.c36 int len = strlen(s); local
39 while ( len > 0 && isspace(s[len-1]))
40 s[--len]='\0';
43 memmove(s, &s[strspn(s, " \n\r\t\v")], len);
H A Dfull_read.c39 int full_read(int fd, char *buf, int len) argument
46 while (len > 0) {
47 cc = read(fd, buf, len);
57 len -= cc;
H A Dfull_write.c37 int full_write(int fd, const char *buf, int len) argument
44 while (len > 0) {
45 cc = write(fd, buf, len);
52 len -= cc;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dchecksum.h19 * computes the checksum of a memory block at buff, length len,
31 csum_partial(const unsigned char * buff, int len, unsigned int sum);
37 csum_partial_inline(const unsigned char * buff, int len, unsigned int sum) argument
45 : "d" (buff), "d" (len)
59 csum_partial_copy(const char *src, char *dst, int len,unsigned int sum) argument
61 memcpy(dst,src,len);
62 return csum_partial_inline(dst, len, sum);
76 int len, unsigned int sum,
81 missing = copy_from_user(dst, src, len);
83 memset(dst + len
75 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *err_ptr) argument
91 csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
141 csum_tcpudp_nofold(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
174 csum_tcpudp_magic(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
187 ip_compute_csum(unsigned char * buff, int len) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dchecksum.h19 * computes the checksum of a memory block at buff, length len,
31 csum_partial(const unsigned char * buff, int len, unsigned int sum);
37 csum_partial_inline(const unsigned char * buff, int len, unsigned int sum) argument
45 : "d" (buff), "d" (len)
59 csum_partial_copy(const char *src, char *dst, int len,unsigned int sum) argument
61 memcpy(dst,src,len);
62 return csum_partial_inline(dst, len, sum);
76 int len, unsigned int sum,
81 missing = copy_from_user(dst, src, len);
83 memset(dst + len
75 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *err_ptr) argument
91 csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
141 csum_tcpudp_nofold(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
174 csum_tcpudp_magic(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
187 ip_compute_csum(unsigned char * buff, int len) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/lib/
H A Dio-shark.c23 void insl(unsigned int port, void *to, int len) argument
28 void insb(unsigned int port, void *to, int len) argument
33 void outsl(unsigned int port, const void *from, int len) argument
38 void outsb(unsigned int port, const void *from, int len) argument
52 void insw(unsigned int port, void *to, int len) argument
56 for (i = 0; i < len; i++)
60 void inswb(unsigned int port, void *to, int len) argument
62 insw(port, to, len >> 2);
72 void outsw(unsigned int port, const void *from, int len) argument
76 for (i = 0; i < len;
80 outswb(unsigned int port, const void *from, int len) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/
H A Dwordwrap.pl20 $len = length($word) + 1;
21 $linelen += $len;
24 $linelen = 1+$len;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/message/i2o/
H A Di2o_proc.c302 int len, i; local
306 len = 0;
310 len += sprintf(buf+len,
313 return len;
318 len += sprintf(buf+len,
321 return len;
324 len += sprintf(buf+len, "HR
402 i2o_proc_read_lct(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
538 i2o_proc_read_status(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
709 i2o_proc_read_hw(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
775 i2o_proc_read_ddm_table(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
857 i2o_proc_read_driver_store(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
888 i2o_proc_read_drivers_stored(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
978 i2o_proc_read_groups(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1053 i2o_proc_read_phys_device(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1103 i2o_proc_read_claimed(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1152 i2o_proc_read_users(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1212 i2o_proc_read_priv_msgs(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1275 i2o_proc_read_authorized_users(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1327 i2o_proc_read_dev_identity(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1374 i2o_proc_read_dev_name(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1389 i2o_proc_read_ddm_identity(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1435 i2o_proc_read_uinfo(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1472 i2o_proc_read_sgl_limits(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1524 i2o_proc_read_sensors(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
1992 i2o_proc_read_lan_dev_info(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2116 i2o_proc_read_lan_mac_addr(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2201 i2o_proc_read_lan_mcast_addr(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2250 i2o_proc_read_lan_batch_control(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2291 i2o_proc_read_lan_operation(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2351 i2o_proc_read_lan_media_operation(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2433 i2o_proc_read_lan_alt_addr(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2481 i2o_proc_read_lan_tx_info(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2533 i2o_proc_read_lan_rx_info(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2589 i2o_proc_read_lan_hist_stats(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2820 i2o_proc_read_lan_eth_stats(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2914 i2o_proc_read_lan_tr_stats(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
2985 i2o_proc_read_lan_fddi_stats(char *buf, char **start, off_t offset, int len, int *eof, void *data) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dsrm_puts.c9 srm_puts(const char *str, long len) argument
14 return len;
16 for (remaining = len; remaining > 0; remaining -= written)
22 return len;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Dparport.h14 #define insl(port,buf,len) isa_insb(port,buf,(len)<<2)
15 #define outsl(port,buf,len) isa_outsb(port,buf,(len)<<2)
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Dparport.h14 #define insl(port,buf,len) isa_insb(port,buf,(len)<<2)
15 #define outsl(port,buf,len) isa_outsb(port,buf,(len)<<2)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/lib/
H A Dcsum_partial_copy.c27 int len, unsigned int sum)
33 sum = csum_partial(src, len, sum);
34 memcpy(dst, src, len);
44 int len, unsigned int sum,
49 missing = copy_from_user(dst, src, len);
51 memset(dst + len - missing, 0, missing);
55 return csum_partial(dst, len, sum);
26 csum_partial_copy(const char *src, char *dst, int len, unsigned int sum) argument
43 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *err_ptr) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips64/lib/
H A Dcsum_partial_copy.c20 int len, unsigned int sum)
26 sum = csum_partial(src, len, sum);
27 memcpy(dst, src, len);
37 int len, unsigned int sum,
42 missing = copy_from_user(dst, src, len);
44 memset(dst + len - missing, 0, missing);
48 return csum_partial(dst, len, sum);
19 csum_partial_copy(const char *src, char *dst, int len, unsigned int sum) argument
36 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *err_ptr) argument
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dchecksum.h21 unsigned short len,
27 unsigned short len,
32 * Computes the checksum of a memory block at buff, length len,
43 extern unsigned int csum_partial (const unsigned char * buff, int len,
52 extern unsigned int csum_partial_copy (const char *src, char *dst, int len,
69 int len, unsigned int sum,
73 int len, unsigned int sum);
79 extern unsigned short ip_compute_csum (unsigned char *buff, int len);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dchecksum.h21 unsigned short len,
27 unsigned short len,
32 * Computes the checksum of a memory block at buff, length len,
43 extern unsigned int csum_partial (const unsigned char * buff, int len,
52 extern unsigned int csum_partial_copy (const char *src, char *dst, int len,
69 int len, unsigned int sum,
73 int len, unsigned int sum);
79 extern unsigned short ip_compute_csum (unsigned char *buff, int len);
/asus-wl-520gu-7.0.1.45/src/bcm57xx/linux/
H A Db57proc.c194 int len = 0; local
203 len += sprintf(page+len, "Description\t\t\t%s\n", pUmDevice->name);
204 len += sprintf(page+len, "Driver_Name\t\t\t%s\n", bcm5700_driver);
205 len += sprintf(page+len, "Driver_Version\t\t\t%s\n", bcm5700_version);
206 len += sprintf(page+len, "Bootcode_Version\t\t%s\n", pDevice->BootCodeVer);
208 len
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/sunrpc/
H A Dxdr.c25 unsigned int quadlen = XDR_QUADLEN(obj->len);
28 *p++ = htonl(obj->len);
29 memcpy(p, obj->data, obj->len);
30 return p + XDR_QUADLEN(obj->len);
34 xdr_decode_netobj_fixed(u32 *p, void *obj, unsigned int len) argument
36 if (ntohl(*p++) != len)
38 memcpy(obj, p, len);
39 return p + XDR_QUADLEN(len);
45 unsigned int len; local
47 if ((len
55 xdr_encode_array(u32 *p, const char *array, unsigned int len) argument
74 unsigned int len; local
95 unsigned int len; local
106 xdr_encode_pages(struct xdr_buf *xdr, struct page **pages, unsigned int base, unsigned int len) argument
125 xdr_inline_pages(struct xdr_buf *xdr, unsigned int offset, struct page **pages, unsigned int base, unsigned int len) argument
153 xdr_shift_iovec(struct iovec *iov, int nr, size_t len) argument
183 unsigned int len, pglen = xdr->page_len; local
269 unsigned int len, pglen = xdr->page_len; local
318 copy_actor(desc, (char *)xdr->tail[0].iov_base + base, len); local
322 xdr_shift_buf(struct xdr_buf *xdr, size_t len) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips/
H A Dchecksum.h14 * computes the checksum of a memory block at buff, length len,
25 unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum);
37 unsigned int csum_partial_copy_from_user(const char *src, char *dst, int len,
45 int len, int sum,
48 sum = csum_partial(src, len, sum);
50 if (copy_to_user(dst, src, len)) {
65 unsigned int csum_partial_copy(const char *src, char *dst, int len,
146 unsigned short len,
167 "r" ((ntohs(len)<<16)+proto*256),
169 "r" (((proto)<<16)+len),
44 csum_and_copy_to_user(const char *src, char *dst, int len, int sum, int *err_ptr) argument
144 csum_tcpudp_nofold(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
180 csum_tcpudp_magic(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
193 ip_compute_csum(unsigned char * buff, int len) argument
199 csum_ipv6_magic(struct in6_addr *saddr, struct in6_addr *daddr, __u32 len, unsigned short proto, unsigned int sum) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/
H A Dchecksum.h17 * computes the checksum of a memory block at buff, length len,
28 unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum);
40 unsigned int csum_partial_copy_from_user(const char *src, char *dst, int len,
48 int len, int sum,
51 sum = csum_partial(src, len, sum);
53 if (copy_to_user(dst, src, len)) {
68 unsigned int csum_partial_copy(const char *src, char *dst, int len,
149 unsigned short len,
165 "r" (((unsigned long)ntohs(len)<<16)+proto*256),
167 "r" (((unsigned long)(proto)<<16)+len),
47 csum_and_copy_to_user(const char *src, char *dst, int len, int sum, int *err_ptr) argument
147 csum_tcpudp_nofold(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
178 csum_tcpudp_magic(unsigned long saddr, unsigned long daddr, unsigned short len, unsigned short proto, unsigned int sum) argument
191 ip_compute_csum(unsigned char * buff, int len) argument
197 csum_ipv6_magic(struct in6_addr *saddr, struct in6_addr *daddr, __u32 len, unsigned short proto, unsigned int sum) argument
[all...]

Completed in 310 milliseconds

1234567891011>>