Lines Matching refs:thislen
115 unsigned long thislen = len; in sbc_gxx_copy_from() local
117 thislen = WINDOW_LENGTH-(from & WINDOW_MASK); in sbc_gxx_copy_from()
121 memcpy_fromio(to, iomapadr + (from & WINDOW_MASK), thislen); in sbc_gxx_copy_from()
123 to += thislen; in sbc_gxx_copy_from()
124 from += thislen; in sbc_gxx_copy_from()
125 len -= thislen; in sbc_gxx_copy_from()
140 unsigned long thislen = len; in sbc_gxx_copy_to() local
142 thislen = WINDOW_LENGTH-(to & WINDOW_MASK); in sbc_gxx_copy_to()
146 memcpy_toio(iomapadr + (to & WINDOW_MASK), from, thislen); in sbc_gxx_copy_to()
148 to += thislen; in sbc_gxx_copy_to()
149 from += thislen; in sbc_gxx_copy_to()
150 len -= thislen; in sbc_gxx_copy_to()