sg_remaining      563 drivers/staging/wusbcore/host/whci/qset.c 		size_t sg_remaining;
sg_remaining      570 drivers/staging/wusbcore/host/whci/qset.c 		sg_remaining = min_t(size_t, remaining, sg->length);
sg_remaining      573 drivers/staging/wusbcore/host/whci/qset.c 		while (sg_remaining) {
sg_remaining      587 drivers/staging/wusbcore/host/whci/qset.c 			len = min(sg_remaining, max_std_len - std->len);
sg_remaining      597 drivers/staging/wusbcore/host/whci/qset.c 			sg_remaining -= len;
sg_remaining      675 drivers/target/target_core_user.c 		int sg_remaining = sg->length;
sg_remaining      677 drivers/target/target_core_user.c 		while (sg_remaining > 0) {
sg_remaining      699 drivers/target/target_core_user.c 			copy_bytes = min_t(size_t, sg_remaining,
sg_remaining      723 drivers/target/target_core_user.c 				       from + sg->length - sg_remaining,
sg_remaining      728 drivers/target/target_core_user.c 			sg_remaining -= copy_bytes;
sg_remaining      770 drivers/target/target_core_user.c 		int sg_remaining = sg->length;
sg_remaining      772 drivers/target/target_core_user.c 		while (sg_remaining > 0 && read_len > 0) {
sg_remaining      782 drivers/target/target_core_user.c 			copy_bytes = min_t(size_t, sg_remaining,
sg_remaining      788 drivers/target/target_core_user.c 			memcpy(to + sg->length - sg_remaining, from + offset,
sg_remaining      791 drivers/target/target_core_user.c 			sg_remaining -= copy_bytes;