Lines Matching refs:thislen
127 unsigned long thislen = len; in sbc_gxx_copy_from() local
129 thislen = WINDOW_LENGTH-(from & WINDOW_MASK); in sbc_gxx_copy_from()
133 memcpy_fromio(to, iomapadr + (from & WINDOW_MASK), thislen); in sbc_gxx_copy_from()
135 to += thislen; in sbc_gxx_copy_from()
136 from += thislen; in sbc_gxx_copy_from()
137 len -= thislen; in sbc_gxx_copy_from()
152 unsigned long thislen = len; in sbc_gxx_copy_to() local
154 thislen = WINDOW_LENGTH-(to & WINDOW_MASK); in sbc_gxx_copy_to()
158 memcpy_toio(iomapadr + (to & WINDOW_MASK), from, thislen); in sbc_gxx_copy_to()
160 to += thislen; in sbc_gxx_copy_to()
161 from += thislen; in sbc_gxx_copy_to()
162 len -= thislen; in sbc_gxx_copy_to()