Lines Matching defs:len
112 static void sbc_gxx_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
114 while(len) {
115 unsigned long thislen = len;
116 if (len > (WINDOW_LENGTH - (from & WINDOW_MASK)))
125 len -= thislen;
137 static void sbc_gxx_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
139 while(len) {
140 unsigned long thislen = len;
141 if (len > (WINDOW_LENGTH - (to & WINDOW_MASK)))
150 len -= thislen;