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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/
H A Dxdr.c707 unsigned int this_len; local
709 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len);
710 memcpy(obj, subbuf->head[0].iov_base, this_len);
711 len -= this_len;
712 obj += this_len;
713 this_len = min_t(unsigned int, len, subbuf->page_len);
714 if (this_len)
715 _copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len);
716 len -= this_len;
717 obj += this_len;
738 unsigned int this_len; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dsplice.c387 unsigned int this_len; local
393 * this_len is the max we'll use from this page
395 this_len = min_t(unsigned long, len, PAGE_CACHE_SIZE - loff);
477 this_len = min(this_len, plen - loff);
478 len = this_len;
482 spd.partial[page_nr].len = this_len;
483 len -= this_len;
595 size_t this_len; local
628 this_len
729 unsigned int offset, this_len; local
[all...]
H A Dpipe.c167 unsigned long this_len; local
169 this_len = min_t(unsigned long, len, iov->iov_len);
170 if (fault_in_pages_writeable(iov->iov_base, this_len))
173 len -= this_len;
189 unsigned long this_len; local
191 this_len = min_t(unsigned long, len, iov->iov_len);
192 fault_in_pages_readable(iov->iov_base, this_len);
193 len -= this_len;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dptrace.c361 int this_len, retval; local
363 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
364 retval = access_process_vm(tsk, src, buf, this_len, 0);
386 int this_len, retval; local
388 this_len = (len > sizeof(buf)) ? sizeof(buf) : len;
389 if (copy_from_user(buf, src, this_len))
391 retval = access_process_vm(tsk, dst, buf, this_len, 1);
H A Drelay.c1263 unsigned int this_len, this_end, private; local
1269 this_len = min_t(unsigned long, len, PAGE_SIZE - poff);
1270 private = this_len;
1275 this_end = cur_pos + this_len;
1277 this_len = nonpad_end - cur_pos;
1278 private = this_len + padding;
1280 spd.partial[spd.nr_pages].len = this_len;
1283 len -= this_len;
1284 total_len += this_len;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/btrfs/
H A Ddir-item.c368 u32 this_len; local
375 this_len = sizeof(*dir_item) +
384 cur += this_len;
386 this_len);
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/arm/
H A Dacornscsi.c927 unsigned int this_len; local
930 this_len = (1 << 12) - offset;
932 this_len = len;
934 __acornscsi_in(host->base + (offset << 1), ptr, this_len);
936 offset += this_len;
937 ptr += this_len;
938 len -= this_len;
972 unsigned int this_len; local
975 this_len = (1 << 12) - offset;
977 this_len
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/
H A Dfile.c443 u64 pos, this_len; local
461 this_len = left;
463 &ci->i_layout, pos, &this_len,
467 hit_stripe = this_len < left;
468 was_short = ret >= 0 && ret < this_len;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/crypto/
H A Dn2_core.c810 int this_len = nbytes; local
812 this_len -= (nbytes & (block_size - 1));
813 return this_len > (1 << 16) ? (1 << 16) : this_len;
894 int this_len; local
901 this_len = cipher_descriptor_len(nbytes, walk->blocksize);
908 tot_len + this_len > (1 << 16)) {
925 chunk->arr[chunk->arr_len].src_len = this_len;
928 dest_prev = dest_paddr + this_len;
930 tot_len += this_len;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dldc.c2225 unsigned long this_len = cookies[i].cookie_size; local
2231 if (this_off > this_len)
2232 this_off = this_len;
2235 this_len -= this_off;
2236 if (!this_len)
2241 if (this_len > len)
2242 this_len = len;
2249 this_len, &actual_len);
2264 if (actual_len == this_len)
2267 this_len
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/proc/
H A Dbase.c811 int this_len, retval; local
813 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
814 retval = access_process_vm(task, src, page, this_len, 0);
869 int this_len, retval; local
871 this_len = (count > PAGE_SIZE) ? PAGE_SIZE : count;
872 if (copy_from_user(page, buf, this_len)) {
876 retval = access_process_vm(task, dst, page, this_len, 1);
946 int this_len, retval, max_len; local
948 this_len = mm->env_end - (mm->env_start + src);
950 if (this_len <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/mon/
H A Dmon_bin.c393 unsigned int this_len; local
415 this_len = min_t(unsigned int, sg->length, length);
417 this_len);
418 length -= this_len;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dniu.c6593 unsigned int this_len = len; local
6595 if (this_len > MAX_TX_DESC_LEN)
6596 this_len = MAX_TX_DESC_LEN;
6598 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg);
6602 mapping += this_len;
6603 len -= this_len;

Completed in 451 milliseconds