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

12

/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/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.c61 int s390_sha_final(struct shash_desc *desc, u8 *out) argument
93 /* copy digest to out */
94 memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
H A Ddes_s390.c51 static void des_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
55 crypt_s390_km(KM_DEA_ENCRYPT, ctx->key, out, in, DES_BLOCK_SIZE);
58 static void des_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
62 crypt_s390_km(KM_DEA_DECRYPT, ctx->key, out, in, DES_BLOCK_SIZE);
94 u8 *out = walk->dst.virt.addr; local
97 ret = crypt_s390_km(func, key, out, in, n);
114 goto out;
120 u8 *out = walk->dst.virt.addr; local
123 ret = crypt_s390_kmc(func, iv, out, in, n);
131 out
381 u8 *out, *in; local
[all...]
/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
H A Dpat_rbtree.c217 goto out;
222 out:
234 int rbt_memtype_copy_nth_element(struct memtype *out, loff_t pos) argument
247 *out = *this;
/arch/x86/syscalls/
H A DMakefile0 out := $(obj)/../include/generated/asm
4 _dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)')
21 $(out)/unistd_32.h: $(syscall32) $(syshdr)
26 $(out)/unistd_32_ia32.h: $(syscall32) $(syshdr)
31 $(out)/unistd_x32.h: $(syscall64) $(syshdr)
35 $(out)/unistd_64.h: $(syscall64) $(syshdr)
40 $(out)/unistd_64_x32.h: $(syscall64) $(syshdr)
43 $(out)/syscalls_32.h: $(syscall32) $(systbl)
45 $(out)/syscalls_6
1 out := $(obj)/../include/generated/asm macro
[all...]
/arch/mips/bcm47xx/
H A Dsetup.c88 static int bcm47xx_get_sprom_ssb(struct ssb_bus *bus, struct ssb_sprom *out) argument
96 bcm47xx_fill_sprom(out, prefix);
162 static int bcm47xx_get_sprom_bcma(struct bcma_bus *bus, struct ssb_sprom *out) argument
172 bcm47xx_fill_sprom(out, prefix);
175 bcm47xx_fill_sprom_ethernet(out, NULL);
180 bcm47xx_fill_sprom(out, prefix);
/arch/score/lib/
H A Dchecksum.S142 beq out
251 out: label
/arch/arm/plat-mxc/
H A Diomux-v1.c68 unsigned int port, unsigned int pin, int out)
72 imx_iomuxv1_rmwl(MXC_DDIR(port), mask, out ? mask : 0);
67 imx_iomuxv1_set_ddir( unsigned int port, unsigned int pin, int out) argument
/arch/parisc/kernel/
H A Dpdc_chassis.c22 * Find out how to get Chassis warnings out of PAT boxes?
250 char *out = page; local
262 out += sprintf(out, "Chassis component failure! (eg fan or PSU): 0x%.2x\n", ((warnreg >> 24) & 0xFF));
264 out += sprintf(out, "Battery: %s\n", (warnreg & 0x04) ? "Low!" : "OK");
265 out += sprintf(out, "Temp low: %s\n", (warnreg & 0x02) ? "Exceeded!" : "OK");
266 out
[all...]
/arch/x86/crypto/
H A Dcrc32c-intel.c121 u8 *out)
123 *(__le32 *)out = ~cpu_to_le32(crc32c_intel_le_hw(*crcp, data, len));
128 unsigned int len, u8 *out)
130 return __crc32c_intel_finup(shash_desc_ctx(desc), data, len, out);
133 static int crc32c_intel_final(struct shash_desc *desc, u8 *out) argument
137 *(__le32 *)out = ~cpu_to_le32p(crcp);
142 unsigned int len, u8 *out)
145 out);
120 __crc32c_intel_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) argument
127 crc32c_intel_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
141 crc32c_intel_digest(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
H A Dsha1_ssse3_glue.c111 static int sha1_ssse3_final(struct shash_desc *desc, u8 *out) argument
115 __be32 *dst = (__be32 *)out;
121 /* Pad out to 56 mod 64 and append length */
150 static int sha1_ssse3_export(struct shash_desc *desc, void *out) argument
154 memcpy(out, sctx, sizeof(*sctx));
/arch/alpha/boot/
H A Dmisc.c109 error("ran out of input data");
126 uch *in, *out, ch; local
129 out = &output_data[output_ptr];
131 ch = *out++ = *in++;
/arch/h8300/boot/compressed/
H A Dmisc.c126 error("ran out of input data");
143 uch *in, *out, ch; local
146 out = &output_data[output_ptr];
148 ch = *out++ = *in++;
/arch/mips/bcm63xx/boards/
H A Dboard_bcm963xx.c647 int bcm63xx_get_fallback_sprom(struct ssb_bus *bus, struct ssb_sprom *out) argument
650 memcpy(out, &bcm63xx_sprom, sizeof(struct ssb_sprom));
753 /* bail out if board is not found, will complain later */
/arch/powerpc/include/asm/
H A Dkvm_para.h110 unsigned long *out,
121 unsigned long *out,
132 unsigned long out[8]; local
135 r = kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
136 *r2 = out[0];
144 unsigned long out[8]; local
146 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
152 unsigned long out[8]; local
155 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
162 unsigned long out[ local
120 kvm_hypercall(unsigned long *in, unsigned long *out, unsigned long nr) argument
173 unsigned long out[8]; local
186 unsigned long out[8]; local
[all...]
/arch/powerpc/platforms/52xx/
H A Dmpc52xx_common.c284 int out; local
295 out = PSC1_SDATA_OUT; /* AC97_1_SDATA_OUT */
301 out = PSC2_SDATA_OUT; /* AC97_2_SDATA_OUT */
318 setbits32(&simple_gpio->simple_gpioe, sync | out);
321 setbits32(&simple_gpio->simple_ddr, sync | out);
324 clrbits32(&simple_gpio->simple_dvo, sync | out);
/arch/cris/boot/compressed/
H A Dmisc.c203 uch *in, *out, ch; local
206 out = &output_data[output_ptr];
208 ch = *out = *in;
209 out++;

Completed in 474 milliseconds

12