Home
last modified time | relevance | path

Searched refs:SRC (Results 1 – 25 of 141) sorted by relevance

123456

/openbmc/linux/tools/include/linux/
H A Dfilter.h38 .src_reg = SRC, \
46 .src_reg = SRC, \
84 .src_reg = SRC, \
92 .src_reg = SRC, \
120 .src_reg = SRC, \
128 .src_reg = SRC, \
148 .src_reg = SRC, \
158 .src_reg = SRC, \
168 .src_reg = SRC, \
191 .src_reg = SRC, \
[all …]
/openbmc/linux/samples/bpf/
H A Dbpf_insn.h14 .src_reg = SRC, \
22 .src_reg = SRC, \
50 .src_reg = SRC, \
58 .src_reg = SRC, \
88 .src_reg = SRC, \
123 .src_reg = SRC, \
133 .src_reg = SRC, \
156 .src_reg = SRC, \
179 .src_reg = SRC, \
189 .src_reg = SRC, \
[all …]
/openbmc/qemu/target/hexagon/idef-parser/
H A Dmacros.inc40 #define fCLIP(DST, SRC, U) (DST = fMIN((1 << U) - 1, fMAX(SRC, -(1 << U))))
44 (fCAST##REGSTYPE##s(SRC) >> -SHAMT))
49 (fCAST##REGSTYPE##u(SRC) >>> -SHAMT))
54 (fCAST##REGSTYPE##s(SRC) << -SHAMT))
56 #define fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE) \
61 fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE##u)
82 : fSAT_ORIG_SHL(fCAST##REGSTYPE##s(SRC) << (SHAMT), (SRC)))
122 #define fASHIFTR(SRC, SHAMT, REGSTYPE) (fCAST##REGSTYPE##s(SRC) >> SHAMT)
123 #define fLSHIFTR(SRC, SHAMT, REGSTYPE) (SRC >>> SHAMT)
124 #define fROTL(SRC, SHAMT, REGSTYPE) fROTL(SRC, SHAMT)
[all …]
/openbmc/qemu/target/hexagon/
H A Dmacros.h507 (((SHAMT) == 0) ? (SRC) : ((fCAST##REGSTYPE##u(SRC) << (SHAMT)) | \
553 #define fSTORE(NUM, SIZE, EA, SRC) MEM_STORE##SIZE(EA, SRC, slot) argument
567 #define fGETBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, true) argument
568 #define fGETUBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, false) argument
570 #define fGETBYTE(N, SRC) ((int8_t)((SRC >> ((N) * 8)) & 0xff)) argument
571 #define fGETUBYTE(N, SRC) ((uint8_t)((SRC >> ((N) * 8)) & 0xff)) argument
581 #define fGETHALF(N, SRC) gen_get_half(HALF, N, SRC, true) argument
582 #define fGETUHALF(N, SRC) gen_get_half(HALF, N, SRC, false) argument
584 #define fGETHALF(N, SRC) ((int16_t)((SRC >> ((N) * 16)) & 0xffff)) argument
585 #define fGETUHALF(N, SRC) ((uint16_t)((SRC >> ((N) * 16)) & 0xffff)) argument
[all …]
/openbmc/linux/tools/testing/selftests/net/
H A Dveth.sh7 readonly SRC=2
10 readonly NS_SRC=$BASE$SRC
44 for ns in $SRC $DST; do
229 chk_gro_flag "default - gro flag" $SRC off
231 chk_tso_flag " - tso flag" $SRC on
242 chk_tso_flag " - tso flag" $SRC on
256 chk_tso_flag " - tso flag" $SRC on
325 ip -n $NS_SRC link set dev veth$SRC down
333 chk_tso_flag " - tso flag" $SRC on
342 ip -n $NS_SRC link set dev veth$SRC up
[all …]
H A Dudpgro_fwd.sh8 readonly SRC=2
11 readonly NS_SRC=$BASE$SRC
48 ip link add name veth$SRC type veth peer name veth$DST
50 for ns in $SRC $DST; do
78 for ns in $SRC $DST; do
83 for ns in $SRC $DST; do
90 local addr_src=$(ip -j -n $BASE$SRC link show dev vxlan6$SRC |jq -r '.[]["address"]')
91 ip -n $BASE$DST neigh add dev vxlan6$DST lladdr $addr_src $OL_NET_V6$SRC
92 ip -n $BASE$SRC neigh add dev vxlan6$SRC lladdr $addr_dst $OL_NET_V6$DST
/openbmc/qemu/scripts/
H A Dentitlement.sh12 SRC="$2"
18 cp -pPf "$SRC" "$DST.tmp"
19 SRC="$DST.tmp"
25 codesign --entitlements "$ENTITLEMENT" --force -s - "$SRC"
29 Rez -append "$ICON" -o "$SRC"
30 SetFile -a C "$SRC"
32 mv -f "$SRC" "$DST"
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dsrc.hpp48 class SRC : public Section class
73 SRC() = delete;
74 ~SRC() = default;
75 SRC(const SRC&) = delete;
76 SRC& operator=(const SRC&) = delete;
77 SRC(SRC&&) = delete;
78 SRC& operator=(SRC&&) = delete;
87 explicit SRC(Stream& pel);
101 SRC(const message::Entry& regEntry, const AdditionalData& additionalData, in SRC() function in openpower::pels::SRC
103 SRC(regEntry, additionalData, nlohmann::json{}, dataIface) in SRC()
[all …]
H A Dsrc.cpp257 void SRC::unflatten(Stream& stream) in unflatten()
276 void SRC::flatten(Stream& stream) const in flatten()
294 SRC::SRC(Stream& pel) in SRC() function in openpower::pels::SRC
308 SRC::SRC(const message::Entry& regEntry, const AdditionalData& additionalData, in SRC() function in openpower::pels::SRC
446 void SRC::validate() in validate()
468 bool SRC::isBMCSRC() const in isBMCSRC()
480 bool SRC::isHostbootSRC() const in isHostbootSRC()
711 SRC::getJSON(message::Registry& registry, in getJSON()
976 void SRC::addRegistryCallouts( in addRegistryCallouts()
1002 void SRC::addRegistryCallout( in addRegistryCallout()
[all …]
H A Dregistry.hpp74 struct SRC struct
118 SRC() : type(0), reasonCode(0), deconfigFlag(false), checkstopFlag(false) {} in SRC() function
194 SRC src;
444 std::optional<std::map<SRC::WordNum, SRC::AdditionalDataField>>
456 std::optional<std::vector<SRC::WordNum>>
/openbmc/linux/arch/x86/crypto/
H A Daegis128-aesni-asm.S25 #define SRC %rdx macro
85 add SRC, %r8
95 add SRC, %r8
106 add SRC, %r8
120 add SRC, %r8
249 mov SRC, %r8
290 add $0x50, SRC
330 add $0x50, SRC
419 mov SRC, %r8
432 add $0x50, SRC
[all …]
/openbmc/phosphor-logging/test/openpower-pels/
H A Dsrc_test.cpp41 "SRC":
114 SRC src{stream}; in TEST_F()
155 SRC src{stream}; in TEST_F()
208 SRC src{entry, ad, dataIface}; in TEST_F()
248 SRC newSRC{stream}; in TEST_F()
339 SRC src{entry, ad, dataIface}; in TEST_F()
363 SRC newSRC{stream}; in TEST_F()
393 SRC src{entry, ad, dataIface}; in TEST_F()
404 SRC newSRC{stream}; in TEST_F()
432 SRC src{entry, ad, dataIface}; in TEST_F()
[all …]
/openbmc/linux/arch/arc/lib/
H A Dmemcpy-archs-unaligned.S13 # define STOREX(SRC,RX) std.ab SRC, [RX, 8] argument
18 # define STOREX(SRC,RX) st.ab SRC, [RX, 4] argument
/openbmc/linux/include/linux/
H A Dfilter.h100 .src_reg = SRC, \
111 .src_reg = SRC, \
152 .src_reg = SRC, \
160 .src_reg = SRC, \
204 .src_reg = SRC, \
224 .src_reg = SRC, \
232 .src_reg = SRC, \
252 .src_reg = SRC, \
262 .src_reg = SRC, \
272 .src_reg = SRC, \
[all …]
/openbmc/openbmc/poky/meta-skeleton/recipes-kernel/hello-mod/files/
H A DMakefile3 SRC := $(shell pwd) macro
6 $(MAKE) -C $(KERNEL_SRC) M=$(SRC)
9 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
/openbmc/qemu/target/hexagon/mmvec/
H A Dmacros.h76 #define fGETNIBBLE(IDX, SRC) (fSXTN(4, 8, (SRC >> (4 * IDX)) & 0xF)) argument
77 #define fGETCRUMB(IDX, SRC) (fSXTN(2, 8, (SRC >> (2 * IDX)) & 0x3)) argument
78 #define fGETCRUMB_SYMMETRIC(IDX, SRC) \ argument
79 ((fGETCRUMB(IDX, SRC) >= 0 ? (2 - fGETCRUMB(IDX, SRC)) \
80 : fGETCRUMB(IDX, SRC)))
289 #define fSTOREMMV(EA, SRC) \ argument
290 gen_vreg_store(ctx, EA, SRC##_off, insn->slot, true)
293 #define fSTOREMMVQ(EA, SRC, MASK) \ argument
297 #define fSTOREMMVNQ(EA, SRC, MASK) \ argument
301 #define fSTOREMMVU(EA, SRC) \ argument
[all …]
/openbmc/openbmc/meta-arm/meta-arm/recipes-kernel/arm-ffa-user/files/
H A DMakefile3 SRC := $(shell pwd) macro
6 $(MAKE) -C $(KERNEL_SRC) M=$(SRC)
9 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
/openbmc/openbmc/meta-arm/meta-arm/recipes-kernel/arm-ffa-tee/files/
H A DMakefile3 SRC := $(shell pwd) macro
6 $(MAKE) -C $(KERNEL_SRC) M=$(SRC)
9 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
/openbmc/qemu/target/hexagon/imported/
H A Dmacros.def806 DST = fMIN(maxv,fMAX(SRC,minv));
988 …(((SHAMT) < 0) ? ((fCAST##REGSTYPE(SRC) >> ((-(SHAMT))-1)) >>1) : (fCAST##REGSTYPE(SRC) << (SHAMT)…
1006 …HAMT) < 0) ? ((fCAST##REGSTYPE##s(SRC) >> ((-(SHAMT))-1)) >>1) : fSAT_ORIG_SHL(fCAST##REGSTYPE##s(
1013 …(((SHAMT) < 0) ? ((fCAST##REGSTYPE(SRC) << ((-(SHAMT))-1)) << 1) : (fCAST##REGSTYPE(SRC) >> (SHAMT…
1031 …AMT) < 0) ? fSAT_ORIG_SHL((fCAST##REGSTYPE##s(SRC) << ((-(SHAMT))-1)) << 1,(SRC)) : (fCAST##REGSTY…
1049 (((SHAMT)==0) ? (SRC) : ((fCAST##REGSTYPE##u(SRC) << (SHAMT)) | \
1050 ((fCAST##REGSTYPE##u(SRC) >> ((sizeof(SRC)*8)-(SHAMT)))))),
1056 (((SHAMT)==0) ? (SRC) : ((fCAST##REGSTYPE##u(SRC) >> (SHAMT)) | \
1057 ((fCAST##REGSTYPE##u(SRC) << ((sizeof(SRC)*8)-(SHAMT)))))),
1387 ((size1s_t)((SRC>>((N)*8))&0xff)),
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/tinymembench/tinymembench/
H A D0001-asm-Delete-.func-.endfunc-directives.patch33 SRC .req x1
132 SRC .req r1
228 add SRC, SRC, SIZE
236 add SRC, SRC, SIZE
244 add SRC, SRC, SIZE
252 vld1.8 {d0, d1, d2, d3}, [SRC]!
260 add SRC, SRC, SIZE
428 movdqa xmm0, [SRC + 0]
437 movdqa xmm0, [SRC + 0]
/openbmc/openbmc/meta-openpower/recipes-phosphor/ipmi/
H A Dopenpower-ipmi-oem-error-native_git.bb14 SRC=${S}/org/open_power/OCC
17 install ${SRC}/Metrics.errors.yaml ${DEST}
18 install ${SRC}/Metrics.metadata.yaml ${DEST}
/openbmc/openbmc/meta-ibm/recipes-phosphor/power/
H A Dwitherspoon-pfault-analysis-error-native_git.bb13 SRC=${S}/org/open_power/Witherspoon
16 install ${SRC}/Fault.errors.yaml ${DEST}
17 install ${SRC}/Fault.metadata.yaml ${DEST}
/openbmc/qemu/target/hexagon/imported/mmvec/
H A Dmacros.def72 ( fSXTN(4,8,(SRC >> (4*IDX)) & 0xF) ),
77 ( fSXTN(2,8,(SRC >> (2*IDX)) & 0x3) ),
82 ( (fGETCRUMB(IDX,SRC)>=0 ? (2-fGETCRUMB(IDX,SRC)) : fGETCRUMB(IDX,SRC) ) ),
591 fSTOREMMV_AL(EA,fVECSIZE(),fVECSIZE(),SRC),
606 fSTOREMMVQ_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK),
622 fSTOREMMVNQ_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK),
644 fSTOREMMV_AL(EA,fVECSIZE(),fVECSIZE(),SRC);
648 fSTOREMMVU_AL(EA,fVECSIZE(),fVECSIZE(),SRC);
675 fSTOREMMVQ_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK);
679 fSTOREMMVQU_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK);
[all …]
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Dst,nomadik.txt1 ST Microelectronics Nomadik SRC System Reset and Control
6 The Nomadik SRC controller is responsible of controlling chrystals,
9 Required properties for the SRC node:
11 - reg: must contain the SRC register base and size
13 Optional properties for the SRC node:
/openbmc/u-boot/scripts/
H A Dobjdiff97 SRC="`git rev-parse --short HEAD^`"
100 SRC="`git rev-parse --short $1`"
110 SRCD="$TMPD/$SRC"

123456