Searched refs:partial (Results 1 - 25 of 137) sorted by path

123456

/linux-master/arch/alpha/lib/
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
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-memchr.S140 # last quad may or may not be partial).
H A Dev6-memset.S81 ldq_u $4,0($16) # L : Fetch first partial
100 * one partial quad to write.
259 ldq_u $4,0($16) # L : Fetch first partial
278 * one partial quad to write.
447 ldq_u $4,0($16) # L : Fetch first partial
466 * one partial quad to write.
H A Dmemchr.S121 # last quad may or may not be partial).
/linux-master/arch/m68k/fpsp040/
H A Ddecbin.S153 mulul #TEN,%d1 |mul partial product by one digit place
H A Dsetox.S473 movew 4(%a0),%d0 | ...expo. and partial sig. of |X|
640 movew 4(%a0),%d0 | ...expo. and partial sig. of |X|
/linux-master/arch/m68k/ifpsp060/src/
H A Dfplsp.S7113 mov.w 4(%a0),%d1 # expo. and partial sig. of |X|
7278 mov.w 4(%a0),%d1 # expo. and partial sig. of |X|
/linux-master/arch/sparc/lib/
H A DM7memcpy.S204 ! %o5 has the bytes to be written in partial store.
/linux-master/drivers/usb/storage/
H A Dinitializers.c56 unsigned int partial; local
70 US_BULK_CB_WRAP_LEN, &partial);
76 US_BULK_CS_WRAP_LEN, &partial);
/linux-master/include/crypto/
H A Dsha3.h25 unsigned int partial; member in struct:sha3_state
/linux-master/include/linux/
H A Dshdma-base.h50 size_t partial; member in struct:shdma_desc
/linux-master/net/netfilter/
H A Dxt_dccp.c56 goto partial;
74 partial:
/linux-master/
H A DMakefile835 # partial inlining inlines only parts of functions
836 KBUILD_CFLAGS += -fno-reorder-blocks -fno-ipa-cp-clone -fno-partial-inlining
/linux-master/arch/arm/crypto/
H A Daes-ce-core.S575 vld1.8 {q1}, [r1] @ load final partial block
663 vld1.8 {q1}, [r1] @ load final partial block
H A Dghash-ce-glue.c115 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE; local
119 if ((partial + len) >= GHASH_BLOCK_SIZE) {
123 if (partial) {
124 int p = GHASH_BLOCK_SIZE - partial;
126 memcpy(ctx->buf + partial, src, p);
135 partial ? ctx->buf : NULL);
137 partial = 0;
140 memcpy(ctx->buf + partial, src, len);
147 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE; local
149 if (partial) {
[all...]
/linux-master/arch/arm64/crypto/
H A Dghash-ce-glue.c122 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE; local
126 if ((partial + len) >= GHASH_BLOCK_SIZE) {
130 if (partial) {
131 int p = GHASH_BLOCK_SIZE - partial;
133 memcpy(ctx->buf + partial, src, p);
145 partial ? ctx->buf : NULL,
150 partial = 0;
154 memcpy(ctx->buf + partial, src, len);
161 unsigned int partial = ctx->count % GHASH_BLOCK_SIZE; local
163 if (partial) {
[all...]
H A Dsha3-ce-glue.c43 if ((sctx->partial + len) >= sctx->rsiz) {
46 if (sctx->partial) {
47 int p = sctx->rsiz - sctx->partial;
49 memcpy(sctx->buf + sctx->partial, data, p);
56 sctx->partial = 0;
75 memcpy(sctx->buf + sctx->partial, data, len);
76 sctx->partial += len;
91 sctx->buf[sctx->partial++] = 0x06;
92 memset(sctx->buf + sctx->partial, 0, sctx->rsiz - sctx->partial);
[all...]
/linux-master/arch/mips/cavium-octeon/crypto/
H A Docteon-sha1.c78 unsigned int partial; local
82 partial = sctx->count % SHA1_BLOCK_SIZE;
87 if ((partial + len) >= SHA1_BLOCK_SIZE) {
88 if (partial) {
89 done = -partial;
90 memcpy(sctx->buffer + partial, data,
101 partial = 0;
103 memcpy(sctx->buffer + partial, src, len - done);
H A Docteon-sha256.c70 unsigned int partial; local
74 partial = sctx->count % SHA256_BLOCK_SIZE;
79 if ((partial + len) >= SHA256_BLOCK_SIZE) {
80 if (partial) {
81 done = -partial;
82 memcpy(sctx->buf + partial, data,
93 partial = 0;
95 memcpy(sctx->buf + partial, src, len - done);
/linux-master/arch/mips/kernel/
H A Dentry.S97 restore_partial: # restore partial frame
/linux-master/arch/mips/lib/
H A Dcsum_partial.S97 * a2: partial checksum
301 /* Add the passed partial csum. */
669 move t2, zero # partial word
/linux-master/arch/powerpc/crypto/
H A Daes-gcm-p10.S637 # check partial block
888 std 15, 56(7) # clear partial?
927 # check partial block
929 ld 15, 56(7) # partial?
943 # create partial block mask
955 lxvb16x 16, 15, 10 # load partial block mask
965 std 12, 56(7) # update partial?
986 lxvb16x \_mask, 0, 10 # load partial block mask
990 # Handle multiple partial blocks for encrypt and decrypt
1029 # store partial bloc
[all...]

Completed in 440 milliseconds

123456