| /linux/drivers/mtd/maps/ |
| H A D | sbc_gxx.c | 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() [all …]
|
| /linux/drivers/net/ethernet/i825xx/ |
| H A D | ether1.c | 128 unsigned int page, thislen, offset; in ether1_writebuffer() local 136 thislen = 4096 - offset; in ether1_writebuffer() 138 thislen = length; in ether1_writebuffer() 144 length -= thislen; in ether1_writebuffer() 177 : "r" (addr), "r" (thislen), "1" (data)); in ether1_writebuffer() 181 thislen = length; in ether1_writebuffer() 182 if (thislen > 4096) in ether1_writebuffer() 183 thislen = 4096; in ether1_writebuffer() 185 } while (thislen); in ether1_writebuffer() 191 unsigned int page, thislen, offset; in ether1_readbuffer() local [all …]
|
| /linux/drivers/mtd/chips/ |
| H A D | cfi_cmdset_0020.c | 397 unsigned long thislen; in cfi_staa_read() local 403 thislen = (1<<cfi->chipshift) - ofs; in cfi_staa_read() 405 thislen = len; in cfi_staa_read() 407 ret = do_read_onechip(map, &cfi->chips[chipnum], ofs, thislen, buf); in cfi_staa_read() 411 *retlen += thislen; in cfi_staa_read() 412 len -= thislen; in cfi_staa_read() 413 buf += thislen; in cfi_staa_read() 668 size_t totlen = 0, thislen; in cfi_staa_writev() local 695 ret = mtd_write(mtd, to, ECCBUF_SIZE, &thislen, in cfi_staa_writev() 697 totlen += thislen; in cfi_staa_writev() [all …]
|
| H A D | cfi_cmdset_0001.c | 1423 unsigned long thislen; in cfi_intelext_point() local 1435 thislen = (1<<cfi->chipshift) - ofs; in cfi_intelext_point() 1437 thislen = len; in cfi_intelext_point() 1439 ret = do_point_onechip(map, &cfi->chips[chipnum], ofs, thislen); in cfi_intelext_point() 1443 *retlen += thislen; in cfi_intelext_point() 1444 len -= thislen; in cfi_intelext_point() 1467 unsigned long thislen; in cfi_intelext_unpoint() local 1475 thislen = (1<<cfi->chipshift) - ofs; in cfi_intelext_unpoint() 1477 thislen = len; in cfi_intelext_unpoint() 1492 len -= thislen; in cfi_intelext_unpoint() [all …]
|
| H A D | cfi_cmdset_0002.c | 1248 unsigned long thislen; in cfi_amdstd_read() local 1254 thislen = (1<<cfi->chipshift) - ofs; in cfi_amdstd_read() 1256 thislen = len; in cfi_amdstd_read() 1258 ret = do_read_onechip(map, &cfi->chips[chipnum], ofs, thislen, buf); in cfi_amdstd_read() 1262 *retlen += thislen; in cfi_amdstd_read() 1263 len -= thislen; in cfi_amdstd_read() 1264 buf += thislen; in cfi_amdstd_read() 1357 unsigned long thislen; in cfi_amdstd_secsi_read() local 1363 thislen = (1<<3) - ofs; in cfi_amdstd_secsi_read() 1365 thislen = len; in cfi_amdstd_secsi_read() [all …]
|
| /linux/net/sunrpc/auth_gss/ |
| H A D | gss_krb5_crypto.c | 244 int thislen = desc->fraglen + sg->length; in encryptor() local 268 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in encryptor() 269 thislen -= fraglen; in encryptor() 271 if (thislen == 0) in encryptor() 278 thislen, desc->iv); in encryptor() 313 int thislen = desc->fraglen + sg->length; in decryptor() local 326 fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1); in decryptor() 327 thislen -= fraglen; in decryptor() 329 if (thislen == 0) in decryptor() 335 thislen, desc->iv); in decryptor()
|
| /linux/tools/testing/selftests/filesystems/mount-notify/ |
| H A D | mount-notify_test.c | 122 unsigned int thislen; in expect_notify() local 148 thislen = meta->event_len; in expect_notify() 149 self->rem -= thislen; in expect_notify() 150 self->next += thislen; in expect_notify() 153 thislen -= sizeof(*meta); in expect_notify() 155 mnt = ((void *) meta) + meta->event_len - thislen; in expect_notify() 157 ASSERT_EQ(thislen, sizeof(*mnt)); in expect_notify()
|
| H A D | mount-notify_test_ns.c | 149 unsigned int thislen; in expect_notify() local 175 thislen = meta->event_len; in expect_notify() 176 self->rem -= thislen; in expect_notify() 177 self->next += thislen; in expect_notify() 180 thislen -= sizeof(*meta); in expect_notify() 182 mnt = ((void *) meta) + meta->event_len - thislen; in expect_notify() 184 ASSERT_EQ(thislen, sizeof(*mnt)); in expect_notify()
|
| /linux/net/sunrpc/ |
| H A D | xdr.c | 1114 size_t thislen; in xdr_reserve_space_vec() local 1128 thislen = xdr->buf->page_len % PAGE_SIZE; in xdr_reserve_space_vec() 1129 thislen = min_t(size_t, nbytes, PAGE_SIZE - thislen); in xdr_reserve_space_vec() 1131 p = xdr_reserve_space(xdr, thislen); in xdr_reserve_space_vec() 1135 nbytes -= thislen; in xdr_reserve_space_vec() 2157 unsigned int page_len, thislen, page_offset; in xdr_process_buf() local 2165 thislen = buf->head[0].iov_len - offset; in xdr_process_buf() 2166 if (thislen > len) in xdr_process_buf() 2167 thislen = len; in xdr_process_buf() 2168 sg_set_buf(sg, buf->head[0].iov_base + offset, thislen); in xdr_process_buf() [all …]
|
| /linux/drivers/mtd/ |
| H A D | inftlcore.c | 406 u16 ChainLength = 0, thislen; in INFTL_makefreeblock() local 414 thislen = 0; in INFTL_makefreeblock() 417 thislen++; in INFTL_makefreeblock() 419 if (thislen > 0xff00) { in INFTL_makefreeblock() 427 thislen = 0; in INFTL_makefreeblock() 432 if (thislen > ChainLength) { in INFTL_makefreeblock() 433 ChainLength = thislen; in INFTL_makefreeblock()
|
| /linux/drivers/scsi/esas2r/ |
| H A D | esas2r_flash.c | 284 u32 thislen; in fix_efi() local 291 thislen = (u32)le16_to_cpu(bh->image_length) * 512; in fix_efi() 293 if (thislen > len) in fix_efi() 296 len -= thislen; in fix_efi() 297 offset += thislen; in fix_efi() 1167 u32 thislen; in esas2r_read_image_type() local 1170 thislen = (u32)le16_to_cpu(bh->image_length) * 512; in esas2r_read_image_type() 1171 if (thislen == 0 in esas2r_read_image_type() 1172 || thislen + offset > len in esas2r_read_image_type() 1176 offset += thislen; in esas2r_read_image_type()
|
| /linux/drivers/net/ethernet/intel/ixgbe/ |
| H A D | ixgbe_fcoe.c | 149 unsigned int thislen = 0; in ixgbe_fcoe_ddp_setup() local 218 thislen = min((bufflen - thisoff), len); in ixgbe_fcoe_ddp_setup() 230 if (((i != (dmacount - 1)) || (thislen != len)) in ixgbe_fcoe_ddp_setup() 231 && ((thislen + thisoff) != bufflen)) in ixgbe_fcoe_ddp_setup() 238 len -= thislen; in ixgbe_fcoe_ddp_setup() 239 addr += thislen; in ixgbe_fcoe_ddp_setup() 244 lastsize = thisoff + thislen; in ixgbe_fcoe_ddp_setup()
|
| /linux/fs/qnx6/ |
| H A D | dir.c | 185 int thislen; in qnx6_long_match() local 191 thislen = fs16_to_cpu(sbi, lf->lf_size); in qnx6_long_match() 192 if (len != thislen) { in qnx6_long_match()
|
| /linux/drivers/usb/atm/ |
| H A D | speedtch.c | 269 int thislen = min_t(int, PAGE_SIZE, fw1->size - offset); in speedtch_upload_firmware() local 270 memcpy(buffer, fw1->data + offset, thislen); in speedtch_upload_firmware() 273 buffer, thislen, &actual_length, DATA_TIMEOUT); in speedtch_upload_firmware() 296 int thislen = min_t(int, PAGE_SIZE, fw2->size - offset); in speedtch_upload_firmware() local 297 memcpy(buffer, fw2->data + offset, thislen); in speedtch_upload_firmware() 300 buffer, thislen, &actual_length, DATA_TIMEOUT); in speedtch_upload_firmware()
|
| /linux/fs/overlayfs/ |
| H A D | dir.c | 1014 int thislen; in ovl_get_redirect() local 1019 thislen = strlen(name); in ovl_get_redirect() 1022 thislen = d->d_name.len; in ovl_get_redirect() 1026 if (thislen + (name[0] != '/') > buflen) { in ovl_get_redirect() 1032 buflen -= thislen; in ovl_get_redirect() 1033 memcpy(&buf[buflen], name, thislen); in ovl_get_redirect()
|
| /linux/fs/fuse/ |
| H A D | virtio_fs.c | 767 unsigned int len, i, thislen; in virtio_fs_request_complete() local 781 thislen = ap->descs[i].length; in virtio_fs_request_complete() 782 if (len < thislen) { in virtio_fs_request_complete() 785 folio_zero_segment(folio, len, thislen); in virtio_fs_request_complete() 788 len -= thislen; in virtio_fs_request_complete()
|