| /linux/drivers/usb/storage/ |
| H A D | freecom.c | 227 unsigned int partial; in freecom_transport() local 266 FCM_STATUS_PACKET_LENGTH, &partial); in freecom_transport() 267 usb_stor_dbg(us, "foo Status result %d %u\n", result, partial); in freecom_transport() 271 US_DEBUG(pdump(us, (void *)fst, partial)); in freecom_transport() 308 FCM_STATUS_PACKET_LENGTH, &partial); in freecom_transport() 310 usb_stor_dbg(us, "bar Status result %d %u\n", result, partial); in freecom_transport() 314 US_DEBUG(pdump(us, (void *)fst, partial)); in freecom_transport() 317 if (partial != 4) in freecom_transport() 376 FCM_PACKET_LENGTH, &partial); in freecom_transport() 377 US_DEBUG(pdump(us, (void *)fst, partial)); in freecom_transport() [all …]
|
| H A D | transport.c | 257 unsigned int length, int result, unsigned int partial) in interpret_urb_result() argument 260 result, partial, length); in interpret_urb_result() 265 if (partial != length) { in interpret_urb_result() 469 unsigned int partial; in usb_stor_bulk_srb() local 472 &partial); in usb_stor_bulk_srb() 474 scsi_set_resid(srb, scsi_bufflen(srb) - partial); in usb_stor_bulk_srb() 492 unsigned int partial; in usb_stor_bulk_transfer_sg() local 499 length_left, &partial); in usb_stor_bulk_transfer_sg() 500 length_left -= partial; in usb_stor_bulk_transfer_sg() 504 length_left, &partial); in usb_stor_bulk_transfer_sg() [all …]
|
| /linux/net/smc/ |
| H A D | smc_rx.c | 161 struct partial_page *partial; in smc_rx_splice() local 174 partial = kzalloc_objs(*partial, nr_pages); in smc_rx_splice() 175 if (!partial) in smc_rx_splice() 191 partial[0].offset = src - (char *)smc->conn.rmb_desc->cpu_addr; in smc_rx_splice() 192 partial[0].len = len; in smc_rx_splice() 193 partial[0].private = (unsigned long)priv[0]; in smc_rx_splice() 204 partial[i].offset = offset; in smc_rx_splice() 205 partial[i].len = size; in smc_rx_splice() 206 partial[i].private = (unsigned long)priv[i]; in smc_rx_splice() 215 spd.partial = partial; in smc_rx_splice() [all …]
|
| /linux/lib/crypto/ |
| H A D | sha512.c | 165 size_t partial = ctx->bytecount_lo % SHA512_BLOCK_SIZE; in __sha512_update() local 170 if (partial + len >= SHA512_BLOCK_SIZE) { in __sha512_update() 173 if (partial) { in __sha512_update() 174 size_t l = SHA512_BLOCK_SIZE - partial; in __sha512_update() 176 memcpy(&ctx->buf[partial], data, l); in __sha512_update() 190 partial = 0; in __sha512_update() 193 memcpy(&ctx->buf[partial], data, len); in __sha512_update() 202 size_t partial = ctx->bytecount_lo % SHA512_BLOCK_SIZE; in __sha512_final() local 204 ctx->buf[partial++] = 0x80; in __sha512_final() 205 if (partial > SHA512_BLOCK_SIZE - 16) { in __sha512_final() [all …]
|
| H A D | sha256.c | 187 size_t partial = ctx->bytecount % SHA256_BLOCK_SIZE; in __sha256_update() local 191 if (partial + len >= SHA256_BLOCK_SIZE) { in __sha256_update() 194 if (partial) { in __sha256_update() 195 size_t l = SHA256_BLOCK_SIZE - partial; in __sha256_update() 197 memcpy(&ctx->buf[partial], data, l); in __sha256_update() 211 partial = 0; in __sha256_update() 214 memcpy(&ctx->buf[partial], data, len); in __sha256_update() 222 size_t partial = ctx->bytecount % SHA256_BLOCK_SIZE; in __sha256_final() local 224 ctx->buf[partial++] = 0x80; in __sha256_final() 225 if (partial > SHA256_BLOCK_SIZE - 8) { in __sha256_final() [all …]
|
| /linux/arch/x86/include/asm/ |
| H A D | unwind.h | 72 bool *partial) in unwind_get_entry_regs() argument 77 if (partial) { in unwind_get_entry_regs() 79 *partial = !state->full_regs; in unwind_get_entry_regs() 81 *partial = false; in unwind_get_entry_regs() 89 bool *partial) in unwind_get_entry_regs() argument
|
| /linux/tools/mm/ |
| H A D | slabinfo.c | 36 unsigned long partial, objects, slabs, objects_partial, objects_total; member 128 "-P|--partial Sort by number of partial slabs\n" in usage() 503 printf("Add partial %8lu %8lu %3lu %3lu\n", in slab_stats() 508 printf("Remove partial %8lu %8lu %3lu %3lu\n", in slab_stats() 513 printf("Cpu partial list %8lu %8lu %3lu %3lu\n", in slab_stats() 538 printf("Moved to head of partial list %7lu %3lu%%\n", in slab_stats() 540 printf("Moved to tail of partial list %7lu %3lu%%\n", in slab_stats() 579 s->slab_size, s->slabs - s->partial - s->cpu_slabs, in report() 582 page_size << s->order, s->partial, onof in report() 1358 _xtotals(char * heading,char * underline,int loss,int size,int partial) _xtotals() argument [all...] |
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-kernel-slab | 96 allocation from a partial or new slab. It can be written to 179 The deactivate_to_head file shows how many times a partial cpu 180 slab was deactivated and added to the head of its node's partial 190 The deactivate_to_tail file shows how many times a partial cpu 191 slab was deactivated and added to the tail of its node's partial 212 partial list. It can be written to clear the current count. 255 its node's partial list. It can be written to clear the current 277 using the slow path (i.e. to a full or partial slab). It can 297 remain on a node's partial list to avoid the overhead of 326 objects are on partial slabs and from which nodes they are [all …]
|
| H A D | sysfs-driver-intel-m10-bmc-sec-update | 15 Description: Read only. Returns the root entry hash for the partial 44 signing keys for the partial reconfiguration region. The
|
| /linux/tools/testing/selftests/syscall_user_dispatch/ |
| H A D | sud_benchmark.c | 97 double partial = 0; in perf_syscall() local 100 partial += one_sysinfo_step()/(CALIBRATION_STEP*factor); in perf_syscall() 101 return partial; in perf_syscall()
|
| /linux/crypto/ |
| H A D | md5.c | 28 unsigned int partial; in __crypto_md5_export() local 31 partial = ctx.bytecount % MD5_BLOCK_SIZE; in __crypto_md5_export() 32 ctx.bytecount -= partial; in __crypto_md5_export() 35 *p = partial; in __crypto_md5_export()
|
| H A D | sha1.c | 31 unsigned int partial; in __crypto_sha1_export() local 34 partial = ctx.bytecount % SHA1_BLOCK_SIZE; in __crypto_sha1_export() 35 ctx.bytecount -= partial; in __crypto_sha1_export() 38 *p = partial; in __crypto_sha1_export()
|
| H A D | sha256.c | 32 unsigned int partial; in __crypto_sha256_export() local 35 partial = ctx.bytecount % SHA256_BLOCK_SIZE; in __crypto_sha256_export() 36 ctx.bytecount -= partial; in __crypto_sha256_export() 39 *p = partial; in __crypto_sha256_export()
|
| H A D | sha512.c | 32 unsigned int partial; in __crypto_sha512_export() local 35 partial = ctx.bytecount_lo % SHA512_BLOCK_SIZE; in __crypto_sha512_export() 36 ctx.bytecount_lo -= partial; in __crypto_sha512_export() 39 *p = partial; in __crypto_sha512_export()
|
| /linux/drivers/iommu/ |
| H A D | io-pgfault.c | 75 list_add(&iopf->list, &fault_param->partial); in report_partial_fault() 105 list_for_each_entry_safe(iopf, next, &iopf_param->partial, list) { in iopf_group_alloc() 366 list_for_each_entry_safe(iopf, next, &iopf_param->partial, in iopf_queue_discard_partial() 411 INIT_LIST_HEAD(&fault_param->partial); in iopf_queue_add_device() 468 list_for_each_entry_safe(partial_iopf, next, &fault_param->partial, list) in iopf_queue_remove_device()
|
| /linux/drivers/comedi/drivers/ni_routing/tools/ |
| H A D | Makefile | 69 clean-partial : 73 clean : clean-partial
|
| /linux/fs/ext4/ |
| H A D | extents.c | 2480 struct partial_cluster *partial, in ext4_remove_blocks() argument 2511 trace_ext4_remove_blocks(inode, ex, from, to, partial); in ext4_remove_blocks() 2519 if (partial->state != initial && in ext4_remove_blocks() 2520 partial->pclu != EXT4_B2C(sbi, last_pblk)) { in ext4_remove_blocks() 2521 if (partial->state == tofree) { in ext4_remove_blocks() 2523 if (ext4_is_pending(inode, partial->lblk)) in ext4_remove_blocks() 2526 EXT4_C2B(sbi, partial->pclu), in ext4_remove_blocks() 2529 ext4_rereserve_cluster(inode, partial->lblk); in ext4_remove_blocks() 2531 partial->state = initial; in ext4_remove_blocks() 2548 (partial->state != nofree)) { in ext4_remove_blocks() [all …]
|
| /linux/include/net/ |
| H A D | gso.h | 69 __wsum partial = SKB_GSO_CB(skb)->csum; in gso_make_checksum() local 74 return csum_fold(csum_partial(csum_start, plen, partial)); in gso_make_checksum()
|
| /linux/lib/tests/ |
| H A D | fortify_kunit.c | 711 int i, partial; in fortify_test_strncat() local 714 partial = sizeof(src) / 2 - 1; in fortify_test_strncat() 715 for (i = 0; i < partial; i++) in fortify_test_strncat() 726 KUNIT_ASSERT_TRUE(test, strncat(pad.buf, src, partial) == pad.buf); in fortify_test_strncat() 730 KUNIT_ASSERT_TRUE(test, strncat(pad.buf, src, partial) == pad.buf); in fortify_test_strncat() 784 int i, partial; in fortify_test_strlcat() local 790 partial = sizeof(src) / 2 - 1; in fortify_test_strlcat() 791 for (i = 0; i < partial; i++) in fortify_test_strlcat() 802 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, src, len), partial); in fortify_test_strlcat() 806 KUNIT_ASSERT_EQ(test, strlcat(pad.buf, src, len), partial * 2); in fortify_test_strlcat() [all …]
|
| /linux/Documentation/ABI/stable/ |
| H A D | sysfs-driver-ib_srp | 43 * allow_ext_sg, whether ib_srp is allowed to include a partial 45 list. If a partial memory descriptor list has been included 51 implementations support partial memory descriptor lists the 56 only safe with partial memory descriptor list support enabled 90 Description: Whether ib_srp is allowed to include a partial memory
|
| /linux/net/netfilter/ |
| H A D | xt_dccp.c | 56 goto partial; in dccp_find_option() 74 partial: in dccp_find_option()
|
| /linux/fs/ocfs2/ |
| H A D | move_extents.c | 37 int partial; member 204 int ret, credits = 0, extra_blocks = 0, partial = context->partial; in ocfs2_defrag_extent() local 300 if (!partial) { in ocfs2_defrag_extent() 316 if (partial && (new_len != *len)) in ocfs2_defrag_extent() 1060 context->partial = 1; in ocfs2_ioctl_move_extents()
|
| /linux/Documentation/driver-api/fpga/ |
| H A D | intro.rst | 39 bridge in FPGA fabric that surrounds a partial reconfiguration region 51 FPGA in full reconfiguration or to a partial reconfiguration region.
|
| /linux/Documentation/admin-guide/perf/ |
| H A D | fujitsu_uncore_pmu.rst | 56 full write, partial write, write cancel). 61 This event counts the number of partial write requests to MAC. 67 This event counts the number of partial write requests from MAC to memory.
|
| /linux/net/xfrm/ |
| H A D | espintcp.c | 261 struct espintcp_msg *emsg = &ctx->partial; in espintcp_push_msgs() 290 struct espintcp_msg *emsg = &ctx->partial; in espintcp_push_skb() 325 struct espintcp_msg *emsg = &ctx->partial; in espintcp_sendmsg() 529 struct espintcp_msg *emsg = &ctx->partial; in espintcp_close()
|