Searched defs:out (Results 1 - 25 of 62) sorted by relevance

123

/arch/sparc/lib/
H A Dclear_page.S94 brz,pn %o4, out
101 out: retl label
/arch/arm/mach-omap1/
H A Dsram.S54 beq out @ nope
58 out: label
/arch/mn10300/kernel/
H A Dprofile-low.S39 bne out
44 beq out
62 out: label
/arch/tile/lib/
H A Dmemmove.c32 uint8_t *out; local
38 out = (uint8_t *)dest + n - 1;
43 out = (uint8_t *)dest;
52 *out = x;
53 out += stride;
58 *out = x;
/arch/arm64/crypto/
H A Daes-ce-cipher.c40 struct aes_block *out = (struct aes_block *)dst; local
69 " st1 {v0.16b}, %[out] ;"
71 : [out] "=Q"(*out),
85 struct aes_block *out = (struct aes_block *)dst; local
114 " st1 {v0.16b}, %[out] ;"
116 : [out] "=Q"(*out),
H A Dsha1-ce-glue.c71 static int sha1_final(struct shash_desc *desc, u8 *out) argument
77 __be32 *dst = (__be32 *)out;
94 unsigned int len, u8 *out)
97 __be32 *dst = (__be32 *)out;
103 return sha1_final(desc, out);
125 static int sha1_export(struct shash_desc *desc, void *out) argument
128 struct sha1_state *dst = out;
93 sha1_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
/arch/m68k/include/asm/
H A Ddsp56k.h23 * writing the bits stored in `out' on HF0 and HF1.
26 int out; /* Bit field like above. */ member in struct:dsp56k_host_flags
/arch/s390/crypto/
H A Dsha1_s390.c49 static int sha1_export(struct shash_desc *desc, void *out) argument
52 struct sha1_state *octx = out;
H A Dsha256_s390.c42 static int sha256_export(struct shash_desc *desc, void *out) argument
45 struct sha256_state *octx = out;
129 goto out;
133 out:
H A Dsha512_s390.c43 static int sha512_export(struct shash_desc *desc, void *out) argument
46 struct sha512_state *octx = out;
138 goto out;
141 out:
H A Dsha_common.c63 int s390_sha_final(struct shash_desc *desc, u8 *out) argument
96 /* copy digest to out */
97 memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
/arch/arc/include/asm/
H A Dentry.h233 .macro GET_TSK_STACK_BASE tsk, out
236 ld \out, [\tsk, TASK_THREAD_INFO] variable
239 add2 \out, \out, (THREAD_SIZE)/4 variable
/arch/x86/crypto/
H A Dcrct10dif-pclmul_glue.c71 static int chksum_final(struct shash_desc *desc, u8 *out) argument
75 *(__u16 *)out = ctx->crc;
80 u8 *out)
84 *(__u16 *)out = crc_t10dif_pcl(*crcp, data, len);
87 *(__u16 *)out = crc_t10dif_generic(*crcp, data, len);
92 unsigned int len, u8 *out)
96 return __chksum_finup(&ctx->crc, data, len, out);
100 unsigned int length, u8 *out)
104 return __chksum_finup(&ctx->crc, data, length, out);
79 __chksum_finup(__u16 *crcp, const u8 *data, unsigned int len, u8 *out) argument
91 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
99 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
/arch/x86/mm/
H A Dpat_internal.h33 extern int rbt_memtype_copy_nth_element(struct memtype *out, loff_t pos);
42 static inline int rbt_memtype_copy_nth_element(struct memtype *out, loff_t pos) argument
/arch/x86/syscalls/
H A DMakefile0 out := $(obj)/../include/generated/asm
5 _dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \
28 $(out)/unistd_32_ia32.h: $(syscall32) $(syshdr)
42 $(out)/unistd_64_x32.h: $(syscall64) $(syshdr)
45 $(out)/syscalls_32.h: $(syscall32) $(systbl)
47 $(out)/syscalls_64.h: $(syscall64) $(systbl)
59 all: $(addprefix $(out)/,$(syshdr-y))
1 out := $(obj)/../include/generated/asm macro
/arch/arm/crypto/
H A Dsha1_glue.c89 static int sha1_final(struct shash_desc *desc, u8 *out) argument
93 __be32 *dst = (__be32 *)out;
99 /* Pad out to 56 mod 64 and append length */
121 static int sha1_export(struct shash_desc *desc, void *out) argument
124 memcpy(out, sctx, sizeof(*sctx));
H A Dsha1_neon_glue.c103 static int sha1_neon_final(struct shash_desc *desc, u8 *out) argument
107 __be32 *dst = (__be32 *)out;
113 /* Pad out to 56 mod 64 and append length */
142 static int sha1_neon_export(struct shash_desc *desc, void *out) argument
146 memcpy(out, sctx, sizeof(*sctx));
H A Dsha256_glue.c113 static int sha256_final(struct shash_desc *desc, u8 *out) argument
117 __be32 *dst = (__be32 *)out;
124 /* Pad out to 56 mod 64 and append length */
147 static int sha224_final(struct shash_desc *desc, u8 *out) argument
153 memcpy(out, D, SHA224_DIGEST_SIZE);
159 int sha256_export(struct shash_desc *desc, void *out) argument
163 memcpy(out, sctx, sizeof(*sctx));
H A Dsha256_neon_glue.c84 static int sha256_neon_final(struct shash_desc *desc, u8 *out) argument
88 __be32 *dst = (__be32 *)out;
95 /* Pad out to 56 mod 64 and append length */
126 static int sha224_neon_final(struct shash_desc *desc, u8 *out) argument
132 memcpy(out, D, SHA224_DIGEST_SIZE);
H A Dsha512_neon_glue.c156 static int sha512_neon_final(struct shash_desc *desc, u8 *out) argument
160 __be64 *dst = (__be64 *)out;
168 /* Pad out to 112 mod 128 and append length */
201 static int sha512_neon_export(struct shash_desc *desc, void *out) argument
205 memcpy(out, sctx, sizeof(*sctx));
/arch/mips/bcm47xx/
H A Dsetup.c105 static int bcm47xx_get_sprom_ssb(struct ssb_bus *bus, struct ssb_sprom *out) argument
110 memset(out, 0, sizeof(struct ssb_sprom));
114 bcm47xx_fill_sprom(out, prefix, false);
174 static int bcm47xx_get_sprom_bcma(struct bcma_bus *bus, struct ssb_sprom *out) argument
181 memset(out, 0, sizeof(struct ssb_sprom));
185 bcm47xx_fill_sprom(out, prefix, false);
188 memset(out, 0, sizeof(struct ssb_sprom));
193 bcm47xx_fill_sprom(out, prefix, true);
195 bcm47xx_fill_sprom(out, NULL, false);
/arch/powerpc/crypto/
H A Dsha1.c79 static int sha1_final(struct shash_desc *desc, u8 *out) argument
82 __be32 *dst = (__be32 *)out;
89 /* Pad out to 56 mod 64 */
107 static int sha1_export(struct shash_desc *desc, void *out) argument
111 memcpy(out, sctx, sizeof(*sctx));
/arch/score/lib/
H A Dchecksum.S142 beq out
251 out: label
/arch/sparc/crypto/
H A Dmd5_glue.c83 static int md5_sparc64_final(struct shash_desc *desc, u8 *out) argument
87 u32 *dst = (u32 *)out;
93 /* Pad out to 56 mod 64 and append length */
116 static int md5_sparc64_export(struct shash_desc *desc, void *out) argument
120 memcpy(out, sctx, sizeof(*sctx));
H A Dsha1_glue.c78 static int sha1_sparc64_final(struct shash_desc *desc, u8 *out) argument
82 __be32 *dst = (__be32 *)out;
88 /* Pad out to 56 mod 64 and append length */
111 static int sha1_sparc64_export(struct shash_desc *desc, void *out) argument
115 memcpy(out, sctx, sizeof(*sctx));

Completed in 419 milliseconds

123