tag | line | file | source code |
copy | 2114 | drivers/scsi/53c7,8xx.c | int copy, left, old_level; |
copy | 2120 | drivers/scsi/53c7,8xx.c | copy = (buflen <= left) ? buflen : left; |
copy | 2121 | drivers/scsi/53c7,8xx.c | memcpy (hostdata->debug_write, buf, copy); |
copy | 2122 | drivers/scsi/53c7,8xx.c | buf += copy; |
copy | 2123 | drivers/scsi/53c7,8xx.c | buflen -= copy; |
copy | 2124 | drivers/scsi/53c7,8xx.c | hostdata->debug_count += copy; |
copy | 2125 | drivers/scsi/53c7,8xx.c | if ((hostdata->debug_write += copy) == |
copy | 24 | fs/msdos/fat.c | int first,last,next,copy; |
copy | 79 | fs/msdos/fat.c | for (copy = 1; copy < MSDOS_SB(sb)->fats; copy++) { |
copy | 82 | fs/msdos/fat.c | fat_length*copy,&c_data))) break; |
copy | 88 | fs/msdos/fat.c | SECTOR_BITS)+MSDOS_SB(sb)->fat_length*copy |
copy | 150 | include/linux/netdevice.h | unsigned short copy:1; |
copy | 123 | net/inet/dev.c | pt->copy=0; /* Assume we will not be copying the buffer before |
copy | 139 | net/inet/dev.c | pt->copy = 1; /* We will need to copy */ |
copy | 213 | net/inet/dev.c | if (!pt->copy && lpt) |
copy | 214 | net/inet/dev.c | lpt->copy = 0; |
copy | 738 | net/inet/dev.c | if (ptype->copy || nitcount) |
copy | 1585 | net/inet/ip.c | if (ipprot->copy) |
copy | 108 | net/inet/protocol.c | prot->copy = 0; |
copy | 114 | net/inet/protocol.c | prot->copy = 1; |
copy | 147 | net/inet/protocol.c | if (p->copy == 0 && lp != NULL) lp->copy = 0; |
copy | 45 | net/inet/protocol.h | unsigned char copy:1; |
copy | 897 | net/inet/tcp.c | int copy; |
copy | 1024 | net/inet/tcp.c | copy = min(sk->mss - (skb->len - hdrlen), len); |
copy | 1026 | net/inet/tcp.c | if (copy <= 0) |
copy | 1029 | net/inet/tcp.c | copy = 0; |
copy | 1032 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
copy | 1033 | net/inet/tcp.c | skb->len += copy; |
copy | 1034 | net/inet/tcp.c | from += copy; |
copy | 1035 | net/inet/tcp.c | copied += copy; |
copy | 1036 | net/inet/tcp.c | len -= copy; |
copy | 1037 | net/inet/tcp.c | sk->write_seq += copy; |
copy | 1059 | net/inet/tcp.c | copy = sk->window_seq - sk->write_seq; |
copy | 1060 | net/inet/tcp.c | if (copy <= 0 || copy < (sk->max_window >> 1) || copy > sk->mss) |
copy | 1061 | net/inet/tcp.c | copy = sk->mss; |
copy | 1062 | net/inet/tcp.c | if (copy > len) |
copy | 1063 | net/inet/tcp.c | copy = len; |
copy | 1070 | net/inet/tcp.c | if (copy < sk->mss && !(flags & MSG_OOB)) |
copy | 1090 | net/inet/tcp.c | skb = prot->wmalloc(sk, copy + prot->max_header , 0, GFP_KERNEL); |
copy | 1162 | net/inet/tcp.c | tmp = tcp_build_header((struct tcphdr *)buff, sk, len-copy); |
copy | 1175 | net/inet/tcp.c | ((struct tcphdr *)buff)->urg_ptr = ntohs(copy); |
copy | 1178 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
copy | 1180 | net/inet/tcp.c | from += copy; |
copy | 1181 | net/inet/tcp.c | copied += copy; |
copy | 1182 | net/inet/tcp.c | len -= copy; |
copy | 1183 | net/inet/tcp.c | skb->len += copy; |
copy | 1185 | net/inet/tcp.c | sk->write_seq += copy; |