Searched refs:out (Results 251 - 275 of 7758) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/gpu/drm/i915/gem/selftests/
H A Di915_gem_object.c25 goto out;
30 out:
54 goto out;
69 out:
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dfexit_stress.c33 goto out;
42 goto out;
45 goto out;
51 out:
H A Dmap_btf.c20 goto out;
34 out:
67 goto out;
78 out:
H A Dhtab_update.c29 goto out;
34 goto out;
41 goto out;
44 out:
93 goto out;
103 goto out;
114 out:
H A Dtest_ldsx_insn.c19 goto out;
28 goto out;
32 goto out;
42 out:
112 goto out;
119 goto out;
127 out:
H A Dmodule_fentry_shadow.c84 goto out;
88 goto out;
92 goto out;
96 goto out;
106 goto out;
116 goto out;
122 out:
/linux-master/tools/lib/bpf/
H A Dzip.h45 int zip_archive_find_entry(struct zip_archive *archive, const char *name, struct zip_entry *out);
/linux-master/drivers/misc/lkdtm/
H A Dstackleak.c50 goto out;
57 goto out;
95 goto out;
115 out:
/linux-master/fs/smb/common/
H A Darc4.h21 void cifs_arc4_crypt(struct arc4_ctx *ctx, u8 *out, const u8 *in, unsigned int len);
H A Dmd4.h25 int cifs_md4_final(struct md4_ctx *mctx, u8 *out);
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_migrate.h33 struct i915_request **out);
43 struct i915_request **out);
53 struct i915_request **out);
61 struct i915_request **out);
/linux-master/tools/testing/selftests/powerpc/dexcr/
H A Ddexcr.c27 goto out;
41 out:
57 goto out;
63 out:
/linux-master/drivers/infiniband/sw/rdmavt/
H A Dmad.h14 struct ib_mad_hdr *out, size_t *out_mad_size,
/linux-master/tools/testing/selftests/net/
H A Dlib.sh24 local out
25 out=$("$@")
28 echo -n "$out"
34 echo -n "$out"
/linux-master/arch/s390/crypto/
H A Dcrc32-vx.c126 static int crc32le_vx_final(struct shash_desc *desc, u8 *out) argument
130 *(__le32 *)out = cpu_to_le32p(&ctx->crc);
134 static int crc32be_vx_final(struct shash_desc *desc, u8 *out) argument
138 *(__be32 *)out = cpu_to_be32p(&ctx->crc);
142 static int crc32c_vx_final(struct shash_desc *desc, u8 *out) argument
150 *(__le32 *)out = ~cpu_to_le32p(&ctx->crc);
155 u8 *out)
157 *(__le32 *)out = cpu_to_le32(crc32_le_vx(*crc, data, len));
162 u8 *out)
164 *(__be32 *)out
154 __crc32le_vx_finup(u32 *crc, const u8 *data, unsigned int len, u8 *out) argument
161 __crc32be_vx_finup(u32 *crc, const u8 *data, unsigned int len, u8 *out) argument
168 __crc32c_vx_finup(u32 *crc, const u8 *data, unsigned int len, u8 *out) argument
[all...]
/linux-master/arch/loongarch/crypto/
H A Dcrc32-loongarch.c153 static int chksum_final(struct shash_desc *desc, u8 *out) argument
157 put_unaligned_le32(ctx->crc, out);
161 static int chksumc_final(struct shash_desc *desc, u8 *out) argument
165 put_unaligned_le32(~ctx->crc, out);
169 static int __chksum_finup(u32 crc, const u8 *data, unsigned int len, u8 *out) argument
171 put_unaligned_le32(crc32_loongarch_hw(crc, data, len), out); local
175 static int __chksumc_finup(u32 crc, const u8 *data, unsigned int len, u8 *out) argument
177 put_unaligned_le32(~crc32c_loongarch_hw(crc, data, len), out); local
181 static int chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
185 return __chksum_finup(ctx->crc, data, len, out);
188 chksumc_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
195 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
202 chksumc_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
[all...]
/linux-master/fs/bcachefs/
H A Ddebug.c143 goto out;
149 goto out;
177 out:
182 void bch2_btree_node_ondisk_to_text(struct printbuf *out, struct bch_fs *c, argument
193 prt_printf(out, "error getting device to read from: invalid device\n");
199 prt_printf(out, "error getting device to read from: not online\n");
205 prt_printf(out, "memory allocation failure\n");
206 goto out;
219 prt_printf(out, "IO error reading btree node: %s\n", bch2_err_str(ret));
220 goto out;
[all...]
/linux-master/lib/
H A Dtest_memcat_p.c24 struct test_struct **in0, **in1, **out, **p; local
56 out = memcat_p(in0, in1);
57 if (!out)
61 for (i = 0, p = out; *p && (i < INPUT_MAX * 2 - 1); p++, i++) {
83 if (out[i] != in0[i] || out[i + INPUT_MAX - 1] != in1[i]) {
92 kfree(out);
/linux-master/drivers/net/ethernet/intel/igc/
H A Digc_mac.c42 goto out;
45 out:
68 /* Zero out the other (rar_entry_count - 1) receive addresses */
127 goto out;
146 goto out;
162 out:
220 goto out;
225 out:
361 /* We only want to go out to the PHY registers to see if Auto-Neg
368 goto out;
[all...]
/linux-master/crypto/
H A Dkdf_sp800108.c33 goto out;
37 goto out;
43 goto out;
51 goto out;
54 goto out;
59 goto out;
66 out:
/linux-master/tools/memory-model/scripts/
H A Dcmplitmushist.sh4 # Compares .out and .out.new files for each name on standard input,
47 echo Both runs timed out: $2
50 echo Old run timed out: $2
53 echo New run timed out: $2
96 sed -e 's/^.*$/comparetest &.out &.out.new/' > $T/cmpscript
97 . $T/cmpscript > $T/cmpscript.out
98 cat $T/cmpscript.out
101 grep '!!!' $T/cmpscript.out
[all...]
/linux-master/drivers/gpio/
H A Dgpio-gw-pld.c22 * @out: shadow register for the output bute
27 u8 out; member in struct:gw_pld
39 gw->out |= BIT(offset);
40 return i2c_smbus_write_byte(gw->client, gw->out);
58 gw->out |= BIT(offset);
60 gw->out &= ~BIT(offset);
62 return i2c_smbus_write_byte(gw->client, gw->out);
98 gw->out = 0xFF;
/linux-master/net/sctp/
H A Doffload.c46 goto out;
50 goto out;
69 goto out;
74 goto out;
86 out:
108 goto out;
119 out:
/linux-master/net/llc/
H A Dllc_station.c56 goto out;
65 out:
69 goto out;
80 goto out;
87 goto out;
96 out:
100 goto out;
/linux-master/drivers/video/logo/
H A Dpnmtologo.c22 static FILE *out; variable
228 out = fopen(outputname, "w");
229 if (!out)
232 out = stdout;
235 fputs("/*\n", out);
236 fputs(" * DO NOT EDIT THIS FILE!\n", out);
237 fputs(" *\n", out);
238 fprintf(out, " * It was automatically generated from %s\n", filename);
239 fputs(" *\n", out);
240 fprintf(out, " * Linu
[all...]

Completed in 246 milliseconds

<<11121314151617181920>>