| /openbmc/qemu/target/hexagon/idef-parser/ |
| H A D | macros.h.inc | 40 #define fCLIP(DST, SRC, U) (DST = fMIN((1 << U) - 1, fMAX(SRC, -(1 << U)))) 41 #define fBIDIR_ASHIFTL(SRC, SHAMT, REGSTYPE) \ 43 (fCAST##REGSTYPE##s(SRC) << SHAMT) : \ 44 (fCAST##REGSTYPE##s(SRC) >> -SHAMT)) 46 #define fBIDIR_LSHIFTL(SRC, SHAMT, REGSTYPE) \ 48 (fCAST##REGSTYPE##u(SRC) << SHAMT) : \ 49 (fCAST##REGSTYPE##u(SRC) >>> -SHAMT)) 51 #define fBIDIR_ASHIFTR(SRC, SHAMT, REGSTYPE) \ 53 (fCAST##REGSTYPE##s(SRC) >> SHAMT) : \ 54 (fCAST##REGSTYPE##s(SRC) << -SHAMT)) [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | entitlement.sh | 12 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 D | src.hpp | 48 class SRC : public Section class 73 SRC() = delete; 74 ~SRC() override = 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 D | registry.hpp | 74 struct SRC struct 118 SRC() : type(0), reasonCode(0), deconfigFlag(false), checkstopFlag(false) {} in SRC() argument 194 SRC src; 444 std::optional<std::map<SRC::WordNum, SRC::AdditionalDataField>> 456 std::optional<std::vector<SRC::WordNum>> getSRCSymptomIDFields(
|
| H A D | src.cpp | 250 void SRC::unflatten(Stream& stream) in unflatten() 269 void SRC::flatten(Stream& stream) const in flatten() 287 SRC::SRC(Stream& pel) in SRC() function in openpower::pels::SRC 301 SRC::SRC(const message::Entry& regEntry, const AdditionalData& additionalData, in SRC() function in openpower::pels::SRC 380 void SRC::setUserDefinedHexWords(const message::Entry& regEntry, in setUserDefinedHexWords() 416 void SRC::setMotherboardCCIN(const DataInterfaceBase& dataIface) in setMotherboardCCIN() 439 void SRC::validate() in validate() 461 bool SRC::isBMCSRC() const in isBMCSRC() 473 bool SRC::isHostbootSRC() const in isHostbootSRC() 484 std::optional<std::string> SRC::getErrorDetails( in getErrorDetails() [all …]
|
| /openbmc/openbmc/poky/meta-skeleton/recipes-kernel/hello-mod/files/ |
| H A D | Makefile | 3 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-tstee/files/ |
| H A D | Makefile | 3 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-user/files/ |
| H A D | Makefile | 3 SRC := $(shell pwd) macro 6 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) 9 $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install
|
| /openbmc/openbmc/meta-openpower/recipes-phosphor/ipmi/ |
| H A D | openpower-ipmi-oem-error-native_git.bb | 14 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 D | witherspoon-pfault-analysis-error-native_git.bb | 13 SRC=${S}/org/open_power/Witherspoon 16 install ${SRC}/Fault.errors.yaml ${DEST} 17 install ${SRC}/Fault.metadata.yaml ${DEST}
|
| /openbmc/phosphor-logging/test/openpower-pels/ |
| H A D | src_test.cpp | 29 "SRC": 102 SRC src{stream}; in TEST_F() 143 SRC src{stream}; in TEST_F() 199 SRC src{entry, ad, dataIface}; in TEST_F() 239 SRC newSRC{stream}; in TEST_F() 267 SRC src{entry, ad, dataIface}; in TEST_F() 274 SRC src{entry, ad, dataIface}; in TEST_F() 281 SRC src{entry, ad, dataIface}; in TEST_F() 303 SRC src{*entry, ad, dataIface}; in TEST_F() 334 SRC src{entry, ad, dataIface}; in TEST_F() [all …]
|
| /openbmc/qemu/target/hexagon/mmvec/ |
| H A D | macros.h | 78 #define fGETNIBBLE(IDX, SRC) (fSXTN(4, 8, (SRC >> (4 * IDX)) & 0xF)) argument 79 #define fGETCRUMB(IDX, SRC) (fSXTN(2, 8, (SRC >> (2 * IDX)) & 0x3)) argument 80 #define fGETCRUMB_SYMMETRIC(IDX, SRC) \ argument 81 ((fGETCRUMB(IDX, SRC) >= 0 ? (2 - fGETCRUMB(IDX, SRC)) \ 82 : fGETCRUMB(IDX, SRC))) 291 #define fSTOREMMV(EA, SRC) \ argument 292 gen_vreg_store(ctx, EA, SRC##_off, insn->slot, true) 295 #define fSTOREMMVQ(EA, SRC, MASK) \ argument 296 gen_vreg_masked_store(ctx, EA, SRC##_off, MASK##_off, insn->slot, false) 299 #define fSTOREMMVNQ(EA, SRC, MASK) \ argument [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/tinymembench/tinymembench/ |
| H A D | 0001-asm-Delete-.func-.endfunc-directives.patch | 33 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/qemu/target/hexagon/imported/ |
| H A D | macros.def | 806 DST = fMIN(maxv,fMAX(SRC,minv)); 988 …(((SHAMT) < 0) ? ((fCAST##REGSTYPE(SRC) >> ((-(SHAMT))-1)) >>1) : (fCAST##REGSTYPE(SRC) << (SHAMT)… 994 fBIDIR_SHIFTL(SRC,SHAMT,REGSTYPE##s), 1000 fBIDIR_SHIFTL(SRC,SHAMT,REGSTYPE##u), 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… 1019 fBIDIR_SHIFTR(SRC,SHAMT,REGSTYPE##s), 1025 fBIDIR_SHIFTR(SRC,SHAMT,REGSTYPE##u), 1031 …AMT) < 0) ? fSAT_ORIG_SHL((fCAST##REGSTYPE##s(SRC) << ((-(SHAMT))-1)) << 1,(SRC)) : (fCAST##REGSTY… 1037 (fCAST##REGSTYPE##s(SRC) >> (SHAMT)), [all …]
|
| /openbmc/u-boot/scripts/ |
| H A D | objdiff | 97 SRC="`git rev-parse --short HEAD^`" 100 SRC="`git rev-parse --short $1`" 110 SRCD="$TMPD/$SRC"
|
| /openbmc/qemu/target/hexagon/imported/mmvec/ |
| H A D | macros.def | 72 ( 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) ) ), 585 …mem_store_vector_oddva(thread, insn, EA&~(ALIGNMENT-1), EA, insn->slot, LEN, &SRC.ub[0], 0, 0, fUS… 591 fSTOREMMV_AL(EA,fVECSIZE(),fVECSIZE(),SRC), 600 …mem_store_vector_oddva(thread, insn, EA&~(ALIGNMENT-1), EA, insn->slot, LEN, &SRC.ub[0], &maskvec.… 606 fSTOREMMVQ_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK), 616 …mem_store_vector_oddva(thread, insn, EA&~(ALIGNMENT-1), EA, insn->slot, LEN, &SRC.ub[0], &maskvec.… 622 fSTOREMMVNQ_AL(EA,fVECSIZE(),fVECSIZE(),SRC,MASK), 632 …mem_store_vector_oddva(thread, insn, EA+size1, EA+fVECSIZE(), /* slot */ 1, size2, &SRC.ub[size1],… [all …]
|
| H A D | ext.idef | 217 #define MMVEC_AVGS_NOV1(TYPE,TYPE2,DESCR, WIDTH, DEST,SRC)\ 218 …."#SRC",Vv32."#SRC")", "Vector Average "DESCR, VdV.D… 219 …."#SRC",Vv32."#SRC"):rnd", "Vector Average % Round"DESCR, VdV.D… 220 …2."#SRC",Vv32."#SRC")", "Vector Negative Average "DESCR, VdV.D… 222 #define MMVEC_AVGU_NOV1(TYPE,TYPE2,DESCR, WIDTH, DEST,SRC)\ 223 …Vu32."#SRC",Vv32."#SRC")", "Vector Average "DESCR, VdV… 224 …Vu32."#SRC",Vv32."#SRC"):rnd", "Vector Average % Round"DESCR, VdV… 1107 #define MMVEC_ABSDIFF(TYPE,TYPE2,DESCR, WIDTH, DEST,SRC)\ 1108 …SRC",Vv32."#SRC")" , "Vector Absolute of Difference "DESCR, VdV.DEST[i] = (VuV.SRC[i] > VvV.… 1110 #define MMVEC_ADDU_SAT(TYPE,TYPE2,DESCR, WIDTH, DEST,SRC)\ [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/ |
| H A D | 0010-Workaround-multiple-definition-of-symbol-errors.patch | 76 @@ -156,7 +156,7 @@ LDSCRIPT = $(SRC)/$(ARCH)/syslinux.ld 93 -LDFLAGS = -T $(SRC)/dosexe.ld 94 +LDFLAGS = -T $(SRC)/dosexe.ld -z muldefs 97 -I$(SRC) -I$(SRC)/.. -I$(SRC)/../libfat \
|
| /openbmc/openbmc/poky/meta/recipes-core/glibc/ |
| H A D | glibc-mtrace.inc | 8 SRC = "${COMPONENTS_DIR}/${PACKAGE_ARCH}/glibc-stash-locale/scripts" 12 install -m 0755 ${SRC}/mtrace ${D}${bindir}/
|
| H A D | glibc-scripts.inc | 7 SRC = "${COMPONENTS_DIR}/${PACKAGE_ARCH}/glibc-stash-locale/scripts" 14 install -m 0755 ${SRC}/$i ${D}${bindir}/
|
| /openbmc/openbmc/meta-phosphor/recipes-phosphor/leds/ |
| H A D | phosphor-led-manager-config-example-native_git.bb | 12 SRC=${S} 13 install -m 0644 ${SRC}/led-group-config.json ${D}${datadir}/phosphor-led-manager/led.json
|
| /openbmc/openbmc/meta-openpower/recipes-phosphor/occ/ |
| H A D | openpower-occ-control-config-example-native_git.bb | 15 SRC=${S} 17 install -D ${SRC}/example/occ_sensor.yaml ${YAML_DEST}/occ_sensor.yaml
|
| /openbmc/openbmc/meta-ibm/recipes-phosphor/leds/ |
| H A D | witherspoon-led-manager-config-native.bb | 17 SRC=${S} 19 install -D ${SRC}/led.json ${DEST}/led.json
|
| /openbmc/phosphor-logging/extensions/openpower-pels/registry/ |
| H A D | README.md | 17 1. Provide the upper byte (the YY from above) of an SRC reason code in `BD` 27 the SRC reason code field for `BD` SRCs, or in the standalone `ComponentID` 176 ### SRC Type 178 This specifies the type of SRC to create. The type is the first 2 characters of 185 - BD = SRC type 187 - CCCC SRC reason code 189 For `11` SRCs, it looks like: `1100RRRR`, where RRRR is the SRC reason code. 195 ### SRC Reason Code 197 This is the 4 character value in the latter half of the SRC ASCII string. It is 206 ### SRC Symptom ID Fields [all …]
|
| /openbmc/qemu/docs/system/arm/ |
| H A D | versatile.rst | 37 In the following example $BLD points to the build directory and $SRC 38 points to the root of the Linux source tree. You can drop $SRC if you 43 $ make O=$BLD -C $SRC ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- versatile_defconfig 44 $ make O=$BLD -C $SRC ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-
|