| /openbmc/u-boot/lib/zlib/ |
| H A D | adler32.c | 11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro 25 if (a >= (BASE << 16)) a -= (BASE << 16); \ 26 if (a >= (BASE << 15)) a -= (BASE << 15); \ 27 if (a >= (BASE << 14)) a -= (BASE << 14); \ 28 if (a >= (BASE << 13)) a -= (BASE << 13); \ 29 if (a >= (BASE << 12)) a -= (BASE << 12); \ 30 if (a >= (BASE << 11)) a -= (BASE << 11); \ 31 if (a >= (BASE << 10)) a -= (BASE << 10); \ 32 if (a >= (BASE << 9)) a -= (BASE << 9); \ 33 if (a >= (BASE << 8)) a -= (BASE << 8); \ [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/ |
| H A D | 0001-scripts-build-Fix-the-tests-to-build-with-clang15.patch | 14 @@ -21,7 +21,7 @@ trap 'rm -f ${BASE}$$.s ${BASE}$$.c ${BA 18 -echo "main(int ac, char *av[]) { int i; }" > ${BASE}$$.c 19 +echo "int main(int ac, char *av[]) { int i; }" > ${BASE}$$.c 20 if ${CC} ${CFLAGS} -o ${BASE}$$ ${BASE}$$.c 1>${NULL} 2>${NULL} 26 echo "#include <stdlib.h>" > ${BASE}$$.c 27 - echo "main(int ac, char *av[])" >> ${BASE}$$.c 28 + echo "int main(int ac, char *av[])" >> ${BASE}$$.c 29 echo "{ long* p = (long*)malloc(sizeof(long));" >> ${BASE}$$.c 30 echo "*p = 0; exit((int)*p); }" >> ${BASE}$$.c 31 ${CC} ${CFLAGS} +DD64 -o ${BASE}$$ ${BASE}$$.c 1>${NULL} 2>${NULL} \ [all …]
|
| H A D | 0001-src-Makefile-use-libdir-instead-of-hardcoded-lib.patch | 20 if [ ! -d $(BASE) ]; then mkdir $(BASE); fi 21 if [ ! -d $(BASE)/bin ]; then mkdir $(BASE)/bin; fi 22 if [ ! -d $(BASE)/include ]; then mkdir $(BASE)/include; fi 23 - if [ ! -d $(BASE)/lib ]; then mkdir $(BASE)/lib; fi 25 cp $(EXES) $(BASE)/bin 26 cp $(INCS) $(BASE)/include 27 - cp $O/lmbench.a $(BASE)/lib/libmbench.a 29 cd ../doc; env MAKEFLAGS="$(MAKEFLAGS)" make CC="${CC}" OS="${OS}" BASE="$(BASE)" install
|
| H A D | 0002-build-Adjust-CFLAGS-LDFLAGS-to-append-values-passed-.patch | 24 trap 'rm -f ${BASE}$$.s ${BASE}$$.c ${BASE}$$.o ${BASE}$$; exit 1' 1 2 15 30 echo "main(int ac, char *av[]) { int i; }" > ${BASE}$$.c 54 if [ ! -d $(BASE) ]; then mkdir $(BASE); fi
|
| H A D | obey-ranlib.patch | 27 BASE=/usr/local
|
| H A D | update-results-script.patch | 145 BASE=../$RESULTS/`uname -n` 159 RESULTS=$BASE.$EXT
|
| /openbmc/qemu/disas/ |
| H A D | alpha.c | 638 #define BASE AXP_OPCODE_BASE macro 710 { "halt", SPCD(0x00,0x0000), BASE, ARG_NONE }, 711 { "draina", SPCD(0x00,0x0002), BASE, ARG_NONE }, 712 { "bpt", SPCD(0x00,0x0080), BASE, ARG_NONE }, 713 { "bugchk", SPCD(0x00,0x0081), BASE, ARG_NONE }, 714 { "callsys", SPCD(0x00,0x0083), BASE, ARG_NONE }, 715 { "chmk", SPCD(0x00,0x0083), BASE, ARG_NONE }, 716 { "imb", SPCD(0x00,0x0086), BASE, ARG_NONE }, 717 { "rduniq", SPCD(0x00,0x009e), BASE, ARG_NONE }, 718 { "wruniq", SPCD(0x00,0x009f), BASE, ARG_NONE }, [all …]
|
| /openbmc/qemu/tests/tcg/xtensa/ |
| H A D | test_mmu.S | 6 #define BASE 0x20000000 macro 35 movi a2, BASE | XCHAL_SPANNING_WAY 48 movi a3, BASE + 0x01200004 /* VPN */ 54 movi a3, BASE + 0x01000001 63 movi a3, BASE + 0x01234567 66 movi a3, BASE + 0x01234014 68 movi a3, BASE + 0x0123400c 73 movi a3, BASE + 0x01234567 87 movi a3, BASE + 0x00100000 101 movi a3, BASE + 0x00100000 [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/ |
| H A D | 07_buildflags.diff | 11 + echo $CC \$MODE -o \$BASE.o \$BASE.$EXT \\ 12 + -MMD -MF \$DEPFILE -MP -MQ \$BASE.o \\ 16 $CC \$MODE -o \$BASE.o \$BASE.$EXT \\ 17 -MMD -MF \$DEPFILE -MP -MQ \$BASE.o \\
|
| /openbmc/qemu/target/xtensa/ |
| H A D | import_core.sh | 6 BASE=$(dirname "$0") 7 TARGET="$BASE"/core-$NAME 69 grep -qxf core-${NAME}.c "$BASE"/cores.list || \ 70 echo core-${NAME}.c >> "$BASE"/cores.list
|
| /openbmc/bmcweb/test/redfish-core/include/ |
| H A D | privileges_test.cpp | 24 EXPECT_THAT(privileges.getActivePrivilegeNames(PrivilegeType::BASE), in TEST() 104 EXPECT_THAT(privileges.getActivePrivilegeNames(PrivilegeType::BASE), in TEST() 115 EXPECT_THAT(privileges.getActivePrivilegeNames(PrivilegeType::BASE), in TEST() 128 privileges.getActivePrivilegeNames(PrivilegeType::BASE), in TEST()
|
| /openbmc/qemu/rust/qemu-api/src/ |
| H A D | vmstate.rs | 154 const BASE: VMStateField; constant 175 T::BASE in vmstate_base() 320 const BASE: $crate::bindings::VMStateField = constant 332 const BASE: VMStateField = VMStateField { constant 334 ..<$base as VMState>::BASE 356 const BASE: $crate::bindings::VMStateField = constant 359 as $crate::vmstate::VMState>::BASE; 374 const BASE: VMStateField = VMStateField { constant 403 const BASE: VMStateField = <$base as VMState>::BASE.with_pointer_flag(); constant 422 const BASE: VMStateField = <T as VMState>::BASE.with_array_flag(N); constant
|
| /openbmc/u-boot/test/trace/ |
| H A D | test-trace.sh | 10 BASE="$(dirname $0)/.." 11 . $BASE/common.sh
|
| /openbmc/qemu/tests/docker/ |
| H A D | run | 18 BASE="$(dirname $(realpath $0))" 32 tar -C $TEST_DIR/src -xf $BASE/qemu.tar || { echo "Failed to untar source"; exit 2; }
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/fvp-base/ |
| H A D | 0002-vexpress64-Select-PSCI-RESET-by-default.patch | 23 bool "Support Versatile Express ARMv8a FVP BASE model" 30 bool "Support Versatile Express ARMv8r64 FVP BASE model"
|
| /openbmc/openbmc/poky/meta/classes/ |
| H A D | create-spdx-3.0.bbclass | 71 # <BASE>_name: The name of the Agent (required) 72 # <BASE>_type: The type of Agent. Must be one of "person", "organization", 74 # <BASE>_comment: The comment for the Agent (optional) 75 # <BASE>_id_<ID>: And External Identifier for the Agent. <ID> must be a valid 77 # can be specified with <BASE>_id_email 82 # <BASE>_import = "<key>"
|
| /openbmc/qemu/target/m68k/ |
| H A D | translate.c | 5773 #define BASE(name, opcode, mask) \ in register_m68k_insns() macro 5777 BASE(name, opcode, mask); \ in register_m68k_insns() 5779 BASE(undef, 0000, 0000); in register_m68k_insns() 5784 BASE(bitop_reg, 0100, f1c0); in register_m68k_insns() 5785 BASE(bitop_reg, 0140, f1c0); in register_m68k_insns() 5786 BASE(bitop_reg, 0180, f1c0); in register_m68k_insns() 5787 BASE(bitop_reg, 01c0, f1c0); in register_m68k_insns() 5802 BASE(bitop_im, 0800, ffc0); in register_m68k_insns() 5803 BASE(bitop_im, 0840, ffc0); in register_m68k_insns() 5804 BASE(bitop_im, 0880, ffc0); in register_m68k_insns() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/ |
| H A D | lmbench_3.0-a9.bb | 44 TARGET="${TARGET_OS}" BASE="${prefix}" MANDIR="${mandir}"' 74 oe_runmake BASE="${D}${prefix}" MANDIR="${D}${mandir}" \
|
| /openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libnet/libnet-idn-encode/ |
| H A D | Net-IDN-Encode-2.500-use_uvchr_to_utf8_flags_instead_of_uvuni_to_utf8_flags.patch | 22 static char enc_digit[BASE] = {
|
| /openbmc/qemu/hw/net/can/ |
| H A D | ctu_can_fd_frame.h | 84 BASE = 0x0, enumerator
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | privileges.hpp | 27 BASE, enumerator
|
| /openbmc/openbmc/poky/meta/recipes-devtools/nasm/nasm/ |
| H A D | 0002-Add-debug-prefix-map-option.patch | 60 + "option `--%s' must be of the form `BASE=DEST'", p); 117 +--debug-prefix-map 'BASE=DEST':: 118 + Map file names beginning with 'BASE' to 'DEST' when encoding them in
|
| /openbmc/u-boot/doc/ |
| H A D | README.semihosting | 16 Versatile Express (VE) FVP and BASE FVP (See
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-kernel/linux/ |
| H A D | linux-arm-platforms.inc | 61 # FVP BASE KMACHINE
|
| /openbmc/u-boot/drivers/net/phy/ |
| H A D | Kconfig | 185 bool "Ethernet PHY RTL8211x: force 1000BASE-T master mode" 188 Force master mode for 1000BASE-T on RTl8211x PHYs (except for RTL8211F).
|