Home
last modified time | relevance | path

Searched refs:P (Results 1 – 25 of 625) sorted by relevance

12345678910>>...25

/openbmc/u-boot/lib/
H A Dsha1.c97 #define P(a,b,c,d,e,x) { \ in sha1_process() macro
110 P (A, B, C, D, E, W[0]); in sha1_process()
111 P (E, A, B, C, D, W[1]); in sha1_process()
112 P (D, E, A, B, C, W[2]); in sha1_process()
113 P (C, D, E, A, B, W[3]); in sha1_process()
114 P (B, C, D, E, A, W[4]); in sha1_process()
115 P (A, B, C, D, E, W[5]); in sha1_process()
116 P (E, A, B, C, D, W[6]); in sha1_process()
117 P (D, E, A, B, C, W[7]); in sha1_process()
118 P (C, D, E, A, B, W[8]); in sha1_process()
[all …]
H A Dsha256.c99 #define P(a,b,c,d,e,f,g,h,x,K) { \ in sha256_process() macro
114 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process()
115 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process()
116 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process()
117 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process()
118 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process()
119 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process()
120 P(C, D, E, F, G, H, A, B, W[6], 0x923F82A4); in sha256_process()
121 P(B, C, D, E, F, G, H, A, W[7], 0xAB1C5ED5); in sha256_process()
122 P(A, B, C, D, E, F, G, H, W[8], 0xD807AA98); in sha256_process()
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D021.out4 == testing writev -P -1 ==
7 == testing read -P -1 ==
10 == testing write -P -1 ==
13 == testing readv -P -1 ==
16 == testing aio_read -P -1 ==
19 == testing aio_write -P -1 ==
22 == testing writev -P 300 ==
25 == testing read -P 300 ==
28 == testing write -P 300 ==
31 == testing readv -P 300 ==
[all …]
H A D271.out8 write -q -P PATTERN 0 1k
10 write -q -P PATTERN 3k 512
12 write -q -P PATTERN 5k 1k
14 write -q -P PATTERN 6k 2k
16 write -q -P PATTERN 8k 6k
18 write -q -P PATTERN 15k 4k
20 write -q -P PATTERN 32k 1k
22 write -q -P PATTERN 63k 4k
29 write -q -P PATTERN 0 64k
35 write -q -P PATTERN 3k 512
[all …]
H A D149.out10 qemu-io -c write -P 0xa7 100M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-145-…
16 qemu-io -c write -P 0x13 3145728M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-…
23 qemu-io -c read -P 0xa7 100M 10M --object secret,id=sec0,data=MTIzNDU2,format=base64 --image-opts d…
28 qemu-io -c read -P 0x13 3145728M 10M --object secret,id=sec0,data=MTIzNDU2,format=base64 --image-op…
33 qemu-io -c write -P 0x91 100M 10M --object secret,id=sec0,data=MTIzNDU2,format=base64 --image-opts …
38 qemu-io -c write -P 0x5e 3145728M 10M --object secret,id=sec0,data=MTIzNDU2,format=base64 --image-o…
46 qemu-io -c read -P 0x91 100M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-145-a…
52 qemu-io -c read -P 0x5e 3145728M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-1…
68 qemu-io -c write -P 0xa7 100M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-145-…
74 qemu-io -c write -P 0x13 3145728M 10M --image-opts driver=host_device,filename=/dev/mapper/qiotest-…
[all …]
H A D181.out10 (qemu) qemu-io disk "write -P 0x55 0 64k"
14 (qemu) qemu-io disk "read -P 0x55 0 64k"
23 (qemu) qemu-io disk "read -P 0x55 0 64k"
27 (qemu) qemu-io disk "write -P 0x66 1M 64k"
/openbmc/sdbusplus/include/sdbusplus/async/
H A Dclient.hpp24 template <bool S, bool P, bool Preserved,
28 public Types<client<S, P, Preserved, Types...>,
29 sdbusplus::async::proxy_ns::proxy<S, P, false, Preserved>>...
32 using Self = client<S, P, Preserved, Types...>;
33 using Proxy = sdbusplus::async::proxy_ns::proxy<S, P, false, Preserved>;
43 requires(S || P)
47 requires(!S && !P) in client()
53 requires(S || P) in client()
61 return client<true, P, Preserved, Types...>(ctx, proxy.service(s)); in service()
66 requires(!P) in path()
[all …]
H A Dproxy.hpp51 template <bool S = false, bool P = false, bool I = false,
69 requires(!S && !P && !I)
72 requires(S || P || I)
76 constexpr proxy(value_ref<S> s, value_ref<P> p, value_ref<I> i) : in proxy()
83 return proxy<true, P, I, Preserved>{s, this->p, this->i}; in service()
86 requires(!P) in path()
93 return proxy<S, P, true, Preserved>{this->s, this->p, i}; in interface()
107 using result_t = proxy<S, P, I, true>; in preserve()
109 typename result_t::template value_t<P>(this->p), in preserve()
126 requires((S) && (P) && (I)) in call()
[all …]
/openbmc/docs/
H A DIPMITOOL-cheatsheet.md11 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power status
17 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power on
23 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power off
29 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power reset
35 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power cycle
41 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power soft
47 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" power diag
55 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" user list
61 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" user summary
67 ipmitool -C 17 -H "$BMC_IP" -I lanplus -U "$BMC_USER" -P "$BMC_PASSWD" user set name <userid> <user…
[all …]
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/
H A D0001-testsuite-use-www.example.org-for-wget-test-cases.patch13 testsuite/wget/wget--O-overrides--P | 2 +-
16 testsuite/wget/wget-supports--P | 2 +-
19 diff --git a/testsuite/wget/wget--O-overrides--P b/testsuite/wget/wget--O-overrides--P
21 --- a/testsuite/wget/wget--O-overrides--P
22 +++ b/testsuite/wget/wget--O-overrides--P
27 -busybox wget -q -O index.html -P foo http://www.google.com/
28 +busybox wget -q -O index.html -P foo http://www.example.org/
49 diff --git a/testsuite/wget/wget-supports--P b/testsuite/wget/wget-supports--P
51 --- a/testsuite/wget/wget-supports--P
52 +++ b/testsuite/wget/wget-supports--P
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.dataTables-1.13.8.min.js4P,j,v,H){"use strict";function d(t){var e=parseInt(t,10);return!isNaN(e)&&isFinite(t)?e:null}funct… argument
/openbmc/qemu/subprojects/libvhost-user/include/
H A Datomic.h252 #define qatomic_read_i64(P) \
253 _Generic(*(P), int64_t: qatomic_read__nocheck(P))
254 #define qatomic_read_u64(P) \
255 _Generic(*(P), uint64_t: qatomic_read__nocheck(P))
256 #define qatomic_set_i64(P, V) \
257 _Generic(*(P), int64_t: qatomic_set__nocheck(P, V))
258 #define qatomic_set_u64(P,
264 qatomic_read_i64(P) global() argument
266 qatomic_read_u64(P) global() argument
268 qatomic_set_i64(P,V) global() argument
270 qatomic_set_u64(P,V) global() argument
[all...]
/openbmc/qemu/subprojects/libvduse/include/
H A Datomic.h252 #define qatomic_read_i64(P) \
253 _Generic(*(P), int64_t: qatomic_read__nocheck(P))
254 #define qatomic_read_u64(P) \
255 _Generic(*(P), uint64_t: qatomic_read__nocheck(P))
256 #define qatomic_set_i64(P, V) \
257 _Generic(*(P), int64_t: qatomic_set__nocheck(P, V))
258 #define qatomic_set_u64(P,
264 qatomic_read_i64(P) global() argument
266 qatomic_read_u64(P) global() argument
268 qatomic_set_i64(P,V) global() argument
270 qatomic_set_u64(P,V) global() argument
[all...]
/openbmc/qemu/include/qemu/
H A Datomic.h252 #define qatomic_read_i64(P) \ argument
253 _Generic(*(P), int64_t: qatomic_read__nocheck(P))
254 #define qatomic_read_u64(P) \ argument
255 _Generic(*(P), uint64_t: qatomic_read__nocheck(P))
256 #define qatomic_set_i64(P, V) \ argument
257 _Generic(*(P), int64_t: qatomic_set__nocheck(P, V))
258 #define qatomic_set_u64(P, V) \ argument
259 _Generic(*(P), uint64_t: qatomic_set__nocheck(P, V))
/openbmc/entity-manager/test/entity_manager/
H A Dlog_device_inventory.cpp10 "Name": "Supermicro PWS 920P SQ 0", in TEST()
14 "Model": "PWS 920P SQ", in TEST()
33 "Name": "Supermicro PWS 920P SQ 0", in TEST()
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DAMPAS1 Copyright (c) 2006 Academy of Motion Picture Arts and Sciences ("A.M.P.A.S."). Portions contributed…
9P.A.S. or any contributors, except as expressly stated herein, and neither the name of A.M.P.A.S. …
13P.A.S. AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED …
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dqsd-migrate.out8 …ommand", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"write -P 0x11 0 4k\""}}
10 …command", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"read -P 0x11 0 4k\""}}
23 …command", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"read -P 0x11 0 4k\""}}
34 …command", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"read -P 0x11 0 4k\""}}
36 …ommand", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"write -P 0x22 0 4k\""}}
38 …command", "arguments": {"command-line": "qemu-io -d virtio0/virtio-backend \"read -P 0x22 0 4k\""}}
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/
H A D0001-doc-Fix-typos-in-manual-pages.patch29 .I "-P <parallelism>"
42 .I "-P <parallelism>"
55 .I "-P <parallelism>"
85 .I "-P <parallelism>"
98 .I "-P <parallelism>"
/openbmc/openbmc/poky/meta/recipes-extended/groff/files/
H A D0001-build-Fix-Savannah-64681-webpage.ps-deps.patch36 && $(DOC_GROFF) -pet -P-Ipic -P-Dimg -P-jpic -Thtml -ms \
51 && $(DOC_GROFF) -t -I $(doc_srcdir) -P-jwebpage -P-nrb \
/openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/
H A D0015-clang-Fix-resource-dir-location-for-cross-toolchains.patch31 SmallString<128> P(Dir);
38 - P = llvm::sys::path::parent_path(Dir);
44 + P = llvm::sys::path::parent_path(Dir);
46 + P = llvm::sys::path::parent_path(llvm::sys::path::parent_path(Dir));
48 llvm::sys::path::append(P, CLANG_INSTALL_LIBDIR_BASENAME, "clang",
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dregexps.py21 def P(*regexps, name=None, capture=False, repeat='') -> str: function
37 return P(*regexps, name=name)
41 return P('|'.join(regexps), **kwargs)
53 r = P(*regexps, repeat=n)
/openbmc/u-boot/arch/arm/dts/
H A Dtegra186-p2771-0000-500.dts10 cd-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 5) GPIO_ACTIVE_LOW>;
11 power-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 6) GPIO_ACTIVE_HIGH>;
H A Dtegra186-p2771-0000-000.dts10 cd-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 6) GPIO_ACTIVE_LOW>;
11 power-gpios = <&gpio_main TEGRA_MAIN_GPIO(P, 5) GPIO_ACTIVE_HIGH>;
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/asio/asio/
H A D0001-tests-Remove-blocking_adaptation.cpp.patch8 216 | conditional_t<true, T, P>::query(static_cast<P&&>(p))
11 213 | static constexpr auto query(P&& p)
/openbmc/qemu/docs/system/ppc/
H A Dprep.rst4 Use the executable ``qemu-system-ppc`` to simulate a complete 40P (PREP)
9 QEMU emulates the following 40P (PREP) peripherals:

12345678910>>...25