Home
last modified time | relevance | path

Searched full:out1 (Results 1 – 25 of 273) sorted by relevance

1234567891011

/openbmc/linux/arch/arm/crypto/
H A Daes-cipher-core.S42 .macro __hround, out0, out1, in0, in1, in2, in3, t3, t4, enc, sz, op, oldcpsr
49 __select \out1, \in1, 0
52 __select \out1, \in3, 0
55 __load \out1, \out1, 0, \sz, \op
82 eor \out1, \out1, t1, ror #24
85 eor \out1, \out1, \t3, ror #16
87 eor \out1, \out1, \t4, ror #8
89 eor \out1, \out1, t2
92 .macro fround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op, oldcpsr
93 __hround \out0, \out1, \in0, \in1, \in2, \in3, \out2, \out3, 1, \sz, \op
[all …]
/openbmc/linux/drivers/crypto/vmx/
H A Daesp8-ppc.pl703 my ($out0,$out1,$out2,$out3,$out4,$out5,$out6,$out7)=map("v$_",(14..21));
815 vxor $out1,$in1,$rndkey0
835 vncipher $out1,$out1,v24
846 vncipher $out1,$out1,v25
858 vncipher $out1,$out1,v24
868 vncipher $out1,$out1,v25
878 vncipher $out1,$out1,v26
891 vncipher $out1,$out1,v27
901 vncipher $out1,$out1,v28
911 vncipher $out1,$out1,v29
[all …]
/openbmc/linux/arch/arm64/crypto/
H A Daes-cipher-core.S56 .macro __hround, out0, out1, in0, in1, in2, in3, t0, t1, enc, sz, op
57 ldp \out0, \out1, [rk], #8
65 eor \out1, \out1, w13
67 eor \out1, \out1, w15, ror #24
69 eor \out1, \out1, w17, ror #16
71 eor \out1, \out1, \t1, ror #8
74 .macro fround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op
75 __hround \out0, \out1, \in0, \in1, \in2, \in3, \out2, \out3, 1, \sz, \op
79 .macro iround, out0, out1, out2, out3, in0, in1, in2, in3, sz=2, op
80 __hround \out0, \out1, \in0, \in3, \in2, \in1, \out2, \out3, 0, \sz, \op
H A Daes-neon.S158 .macro mul_by_x_2x, out0, out1, in0, in1, tmp0, tmp1, const
163 shl \out1\().16b, \in1\().16b, #1
166 eor \out1\().16b, \out1\().16b, \tmp1\().16b
169 .macro mul_by_x2_2x, out0, out1, in0, in1, tmp0, tmp1, const
174 shl \out1\().16b, \in1\().16b, #2
177 eor \out1\().16b, \out1\().16b, \tmp1\().16b
/openbmc/bmcweb/test/http/
H A Dutility_test.cpp115 std::string out1; in TEST() local
118 EXPECT_TRUE(readUrlSegments(*parsed, "redfish", "v1", std::ref(out1))); in TEST()
119 EXPECT_EQ(out1, "Chassis"); in TEST()
121 out1 = out2 = out3 = ""; in TEST()
122 EXPECT_TRUE(readUrlSegments(*parsed, std::ref(out1), std::ref(out2), in TEST()
124 EXPECT_EQ(out1, "redfish"); in TEST()
128 out1 = out2 = out3 = ""; in TEST()
129 EXPECT_TRUE(readUrlSegments(*parsed, "redfish", std::ref(out1), "Chassis")); in TEST()
130 EXPECT_EQ(out1, "v1"); in TEST()
132 out1 = out2 = out3 = ""; in TEST()
[all …]
/openbmc/linux/drivers/comedi/drivers/
H A Damplc_dio200.c143 * 2 CTR-Y1-OUT1 PPI-Y-C0
144 * 3 CTR-Y2-OUT1 PPI-Y-C3
145 * 4 CTR-Z1-OUT1 CTR-Z1-OUT1
146 * 5 CTR-Z2-OUT1 CTR-Z2-OUT1
151 * 0 CTR-X1-OUT1 PPI-X-C0
152 * 1 CTR-X2-OUT1 PPI-X-C3
153 * 2 CTR-Y1-OUT1 PPI-Y-C0
154 * 3 CTR-Y2-OUT1 PPI-Y-C3
155 * 4 CTR-Z1-OUT1 PPI-Z-C0
156 * 5 CTR-Z2-OUT1 PPI-Z-C3
H A Damplc_dio200_pci.c178 * 4 CTR-Z1-OUT1 CTR-Z1-OUT1 CTR-Z1-OUT1
179 * 5 CTR-Z2-OUT1 CTR-Z2-OUT1 CTR-Z2-OUT1
188 * 4 PPI-Z-C0 CTR-Z1-OUT1
189 * 5 PPI-Z-C3 CTR-Z2-OUT1
/openbmc/linux/sound/soc/codecs/
H A Dwm8350.c61 struct wm8350_output out1; member
73 * Ramp OUT1 PGA volume to minimise pops at stream startup and shutdown.
77 struct wm8350_output *out1 = &wm8350_data->out1; in wm8350_out1_ramp_step() local
86 if (out1->ramp == WM8350_RAMP_UP) { in wm8350_out1_ramp_step()
88 if (val < out1->left_vol) { in wm8350_out1_ramp_step()
95 } else if (out1->ramp == WM8350_RAMP_DOWN) { in wm8350_out1_ramp_step()
110 if (out1->ramp == WM8350_RAMP_UP) { in wm8350_out1_ramp_step()
112 if (val < out1->right_vol) { in wm8350_out1_ramp_step()
119 } else if (out1->ramp == WM8350_RAMP_DOWN) { in wm8350_out1_ramp_step()
211 struct wm8350_output *out1 = &wm8350_data->out1, in wm8350_pga_work() local
[all …]
/openbmc/linux/security/keys/
H A Ddh.c142 goto out1; in __keyctl_dh_compute()
146 goto out1; in __keyctl_dh_compute()
154 goto out1; in __keyctl_dh_compute()
160 goto out1; in __keyctl_dh_compute()
167 goto out1; in __keyctl_dh_compute()
174 goto out1; in __keyctl_dh_compute()
182 goto out1; in __keyctl_dh_compute()
295 out1: in __keyctl_dh_compute()
/openbmc/linux/arch/arm/boot/dts/samsung/
H A Ds5pv210-galaxys.dts203 PIN_SLP(gpa0-3, OUT1, NONE);
207 PIN_SLP(gpa0-7, OUT1, NONE);
215 PIN_SLP(gpb-1, OUT1, NONE);
305 PIN_SLP(gpg1-1, OUT1, NONE);
307 PIN_SLP(gpg1-3, OUT1, NONE);
308 PIN_SLP(gpg1-4, OUT1, NONE);
309 PIN_SLP(gpg1-5, OUT1, NONE);
310 PIN_SLP(gpg1-6, OUT1, NONE);
320 PIN_SLP(gpg3-0, OUT1, NONE);
359 PIN_SLP(gpj2-7, OUT1, NONE);
[all …]
H A Ds5pv210-fascinate4g.dts165 PIN_SLP(gpa0-3, OUT1, NONE);
177 PIN_SLP(gpb-1, OUT1, NONE);
267 PIN_SLP(gpg1-1, OUT1, NONE);
269 PIN_SLP(gpg1-3, OUT1, NONE);
270 PIN_SLP(gpg1-4, OUT1, NONE);
271 PIN_SLP(gpg1-5, OUT1, NONE);
272 PIN_SLP(gpg1-6, OUT1, NONE);
307 PIN_SLP(gpj1-0, OUT1, NONE);
338 PIN_SLP(mp01-0, OUT1, NONE);
342 PIN_SLP(mp01-4, OUT1, NONE);
[all …]
/openbmc/linux/lib/
H A Ddigsig.c76 unsigned char *out1 = NULL; in digsig_verify_rsa() local
130 out1 = kzalloc(mlen, GFP_KERNEL); in digsig_verify_rsa()
131 if (!out1) in digsig_verify_rsa()
162 memset(out1, 0, head); in digsig_verify_rsa()
163 memcpy(out1 + head, p, l); in digsig_verify_rsa()
167 m = pkcs_1_v1_5_decode_emsa(out1, len, mblen, &len); in digsig_verify_rsa()
175 kfree(out1); in digsig_verify_rsa()
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Didt,versaclock5.yaml18 1 -- OUT1
23 1 -- OUT1
28 1 -- OUT1
107 Description of one of the outputs (OUT1..OUT4). See "Clock1 Output
185 OUT1 {
/openbmc/linux/drivers/md/
H A Ddm-ps-historical-service-time.c372 long long out1, out2, stale1, stale2; in hst_compare() local
375 hst_fill_compare(pi1, &hst1, &out1, &stale1); in hst_compare()
389 return out1 - out2; in hst_compare()
396 if ((!out1 && stale1 < time_now) || (!out2 && stale2 < time_now) || in hst_compare()
397 (!out1 && !out2)) in hst_compare()
398 return (!out2 * stale1) - (!out1 * stale2); in hst_compare()
403 if (out1 == out2) { in hst_compare()
407 if (unlikely(out1 >= HST_MAX_INFLIGHT || in hst_compare()
416 pi2_better = (1 + out1) * hst1 > (1 + out2) * hst2; in hst_compare()
422 return out1 - out2; in hst_compare()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dskeleton.c47 CHECK(data->out1 != -1, "out1", "got %d != exp %d\n", data->out1, -1); in test_skeleton()
109 CHECK(data->out1 != 1, "res1", "got %d != exp %d\n", data->out1, 1); in test_skeleton()
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Daxentia,tse850-pcm5142.txt16 IN1 +---o +------------+ o---+ OUT1
38 (if 'add' is active) and feeding the mixer output to OUT1. The 'loop2' relays
39 are active, short-cutting the TSE-850 from channel 2. IN1, IN2, OUT1 and OUT2
/openbmc/linux/fs/bfs/
H A Dinode.c337 goto out1; in bfs_fill_super()
347 goto out1; in bfs_fill_super()
355 goto out1; in bfs_fill_super()
364 goto out1; in bfs_fill_super()
369 goto out1; in bfs_fill_super()
442 out1: in bfs_fill_super()
470 goto out1; in init_bfs_fs()
477 out1: in init_bfs_fs()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_subskeleton.c10 int out1; variable
24 out1 = lib_routine() * rovar1; in handler1()
H A Dtest_skeleton.c30 int out1 = -1; variable
75 out1 = in1; in handler()
/openbmc/linux/fs/jfs/
H A Dnamei.c78 goto out1; in jfs_create()
85 goto out1; in jfs_create()
173 out1: in jfs_create()
211 goto out1; in jfs_mkdir()
218 goto out1; in jfs_mkdir()
308 out1: in jfs_mkdir()
510 goto out1; in jfs_unlink()
534 goto out1; in jfs_unlink()
591 out1: in jfs_unlink()
900 goto out1; in jfs_symlink()
[all …]
/openbmc/u-boot/board/toradex/apalis-tk1/
H A Dpinmux-config-apalis-tk1.h26 GPIO_INIT(N, 2, OUT1),
27 GPIO_INIT(N, 4, OUT1),
28 GPIO_INIT(N, 5, OUT1),
35 GPIO_INIT(Q, 5, OUT1), /* Shift_CTRL_Dir_Out[0] */
36 GPIO_INIT(Q, 6, OUT1), /* Shift_CTRL_Dir_Out[1] */
37 GPIO_INIT(Q, 7, OUT1), /* Shift_CTRL_Dir_Out[2] */
42 GPIO_INIT(U, 4, OUT1),
48 GPIO_INIT(BB, 5, OUT1),
/openbmc/linux/tools/testing/selftests/cachestat/
H A Dtest_cachestat.c143 goto out1; in test_cachestat()
154 goto out1; in test_cachestat()
191 goto out1; in test_cachestat()
196 out1: in test_cachestat()
/openbmc/linux/fs/hpfs/
H A Dnamei.c387 goto out1; in hpfs_unlink()
391 goto out1; in hpfs_unlink()
408 out1: in hpfs_unlink()
438 goto out1; in hpfs_rmdir()
442 goto out1; in hpfs_rmdir()
447 goto out1; in hpfs_rmdir()
464 out1: in hpfs_rmdir()
/openbmc/linux/sound/soc/atmel/
H A Dtse850-pcm5142.c10 // IN1 +---o +------------+ o---+ OUT1
32 // mixer (if 'add' is active) and feeding the mixer output to OUT1. The
34 // IN1, IN2, OUT1 and OUT2 are TSE-850 connectors and DAC is the PCB name
255 SND_SOC_DAPM_LINE("OUT1", NULL),
278 { "OUT1", NULL, "MUX1" },
/openbmc/linux/fs/ntfs3/
H A Dfrecord.c1046 goto out1; in ni_ins_attr_ext()
1072 out1: in ni_ins_attr_ext()
2206 goto out1; in ni_readpage_cmpr()
2213 out1: in ni_readpage_cmpr()
2473 goto out1; in decompress_lzx_xpress()
2483 out1: in decompress_lzx_xpress()
2552 goto out1; in ni_read_frame()
2565 goto out1; in ni_read_frame()
2571 goto out1; in ni_read_frame()
2577 goto out1; in ni_read_frame()
[all …]

1234567891011