Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 3294) sorted by relevance

12345678910>>...132

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/nana/
H A Dnana_git.bb13 S = "${WORKDIR}/git"
24 # make distclean but in ${S}
25 rm -rf ${S}/src/*.o ${S}/src/.deps \
26 ${S}/Makefile ${S}/config.log ${S}/config.status \
27 ${S}/doc/Makefile ${S}/doc/nana.pdf \
28 ${S}/emacs/Makefile ${S}/examples/Makefile \
29 ${S}/gdb/Makefile ${S}/gdb/nana-libtrace ${S}/gdb/nana-trace \
30 ${S}/man/Makefile ${S}/perf/Makefile \
31 ${S}/shortform/Makefile ${S}/shortform/nana-sfdir ${S}/shortform/nana-sfg \
32 ${S}/src/Makefile ${S}/src/libnana.a \
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0002-add-fallback-parse_printf_format-implementation.patch195 +#define S(x) [(x)-'A']
200 + S('d') = E(INT), S('i') = E(INT),
201 + S('o') = E(UINT),S('u') = E(UINT),S('x') = E(UINT), S('X') = E(UINT),
202 + S('e') = E(DBL), S('f') = E(DBL), S('g') = E(DBL), S('a') = E(DBL),
203 + S('E') = E(DBL), S('F') = E(DBL), S('G') = E(DBL), S('A') = E(DBL),
204 + S('c') = E(CHAR),S('C') = E(INT),
205 + S('s') = E(PTR), S('S') = E(PTR), S('p') = E(UIPTR),S('n') = E(PTR),
206 + S('m') = E(NONE),
207 + S('l') = LPRE, S('h') = HPRE, S('L') = BIGLPRE,
208 + S('z') = ZTPRE, S('j') = JPRE, S('t') = ZTPRE
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/
H A D0002-musl-does-not-provide-printf-h.patch210 +#define S(x) [(x)-'A']
215 + S('d') = E(INT), S('i') = E(INT),
216 + S('o') = E(UINT),S('u') = E(UINT),S('x') = E(UINT), S('X') = E(UINT),
217 + S('e') = E(DBL), S('f') = E(DBL), S('g') = E(DBL), S('a') = E(DBL),
218 + S('E') = E(DBL), S('F') = E(DBL), S('G') = E(DBL), S('A') = E(DBL),
219 + S('c') = E(CHAR),S('C') = E(INT),
220 + S('s') = E(PTR), S('S') = E(PTR), S('p') = E(UIPTR),S('n') = E(PTR),
221 + S('m') = E(NONE),
222 + S('l') = LPRE, S('h') = HPRE, S('L') = BIGLPRE,
223 + S('z') = ZTPRE, S('j') = JPRE, S('t') = ZTPRE
[all …]
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0004-add-fallback-parse_printf_format-implementation.patch195 +#define S(x) [(x)-'A']
200 + S('d') = E(INT), S('i') = E(INT),
201 + S('o') = E(UINT),S('u') = E(UINT),S('x') = E(UINT), S('X') = E(UINT),
202 + S('e') = E(DBL), S('f') = E(DBL), S('g') = E(DBL), S('a') = E(DBL),
203 + S('E') = E(DBL), S('F') = E(DBL), S('G') = E(DBL), S('A') = E(DBL),
204 + S('c') = E(CHAR),S('C') = E(INT),
205 + S('s') = E(PTR), S('S') = E(PTR), S('p') = E(UIPTR),S('n') = E(PTR),
206 + S('m') = E(NONE),
207 + S('l') = LPRE, S('h') = HPRE, S('L') = BIGLPRE,
208 + S('z') = ZTPRE, S('j') = JPRE, S('t') = ZTPRE
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/s-suite/
H A Ds-suite_git.bb7 SRC_URI = "git://github.com/Algodev-github/S.git;protocol=https;branch=master"
13 S = "${WORKDIR}/git"
15 # installing in /opt/S-suite since the package has
18 install -d ${D}/opt/S-suite
19 for i in $(find ${S}/* -type d); do
20 install -d ${D}/opt/S-suite/$(basename $i)
21 install -m0755 -p ${S}/$(basename $i)/* ${D}/opt/S-suite/$(basename $i)
24 install -m0755 ${S}/def_config.sh ${D}/opt/S-suite
25 install -m0755 ${S}/config_params.sh ${D}/opt/S-suite
26 install -m0755 ${S}/create_config.sh ${D}/opt/S-suite
[all …]
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dread.hpp52 template <typename S>
116 template <typename S>
117 requires(std::is_same_v<S, std::string> ||
118 std::is_same_v<S, details::string_wrapper> ||
119 std::is_same_v<S, details::string_path_wrapper>)
120 struct read_single<S>
122 static void op(sdbusplus::SdBusInterface* intf, sd_bus_message* m, S& t) in op()
124 constexpr auto dbusType = std::get<0>(types::type_id<S>()); in op()
131 t = S(str); in op()
136 template <typename S>
[all …]
H A Dappend.hpp55 template <typename S, typename Enable = void>
100 static std::enable_if_t<std::is_same_v<S, Td<T>> && !std::is_enum_v<Td<T>>>
115 static std::enable_if_t<std::is_same_v<S, Td<T>> && std::is_enum_v<Td<T>>>
179 template <typename S>
180 static void op(sdbusplus::SdBusInterface* intf, sd_bus_message* m, S&& s) in op()
182 constexpr auto dbusType = std::get<0>(types::type_id<S>()); in op()
191 template <typename S>
192 static void op(sdbusplus::SdBusInterface* intf, sd_bus_message* m, S&& s) in op()
194 constexpr auto dbusType = std::get<0>(types::type_id<S>()); in op()
225 template <typename S>
[all …]
/openbmc/u-boot/board/sunxi/
H A DMAINTAINERS3 S: Maintained
81 S: Maintained
86 S: Maintained
91 S: Maintained
96 S: Maintained
101 S: Maintained
106 S: Maintained
111 S: Maintained
116 S: Maintained
121 S: Maintained
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/cpuburn/cpuburn-arm/
H A D0001-cpuburn-a8.S-Remove-.func-.endfunc.patch4 Subject: [PATCH] cpuburn*.S: Remove .func/.endfunc
14 cpuburn-a7.S | 2 --
15 cpuburn-a8.S | 2 --
16 cpuburn-a9.S | 2 --
19 diff --git a/cpuburn-a7.S b/cpuburn-a7.S
21 --- a/cpuburn-a7.S
22 +++ b/cpuburn-a7.S
36 diff --git a/cpuburn-a8.S b/cpuburn-a8.S
38 --- a/cpuburn-a8.S
39 +++ b/cpuburn-a8.S
[all …]
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dregexps.py17 def S(*regexps) -> str: function
23 s = S(*regexps)
59 OPTIONAL_PARS = lambda R: OR(S(r'\(\s*', R, r'\s*\)'), R)
89 RE_INCLUDEPATH = OR(S(r'\"', RE_PATH, r'\"'),
90 S(r'<', RE_PATH, r'>'))
92 RE_INCLUDE = S(r'^[ \t]*#[ \t]*include[ \t]+', NAMED('includepath', RE_INCLUDEPATH), r'[ \t]*\n')
93 RE_SIMPLEDEFINE = S(r'^[ \t]*#[ \t]*define[ \t]+', RE_IDENTIFIER, r'[ \t]*\n')
95 RE_STRUCT_TYPE = S(r'struct\s+', RE_IDENTIFIER)
98 RE_MACRO_CONCAT = M(S(OR(RE_IDENTIFIER, RE_STRING), SP), n='{2,}')
102 RE_FUN_CALL = S(RE_IDENTIFIER, r'\s*\(\s*', RE_SIMPLE_VALUE, r'\s*\)')
[all …]
/openbmc/openbmc/meta-security/recipes-security/redhat-security/
H A Dredhat-security_1.0.bb21 S = "${WORKDIR}/sources"
22 UNPACKDIR = "${S}"
26 install -m 0755 ${S}/find-chroot-py.sh ${D}${bindir}
27 install -m 0755 ${S}/find-chroot.sh ${D}${bindir}
28 install -m 0755 ${S}/find-elf4tmp.sh ${D}${bindir}
29 install -m 0755 ${S}/find-execstack.sh ${D}${bindir}
30 install -m 0755 ${S}/find-hidden-exec.sh ${D}${bindir}
31 install -m 0755 ${S}/find-nodrop-groups.sh ${D}${bindir}
32 install -m 0755 ${S}/find-sh4errors.sh ${D}${bindir}
33 install -m 0755 ${S}/find-sh4tmp.sh ${D}${bindir}
[all …]
/openbmc/openbmc/poky/meta/recipes-core/initscripts/
H A Dinitscripts_1.0.bb38 S = "${WORKDIR}/sources"
39 UNPACKDIR = "${S}"
64 sed -i -e "s:SED_HALTARGS:${HALTARGS}:g" ${S}/halt
65 sed -i -e "s:SED_HALTARGS:${HALTARGS}:g" ${S}/reboot
66 sed -i -e "s:SED_VARLIBMOUNTARGS:${VARLIBMOUNTARGS}:g" ${S}/read-only-rootfs-hook.sh
87 install -m 0644 ${S}/functions ${D}${sysconfdir}/init.d
88 install -m 0755 ${S}/bootmisc.sh ${D}${sysconfdir}/init.d
89 install -m 0755 ${S}/checkroot.sh ${D}${sysconfdir}/init.d
90 install -m 0755 ${S}/halt ${D}${sysconfdir}/init.d
91 install -m 0755 ${S}/hostname.sh ${D}${sysconfdir}/init.d
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netcat/
H A Dnetcat-openbsd_1.195.bb28 cd ${S}
30 if [ -d ${S}/.pc-netcat ]; then
31 rm -rf ${S}/.pc
32 mv ${S}/.pc-netcat ${S}/.pc
33 QUILT_PATCHES=${S}/debian/patches quilt pop -a
34 rm -rf ${S}/.pc
36 QUILT_PATCHES=${S}/debian/patches quilt push -a
37 mv ${S}/.pc ${S}/.pc-netcat
40 do_unpack[cleandirs] += "${S}"
48 cd ${S}
[all …]
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/
H A DFix-building-on-x86_64-with-binutils-2.41.patch23 purgatory/arch/i386/entry32-16-debug.S | 2 +-
24 purgatory/arch/i386/entry32-16.S | 2 +-
25 purgatory/arch/i386/entry32.S | 2 +-
26 purgatory/arch/i386/setup-x86.S | 2 +-
29 diff --git a/purgatory/arch/i386/entry32-16-debug.S b/purgatory/arch/i386/entry32-16-debug.S
31 --- a/purgatory/arch/i386/entry32-16-debug.S
32 +++ b/purgatory/arch/i386/entry32-16-debug.S
45 diff --git a/purgatory/arch/i386/entry32-16.S b/purgatory/arch/i386/entry32-16.S
47 --- a/purgatory/arch/i386/entry32-16.S
48 +++ b/purgatory/arch/i386/entry32-16.S
[all …]
/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()
59 requires(!S) in service()
68 return client<S, true, Preserved, Types...>(ctx, proxy.path(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()
81 requires(!S) in service()
88 return proxy<S, true, I, Preserved>{this->s, p, this->i}; 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()
108 return result_t(typename result_t::template value_t<S>(this->s), in preserve()
126 requires((S) && (P) && (I)) in call()
[all …]
/openbmc/openbmc/meta-arm/meta-arm/recipes-bsp/u-boot/
H A Du-boot-uefi-secureboot.inc15 "${S}"/tools/efivar.py set -i "${S}"/ubootefi.var -n pk -d "${SBSIGN_KEYS_DIR}"/PK.esl -t file
16 "${S}"/tools/efivar.py set -i "${S}"/ubootefi.var -n kek -d "${SBSIGN_KEYS_DIR}"/KEK.esl -t file
17 "${S}"/tools/efivar.py set -i "${S}"/ubootefi.var -n db -d "${SBSIGN_KEYS_DIR}"/db.esl -t file
18 "${S}"/tools/efivar.py set -i "${S}"/ubootefi.var -n dbx -d "${SBSIGN_KEYS_DIR}"/dbx.esl -t file
19 "${S}"/tools/efivar.py print -i "${S}"/ubootefi.var
/openbmc/u-boot/scripts/coccinelle/iterators/
H A Duse_after_iter.cocci36 statement S;
88 list_for_each_entry(c,...) S
90 list_for_each_entry_reverse(c,...) S
92 list_for_each_entry_continue(c,...) S
94 list_for_each_entry_continue_reverse(c,...) S
96 list_for_each_entry_from(c,...) S
98 list_for_each_entry_safe(c,...) S
100 list_for_each_entry_safe(x,c,...) S
102 list_for_each_entry_safe_continue(c,...) S
104 list_for_each_entry_safe_continue(x,c,...) S
[all …]
/openbmc/qemu/hw/net/
H A Dpcnet.c65 #define CSR_INIT(S) !!(((S)->csr[0])&0x0001) argument
66 #define CSR_STRT(S) !!(((S)->csr[0])&0x0002) argument
67 #define CSR_STOP(S) !!(((S)->csr[0])&0x0004) argument
68 #define CSR_TDMD(S) !!(((S)->csr[0])&0x0008) argument
69 #define CSR_TXON(S) !!(((S)->csr[0])&0x0010) argument
70 #define CSR_RXON(S) !!(((S)->csr[0])&0x0020) argument
71 #define CSR_INEA(S) !!(((S)->csr[0])&0x0040) argument
72 #define CSR_BSWP(S) !!(((S)->csr[3])&0x0004) argument
73 #define CSR_LAPPEN(S) !!(((S)->csr[3])&0x0020) argument
74 #define CSR_DXSUFLO(S) !!(((S)->csr[3])&0x0040) argument
[all …]
H A Dpcnet.h27 #define BCR_TMAULOOP(S) !!((S)->bcr[BCR_MC ] & 0x4000) argument
28 #define BCR_APROMWE(S) !!((S)->bcr[BCR_MC ] & 0x0100) argument
29 #define BCR_DWIO(S) !!((S)->bcr[BCR_BSBC] & 0x0080) argument
30 #define BCR_SSIZE32(S) !!((S)->bcr[BCR_SWS ] & 0x0100) argument
31 #define BCR_SWSTYLE(S) ((S)->bcr[BCR_SWS ] & 0x00FF) argument
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mozjs/
H A Dmozjs-128_128.5.2.bb25 S = "${WORKDIR}/firefox-${PV}"
35 export PYTHONPATH = "${S}/build:\
36 ${S}/third_party/python/PyYAML/lib3:\
37 ${S}/testing/mozbase/mozfile:\
38 ${S}/python/mozboot:\
39 ${S}/third_party/python/distro:\
40 ${S}/testing/mozbase/mozinfo:\
41 ${S}/config:\
42 ${S}/testing/mozbase/manifestparser:\
43 ${S}/third_party/python/pytoml:\
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/id3lib/
H A Did3lib_3.8.3.bb27 cd ${S}
31 if [ -d ${S}/patches ]; then
36 QUILT_PATCHES=${S}/patches quilt pop -a
38 if [ -d ${S}/.pc-${BPN} ]; then
39 rm -rf ${S}/.pc
40 mv ${S}/.pc-${BPN} ${S}/.pc
41 QUILT_PATCHES=${S}/debian/patches quilt pop -a
42 rm -rf ${S}/.pc ${S}/debian
44 QUILT_PATCHES=${S}/debian/patches quilt push -a
45 mv ${S}/.pc ${S}/.pc-${BPN}
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/cpuburn/
H A Dcpuburn-arm_git.bb3 LIC_FILES_CHKSUM = "file://cpuburn-a53.S;beginline=1;endline=22;md5=3b7ccd70144c16d3fe14ac491c2d4a8…
13 file://0001-cpuburn-a8.S-Remove-.func-.endfunc.patch \
14 file://0002-burn.S-Add.patch \
15 file://0003-burn.S-Remove-.func-.endfunc.patch \
18 S = "${WORKDIR}/git"
26 ${CC} ${CFLAGS} ${LDFLAGS} cpuburn-a53.S -o burn-a53
28 ${CC} ${CFLAGS} ${LDFLAGS} burn.S -o burn
29 ${CC} ${CFLAGS} ${LDFLAGS} cpuburn-a7.S -o burn-a7
30 ${CC} ${CFLAGS} ${LDFLAGS} cpuburn-a8.S -o burn-a8
31 ${CC} ${CFLAGS} ${LDFLAGS} cpuburn-a9.S -o burn-a9
[all …]
/openbmc/openbmc/meta-ampere/meta-jade/recipes-phosphor/fans/
H A Dphosphor-fan_%.bbappend19 mkdir -p ${S}/control/config_files/${MACHINE}
20 cp ${UNPACKDIR}/events.json ${S}/control/config_files/${MACHINE}/events.json
21 cp ${UNPACKDIR}/fans.json ${S}/control/config_files/${MACHINE}/fans.json
22 cp ${UNPACKDIR}/groups.json ${S}/control/config_files/${MACHINE}/groups.json
23 cp ${UNPACKDIR}/zones.json ${S}/control/config_files/${MACHINE}/zones.json
25 mkdir -p ${S}/monitor/config_files/${MACHINE}
26 cp ${UNPACKDIR}/monitor.json ${S}/monitor/config_files/${MACHINE}/config.json
28 mkdir -p ${S}/presence/config_files/${MACHINE}
29 cp ${UNPACKDIR}/presence.json ${S}/presence/config_files/${MACHINE}/config.json
/openbmc/openbmc/meta-security/recipes-security/libmhash/
H A Dlibmhash_0.9.9.9.bb13 S = "${UNPACKDIR}/mhash-${PV}"
33 if [ ! -d ${S}/demo ]; then mkdir ${S}/demo; fi
34 cp ${UNPACKDIR}/Makefile.test ${S}/demo/Makefile
35 cp ${UNPACKDIR}/mhash.c ${S}/demo/
36 make -C ${S}/demo CFLAGS="${CFLAGS} -I${S}/include/" LDFLAGS="${LDFLAGS} -L${S}/lib/.libs"
40 install -m 0755 ${S}/demo/mhash ${D}${PTEST_PATH}

12345678910>>...132