Searched refs:this_len (Results 1 - 8 of 8) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dxdr.c693 unsigned int this_len; local
695 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
696 memcpy(obj, subbuf->head[0].iov_base, this_len);
697 len -= this_len;
698 obj += this_len;
699 this_len = min_t(unsigned int, len, subbuf->page_len);
700 if (this_len)
701 _copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
702 len -= this_len;
703 obj += this_len;
723 unsigned int this_len; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dptrace.c253 int this_len, retval; local
255 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
256 retval = access_process_vm(tsk, src, buf, this_len, 0);
278 int this_len, retval; local
280 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
281 if (copy_from_user(buf, src, this_len))
283 retval = access_process_vm(tsk, dst, buf, this_len, 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dsplice.c360 unsigned int this_len; local
366 * this_len is the max we'll use from this page
368 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
445 this_len = min(this_len, plen - loff);
446 len = this_len;
450 partial[page_nr].len = this_len;
451 len -= this_len;
571 unsigned int offset, this_len; local
586 this_len
[all...]
H A Dpipe.c119 unsigned long this_len; local
121 this_len = min_t(unsigned long, len, iov->iov_len);
122 if (fault_in_pages_writeable(iov->iov_base, this_len))
125 len -= this_len;
141 unsigned long this_len; local
143 this_len = min_t(unsigned long, len, iov->iov_len);
144 fault_in_pages_readable(iov->iov_base, this_len);
145 len -= this_len;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/util/
H A Dftw.c295 size_t this_len = NAMLEN (d); local
296 if (actsize + this_len + 2 >= bufsize)
299 bufsize += MAX (1024, 2 * this_len);
312 *((char *) __mempcpy (buf + actsize, d->d_name, this_len))
314 actsize += this_len + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dftw.c295 size_t this_len = NAMLEN (d); local
296 if (actsize + this_len + 2 >= bufsize)
299 bufsize += MAX (1024, 2 * this_len);
312 *((char *) __mempcpy (buf + actsize, d->d_name, this_len))
314 actsize += this_len + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/arm/
H A Dacornscsi.c930 unsigned int this_len; local
933 this_len = (1 << 12) - offset;
935 this_len = len;
937 __acornscsi_in(host->card.io_ram + (offset << 1), ptr, this_len);
939 offset += this_len;
940 ptr += this_len;
941 len -= this_len;
975 unsigned int this_len; local
978 this_len = (1 << 12) - offset;
980 this_len
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/proc/
H A Dbase.c548 int this_len, retval; local
550 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
551 retval = access_process_vm(task, src, page, this_len, 0);
606 int this_len, retval; local
608 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
609 if (copy_from_user(page, buf, this_len)) {
613 retval = access_process_vm(task, dst, page, this_len, 1);

Completed in 85 milliseconds