mleft             990 dev/usb/ueagle.c 	int n, cellleft, mleft;
mleft            1003 dev/usb/ueagle.c 		mleft = m->m_len;
mleft            1005 dev/usb/ueagle.c 		crc = ueagle_crc_update(crc, src, mleft);
mleft            1008 dev/usb/ueagle.c 			n = min(mleft, cellleft);
mleft            1014 dev/usb/ueagle.c 			mleft -= n;
mleft            1017 dev/usb/ueagle.c 		while (mleft >= ATM_CELL_PAYLOAD_SIZE) {
mleft            1023 dev/usb/ueagle.c 			mleft -= ATM_CELL_PAYLOAD_SIZE;
mleft            1027 dev/usb/ueagle.c 		if (mleft != 0) {
mleft            1030 dev/usb/ueagle.c 			memcpy(dst, src, mleft);
mleft            1031 dev/usb/ueagle.c 			dst += mleft;
mleft            1032 dev/usb/ueagle.c 			cellleft = ATM_CELL_PAYLOAD_SIZE - mleft;