Searched refs:out (Results 126 - 150 of 7800) sorted by relevance

1234567891011>>

/linux-master/crypto/
H A Dcrc64_rocksoft_generic.c27 static int chksum_final(struct shash_desc *desc, u8 *out) argument
31 put_unaligned_le64(*crc, out);
35 static int __chksum_finup(u64 crc, const u8 *data, unsigned int len, u8 *out) argument
38 put_unaligned_le64(crc, out);
43 unsigned int len, u8 *out)
47 return __chksum_finup(*crc, data, len, out);
51 unsigned int length, u8 *out)
53 return __chksum_finup(0, data, length, out);
42 chksum_finup(struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) argument
50 chksum_digest(struct shash_desc *desc, const u8 *data, unsigned int length, u8 *out) argument
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dxdp_info.c49 goto out;
51 goto out;
55 goto out;
57 goto out;
61 goto out;
63 goto out;
69 goto out;
72 out:
H A Dtracing_failure.c22 goto out;
27 out:
H A Dxdp_dev_bound_only.c32 SYS(out, "ip netns add " LOCAL_NETNS);
35 goto out;
36 SYS(out, "ip link add eth42 type veth");
40 goto out;
45 goto out;
53 out:
H A Dglobal_func_dead_code.c24 goto out;
31 goto out;
38 goto out;
45 goto out;
53 goto out;
57 out:
H A Dxdp_bonding.c276 goto out;
279 goto out;
323 out:
339 goto out;
343 goto out;
351 goto out;
355 goto out;
361 goto out;
366 goto out;
374 out
[all...]
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dkvm-build.sh45 make -j$((2 * ncpus)) $TORTURE_KMAKE_ARG > $resdir/Make.out 2>&1
47 if test $retval -ne 0 || grep "rcu[^/]*": < $resdir/Make.out | grep -E -q "Stop|Error|error:|warning:" || grep -E -q "Stop|Error|error:" < $resdir/Make.out
50 grep -E "Stop|Error|error:|warning:" < $resdir/Make.out
/linux-master/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp2_execution.c111 goto out;
124 out:
135 goto out;
148 out:
191 goto out;
198 out:
231 goto out;
235 goto out;
240 goto out;
255 out
[all...]
/linux-master/fs/bcachefs/
H A Dutil.c244 void bch2_prt_u64_base2_nbits(struct printbuf *out, u64 v, unsigned nr_bits) argument
247 prt_char(out, '0' + ((v >> --nr_bits) & 1));
250 void bch2_prt_u64_base2(struct printbuf *out, u64 v) argument
252 bch2_prt_u64_base2_nbits(out, v, fls64(v) ?: 1);
303 void bch2_prt_backtrace(struct printbuf *out, bch_stacktrace *stack) argument
306 prt_printf(out, "[<0>] %pB", (void *) *i);
307 prt_newline(out);
311 int bch2_prt_task_backtrace(struct printbuf *out, struct task_struct *task, unsigned skipnr, gfp_t gfp) argument
316 bch2_prt_backtrace(out, &stack);
323 void bch2_prt_datetime(struct printbuf *out, time64_ argument
332 bch2_prt_datetime(struct printbuf *out, time64_t sec) argument
340 bch2_pr_time_units(struct printbuf *out, u64 ns) argument
347 bch2_pr_time_units_aligned(struct printbuf *out, u64 ns) argument
354 pr_name_and_units(struct printbuf *out, const char *name, u64 ns) argument
363 bch2_time_stats_to_text(struct printbuf *out, struct bch2_time_stats *stats) argument
569 bch2_pd_controller_debug_to_text(struct printbuf *out, struct bch_pd_controller *pd) argument
[all...]
/linux-master/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/
H A Dgdc.c86 int *out = (int *)out_lut; local
89 out[0] = in_lut[0][i];
90 out[1] = in_lut[1][i];
91 out[2] = in_lut[2][i];
92 out[3] = in_lut[3][i];
93 out += 4;
/linux-master/arch/arm/crypto/
H A Daes-cipher-glue.c13 asmlinkage void __aes_arm_encrypt(u32 *rk, int rounds, const u8 *in, u8 *out);
14 asmlinkage void __aes_arm_decrypt(u32 *rk, int rounds, const u8 *in, u8 *out);
16 static void aes_arm_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
21 __aes_arm_encrypt(ctx->key_enc, rounds, in, out);
24 static void aes_arm_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
29 __aes_arm_decrypt(ctx->key_dec, rounds, in, out);
/linux-master/arch/arm64/crypto/
H A Daes-cipher-glue.c12 asmlinkage void __aes_arm64_encrypt(u32 *rk, u8 *out, const u8 *in, int rounds);
13 asmlinkage void __aes_arm64_decrypt(u32 *rk, u8 *out, const u8 *in, int rounds);
15 static void aes_arm64_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
20 __aes_arm64_encrypt(ctx->key_enc, out, in, rounds);
23 static void aes_arm64_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) argument
28 __aes_arm64_decrypt(ctx->key_dec, out, in, rounds);
/linux-master/tools/lib/subcmd/
H A Dsubcmd-util.h57 #define astrcatf(out, fmt, ...) \
59 char *tmp = *(out); \
60 if (asprintf((out), "%s" fmt, tmp ?: "", ## __VA_ARGS__) == -1) \
65 static inline void astrcat(char **out, const char *add) argument
67 char *tmp = *out;
69 if (asprintf(out, "%s%s", tmp ?: "", add) == -1)
/linux-master/tools/testing/selftests/bpf/progs/
H A Dsockopt_multi.c17 goto out;
32 out:
46 goto out;
61 out:
75 goto out;
85 out:
/linux-master/arch/powerpc/crypto/
H A Daesp8-ppc.h20 void aes_p8_encrypt(const u8 *in, u8 *out, const struct aes_key *key);
21 void aes_p8_decrypt(const u8 *in, u8 *out, const struct aes_key *key);
22 void aes_p8_cbc_encrypt(const u8 *in, u8 *out, size_t len,
24 void aes_p8_ctr32_encrypt_blocks(const u8 *in, u8 *out,
27 void aes_p8_xts_encrypt(const u8 *in, u8 *out, size_t len,
29 void aes_p8_xts_decrypt(const u8 *in, u8 *out, size_t len,
H A Daesp10-ppc.pl120 my ($inp,$bits,$out,$ptr,$cnt,$rounds)=map("r$_",(3..8));
154 ${UCMP}i $out,0
155 beq- Lenc_key_abort # if ($out==0) return -1;
188 ?lvsr $outperm,0,$out
190 lvx $outhead,0,$out
207 stvx $stage,0,$out
208 addi $out,$out,16
227 stvx $stage,0,$out
228 addi $out,
[all...]
/linux-master/tools/perf/tests/
H A Dexpand-cgroup.c42 goto out;
53 goto out;
59 goto out;
68 goto out;
74 goto out;
82 goto out;
87 goto out;
94 out: for (i = 0; i < nr_events; i++)
132 goto out;
137 out
[all...]
/linux-master/tools/perf/util/
H A Dstat-shadow.c189 double numerator, struct perf_stat_output_ctx *out,
199 out->print_metric(config, out->ctx, color, "%7.2f%%", unit, ratio);
201 out->print_metric(config, out->ctx, NULL, NULL, unit, 0);
207 struct perf_stat_output_ctx *out)
211 print_ratio(config, evsel, aggr_idx, stalled, out, STAT_CYCLES, color_ratios,
218 struct perf_stat_output_ctx *out)
222 print_ratio(config, evsel, aggr_idx, stalled, out, STAT_CYCLES, color_ratios,
229 struct perf_stat_output_ctx *out)
187 print_ratio(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double numerator, struct perf_stat_output_ctx *out, enum stat_type denominator_type, const double color_ratios[3], const char *unit) argument
204 print_stalled_cycles_front(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double stalled, struct perf_stat_output_ctx *out) argument
215 print_stalled_cycles_back(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double stalled, struct perf_stat_output_ctx *out) argument
226 print_branch_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
237 print_l1d_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
248 print_l1i_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
259 print_ll_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
270 print_dtlb_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
281 print_itlb_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
292 print_cache_miss(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double misses, struct perf_stat_output_ctx *out) argument
303 print_instructions(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double instructions, struct perf_stat_output_ctx *out) argument
327 print_cycles(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx, double cycles, struct perf_stat_output_ctx *out) argument
342 print_nsecs(struct perf_stat_config *config, const struct evsel *evsel, int aggr_idx __maybe_unused, double nsecs, struct perf_stat_output_ctx *out) argument
462 generic_metric(struct perf_stat_config *config, struct metric_expr *mexp, struct evsel *evsel, int aggr_idx, struct perf_stat_output_ctx *out) argument
561 perf_stat__print_metricgroup_header(struct perf_stat_config *config, struct evsel *evsel, void *ctxp, const char *name, struct perf_stat_output_ctx *out) argument
608 perf_stat__print_shadow_stats_metricgroup(struct perf_stat_config *config, struct evsel *evsel, int aggr_idx, int *num, void *from, struct perf_stat_output_ctx *out, struct rblist *metric_events) argument
658 perf_stat__print_shadow_stats(struct perf_stat_config *config, struct evsel *evsel, double avg, int aggr_idx, struct perf_stat_output_ctx *out, struct rblist *metric_events) argument
[all...]
/linux-master/drivers/media/pci/solo6x10/
H A Dsolo6x10-core.c241 char *out = buf; local
244 out += sprintf(out, "Channel 0 => Input %d\n", val & 0x1f);
245 out += sprintf(out, "Channel 1 => Input %d\n", (val >> 5) & 0x1f);
246 out += sprintf(out, "Channel 2 => Input %d\n", (val >> 10) & 0x1f);
247 out += sprintf(out, "Channel 3 => Input %d\n", (val >> 15) & 0x1f);
248 out
301 char *out = buf; local
320 char *out = buf; local
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx4/
H A Dreset.c76 goto out;
88 goto out;
98 goto out;
101 /* grab HW semaphore to lock out flash updates */
115 goto out;
137 goto out;
148 goto out;
156 goto out;
169 goto out;
177 goto out;
[all...]
/linux-master/sound/aoa/soundbus/i2sbus/
H A Dinterface.h90 static inline int i2s_sf_mclkdiv(int div, int *out) argument
95 case 1: *out |= I2S_SF_MCLKDIV_1; return 0;
96 case 3: *out |= I2S_SF_MCLKDIV_3; return 0;
97 case 5: *out |= I2S_SF_MCLKDIV_5; return 0;
98 case 14: *out |= I2S_SF_MCLKDIV_14; return 0;
104 *out |= I2S_SF_MCLKDIV_OTHER(div);
117 static inline int i2s_sf_sclkdiv(int div, int *out) argument
122 case 1: *out |= I2S_SF_SCLKDIV_1; return 0;
123 case 3: *out |= I2S_SF_SCLKDIV_3; return 0;
128 *out |
[all...]
/linux-master/tools/testing/selftests/net/netfilter/
H A Dsctp_collision.c35 goto out;
41 goto out;
52 goto out;
60 goto out;
65 goto out;
70 goto out;
80 goto out;
86 goto out;
91 goto out;
96 out
[all...]
/linux-master/fs/btrfs/
H A Duuid-tree.c37 goto out;
43 goto out;
49 goto out;
52 goto out;
65 goto out;
79 out:
103 goto out;
111 goto out;
135 goto out;
143 out
[all...]
/linux-master/drivers/xen/xen-pciback/
H A Dxenbus.c43 goto out;
63 out:
121 goto out;
132 goto out;
138 out:
154 goto out;
159 goto out;
171 goto out;
180 goto out;
185 goto out;
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/lib/
H A Dtout.c55 /* Time register consists of two fields to_multiplier(time out multiplier)
56 * and to_value(time out value). to_value is the quantity of the time units and
130 u32 out[MLX5_ST_SZ_DW(dtor_reg)] = {}; local
134 err = mlx5_core_access_reg(dev, in, sizeof(in), out, sizeof(out), MLX5_REG_DTOR, 0, 0);
138 pcie_toggle_to_val = MLX5_TIMEOUT_FILL(pcie_toggle_to, out, dev, MLX5_TO_PCI_TOGGLE_MS, 0);
139 MLX5_TIMEOUT_FILL(fw_reset_to, out, dev, MLX5_TO_FW_RESET_MS, pcie_toggle_to_val);
141 tear_down_to_val = MLX5_TIMEOUT_FILL(tear_down_to, out, dev, MLX5_TO_TEARDOWN_MS, 0);
142 MLX5_TIMEOUT_FILL(pci_sync_update_to, out, dev, MLX5_TO_PCI_SYNC_UPDATE_MS,
145 MLX5_TIMEOUT_FILL(health_poll_to, out, de
[all...]

Completed in 401 milliseconds

1234567891011>>