Home
last modified time | relevance | path

Searched full:partial (Results 1 – 25 of 945) sorted by relevance

12345678910>>...38

/linux/Documentation/devicetree/bindings/fpga/
H A Dfpga-region.yaml24 FPGA Regions represent FPGA's and partial reconfiguration regions of FPGA's in
39 Partial Reconfiguration (PR)
44 Partial Reconfiguration Region (PRR)
56 * Also called a "partial bit stream"
69 * During Partial Reconfiguration of a specific region, that region's bridge
84 * A base image may set up a set of partial reconfiguration regions that may
153 For partial reconfiguration (PR), each PR region will have an FPGA Region.
189 * Partial reconfiguration with bridges in the FPGA
193 region while the buses are enabled for other sections. Before any partial
202 constraints required to make partial reconfiguration work[1] [2] [3], but a few
[all …]
/linux/Documentation/ABI/testing/
H A Dsysfs-kernel-slab96 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 …]
/linux/lib/crypto/
H A Dsha512.c165 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 Dsha256.c187 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/tools/mm/
H A Dslabinfo.c36 unsigned long partial, objects, slabs, objects_partial, objects_total; member
128 "-P|--partial Sort by number of partial slabs\n" in usage()
152 "\nSorting options (--Loss, --Size, --Partial) are mutually exclusive\n" in usage()
419 printf("%-21s ", "Partial slabs"); in slab_numa()
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 lis in slab_stats()
1358 _xtotals(char * heading,char * underline,int loss,int size,int partial) _xtotals() argument
[all...]
/linux/arch/x86/include/asm/
H A Dunwind.h69 * If 'partial' returns true, only the iret frame registers are valid.
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/net/smc/
H A Dsmc_rx.c161 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/Documentation/driver-api/md/
H A Draid5-ppl.rst2 Partial Parity Log
5 Partial Parity Log (PPL) is a feature available for RAID5 arrays. The issue
15 Partial parity for a write operation is the XOR of stripe data chunks not
17 write hole. XORing partial parity with the modified chunks produces parity for
26 When handling a write request PPL writes partial parity before new data and
/linux/net/sctp/
H A Dulpqueue.c122 /* Clear the partial delivery mode for this socket. Note: This
123 * assumes that no association is currently in partial delivery mode.
207 /* If we are in partial delivery mode, post to the lobby until in sctp_ulpq_tail_event()
208 * partial delivery is cleared, unless, of course _this_ is in sctp_ulpq_tail_event()
209 * the association the cause of the partial delivery. in sctp_ulpq_tail_event()
216 /* If the association is in partial delivery, we in sctp_ulpq_tail_event()
244 /* Did we just complete partial delivery and need to get in sctp_ulpq_tail_event()
421 * There is a potential to do partial delivery if user sets in sctp_ulpq_retrieve_reassembled()
471 /* Make sure we can enter partial deliver. in sctp_ulpq_retrieve_reassembled()
472 * We can trigger partial delivery only if framgent in sctp_ulpq_retrieve_reassembled()
[all …]
/linux/drivers/usb/storage/
H A Dfreecom.c227 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 …]
/linux/arch/sparc/include/uapi/asm/
H A Dasi.h254 #define ASI_PST8_P 0xc0 /* Primary, 8 8-bit, partial */
255 #define ASI_PST8_S 0xc1 /* Secondary, 8 8-bit, partial */
256 #define ASI_PST16_P 0xc2 /* Primary, 4 16-bit, partial */
257 #define ASI_PST16_S 0xc3 /* Secondary, 4 16-bit, partial */
258 #define ASI_PST32_P 0xc4 /* Primary, 2 32-bit, partial */
259 #define ASI_PST32_S 0xc5 /* Secondary, 2 32-bit, partial */
260 #define ASI_PST8_PL 0xc8 /* Primary, 8 8-bit, partial, L */
261 #define ASI_PST8_SL 0xc9 /* Secondary, 8 8-bit, partial, L */
262 #define ASI_PST16_PL 0xca /* Primary, 4 16-bit, partial, L */
263 #define ASI_PST16_SL 0xcb /* Secondary, 4 16-bit, partial, L */
[all …]
/linux/drivers/fpga/
H A Daltera-pr-ip-core.c3 * Driver for Altera Partial Reconfiguration IP Core
85 dev_err(&mgr->dev, "%s Partial Reconfiguration flag not set\n", in alt_pr_fpga_write_init()
94 "%s Partial Reconfiguration already started\n", in alt_pr_fpga_write_init()
156 "successful partial reconfiguration\n"); in alt_pr_fpga_write_complete()
200 MODULE_DESCRIPTION("Altera Partial Reconfiguration IP Core");
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_strp.c228 /* Test strparser with partial read */
250 /* 1.1 send partial head, 1 byte header left */ in test_sockmap_strp_partial_read()
254 if (!ASSERT_EQ(-1, recvd, "partial head sent, expected no data")) in test_sockmap_strp_partial_read()
263 /* 2.1 send partial head, 1 byte header left */ in test_sockmap_strp_partial_read()
267 /* 2.2 send remaining head and partial body, 1 byte body left */ in test_sockmap_strp_partial_read()
271 if (!ASSERT_EQ(-1, recvd, "partial body sent, expected no data")) in test_sockmap_strp_partial_read()
413 /* partial read */ in test_sockmap_strp_verdict()
420 if (!ASSERT_EQ(recvd, STRP_PKT_FULL_LEN, "partial recv_timeout(c1)") || in test_sockmap_strp_verdict()
422 "partial received data does not match the sent data")) in test_sockmap_strp_verdict()
448 if (test__start_subtest("sockmap strp tcp partial read")) in test_sockmap_strp()
/linux/arch/alpha/lib/
H A Dstxcpy.S68 /* Take care of the final (partial) word store.
81 /* We're doing a partial word store and so need to combine
108 /* We are co-aligned; take care of a partial first word. */
191 If it resides in the lower half, we have one (probably partial)
193 have one full and one partial word left to write out.
200 or t0, t1, t1 # e1 : first (partial) source word complete
211 /* Take care of a final (probably partial) result word.
266 /* At this point we've found a zero in the first partial word of
H A Dstxncpy.S78 /* Take care of the final (partial) word store. At this point
94 /* We're doing a partial word store and so need to combine
133 /* We are co-aligned; take care of a partial first word. */
175 cmpbge zero, t2, t8 # e0 : find nulls in second partial
222 If it resides in the lower half, we have one (probably partial)
224 have one full and one partial word left to write out.
231 or t0, t1, t0 # e0 : first (partial) source word complete
247 /* Take care of a final (probably partial) result word.
326 /* At this point we've found a zero in the first partial word of
H A Dev6-stxcpy.S84 /* Take care of the final (partial) word store.
96 /* We're doing a partial word store and so need to combine
128 /* We are co-aligned; take care of a partial first word. */
219 If it resides in the lower half, we have one (probably partial)
221 have one full and one partial word left to write out.
228 or t0, t1, t1 # E : first (partial) source word complete (stall)
238 /* Take care of a final (probably partial) result word.
296 /* At this point we've found a zero in the first partial word of
H A Dev6-stxncpy.S105 /* Take care of the final (partial) word store. At this point
120 /* We're doing a partial word store and so need to combine
166 /* We are co-aligned; take care of a partial first word. */
217 cmpbge zero, t2, t8 # E : find nulls in second partial
266 If it resides in the lower half, we have one (probably partial)
268 have one full and one partial word left to write out.
275 or t0, t1, t0 # E : first (partial) source word complete
291 /* Take care of a final (probably partial) result word.
375 /* At this point we've found a zero in the first partial word of
/linux/drivers/iommu/
H A Dio-pgfault.c75 list_add(&iopf->list, &fault_param->partial); in report_partial_fault()
103 /* See if we have partial faults for this group */ in iopf_group_alloc()
105 list_for_each_entry_safe(iopf, next, &iopf_param->partial, list) { in iopf_group_alloc()
250 * leaving, otherwise partial faults will be stuck. in iommu_report_device_fault()
346 * iopf_queue_discard_partial - Remove all pending partial fault
347 * @queue: the queue whose partial faults need to be discarded
350 * lost and the IOMMU driver calls this to discard all partial faults. The
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/tools/testing/selftests/drivers/net/hw/
H A Dtso.py162 ethtool(f"-K {cfg.ifname} tx-gso-partial off")
165 ethtool(f"-K {cfg.ifname} tx-gso-partial on")
200 ksft_pr("partial gso feature detection may be impacted")
202 # Check which features are supported via GSO partial
204 if 'tx-gso-partial' in cfg.hw_features:
205 ethtool(f"-K {cfg.ifname} tx-gso-partial off")
212 ethtool(f"-K {cfg.ifname} tx-gso-partial on")
/linux/fs/hfsplus/
H A Dbitmap.c51 /* scan the first partial u32 for zero bits */ in hfsplus_block_allocate()
103 /* do any partial u32 at the start */ in hfsplus_block_allocate()
143 /* do any partial u32 at end */ in hfsplus_block_allocate()
193 /* do any partial u32 at the start */ in hfsplus_block_free()
227 /* do any partial u32 at end */ in hfsplus_block_free()
/linux/include/net/sctp/
H A Dulpqueue.h51 /* Perform partial delivery. */
54 /* Abort the partial delivery. */
57 /* Clear the partial data delivery condition on this socket. */
/linux/Documentation/ABI/stable/
H A Dsysfs-driver-ib_srp43 * 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/fs/hfs/
H A Dbitmap.c43 /* scan the first partial u32 for zero bits */ in hfs_find_set_zero_bits()
73 /* do any partial u32 at the start */ in hfs_find_set_zero_bits()
98 /* do any partial u32 at end */ in hfs_find_set_zero_bits()
213 /* do any partial u32 at the start */ in hfs_clear_vbm_bits()
232 /* do any partial u32 at end */ in hfs_clear_vbm_bits()
/linux/Documentation/i2c/
H A Dslave-testunit-backend.rst40 "partial" commands, all registers must be written to start a testcase, i.e. you
135 - leave out, partial command!
137 Partial command. This test will respond to a block process call as defined by
165 - leave out, partial command!
167 Partial command. After sending this command, the testunit will reply to a read
/linux/arch/s390/include/asm/
H A Dcpacf.h419 " brc 1,0b" /* handle partial completion */ in cpacf_km()
451 " brc 1,0b" /* handle partial completion */ in cpacf_kmc()
479 " brc 1,0b" /* handle partial completion */ in cpacf_kimd()
504 " brc 1,0b" /* handle partial completion */ in cpacf_klmd()
532 " brc 1,0b\n" /* handle partial completion */ in _cpacf_kmac()
583 " brc 1,0b" /* handle partial completion */ in cpacf_kmctr()
617 " brc 1,0b" /* handle partial completion */ in cpacf_prno()
643 " brc 1,0b" /* handle partial completion */ in cpacf_trng()
661 * Condition code 3 (partial completion) is handled within the asm code
672 " brc 1,0b\n" /* handle partial completion */ in cpacf_pcc()
[all …]

12345678910>>...38