/openbmc/openbmc/poky/meta/recipes-support/boost/boost/ |
H A D | 0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch | 4 Subject: [PATCH] Don't set up arch/instruction-set flags, we do that 19 @@ -1144,156 +1144,3 @@ local rule cpu-flags ( toolset variable : architecture : instruction-set + : 30 -toolset.flags gcc OPTIONS <architecture>x86/<address-model>32/<instruction-set> : -march=i686 ; 31 -cpu-flags gcc OPTIONS : x86 : native : -march=native ; 32 -cpu-flags gcc OPTIONS : x86 : i486 : -march=i486 ; 33 -cpu-flags gcc OPTIONS : x86 : i586 : -march=i586 ; 34 -cpu-flags gcc OPTIONS : x86 : i686 : -march=i686 ; 35 -cpu-flags gcc OPTIONS : x86 : pentium : -march=pentium ; 36 -cpu-flags gcc OPTIONS : x86 : pentium-mmx : -march=pentium-mmx ; 37 -cpu-flags gcc OPTIONS : x86 : pentiumpro : -march=pentiumpro ; [all …]
|
/openbmc/u-boot/include/asm-generic/ |
H A D | atomic.h | 22 unsigned long flags = 0; in atomic_add() local 24 local_irq_save(flags); in atomic_add() 26 local_irq_restore(flags); in atomic_add() 31 unsigned long flags = 0; in atomic_sub() local 33 local_irq_save(flags); in atomic_sub() 35 local_irq_restore(flags); in atomic_sub() 40 unsigned long flags = 0; in atomic_inc() local 42 local_irq_save(flags); in atomic_inc() 44 local_irq_restore(flags); in atomic_inc() 49 unsigned long flags = 0; in atomic_dec() local [all …]
|
/openbmc/sdbusplus/include/sdbusplus/ |
H A D | vtable.hpp | 14 constexpr vtable_t start(decltype(vtable_t::flags) flags = 0); 25 * @param[in] flags - optional sdbusplus::vtable::method_ value. 29 decltype(vtable_t::flags) flags = 0); 38 * @param[in] flags - optional sdbusplus::vtable::method_ value. 43 decltype(vtable_t::flags) flags = 0); 49 * @param[in] flags - None supported. 52 decltype(vtable_t::flags) flags = 0); 59 * @param[in] flags - optional sdbusplus::vtable::property_ value. 63 decltype(vtable_t::flags) flags = 0); 71 * @param[in] flags - optional sdbusplus::vtable::property_ value. [all …]
|
/openbmc/qemu/hw/9pfs/ |
H A D | 9p-util-generic.c | 7 char *qemu_open_flags_tostr(int flags) in qemu_open_flags_tostr() argument 9 int acc = flags & O_ACCMODE; in qemu_open_flags_tostr() 12 (flags & O_CREAT) ? "|CREAT" : "", in qemu_open_flags_tostr() 13 (flags & O_EXCL) ? "|EXCL" : "", in qemu_open_flags_tostr() 14 (flags & O_NOCTTY) ? "|NOCTTY" : "", in qemu_open_flags_tostr() 15 (flags & O_TRUNC) ? "|TRUNC" : "", in qemu_open_flags_tostr() 16 (flags & O_APPEND) ? "|APPEND" : "", in qemu_open_flags_tostr() 17 (flags & O_NONBLOCK) ? "|NONBLOCK" : "", in qemu_open_flags_tostr() 18 (flags & O_DSYNC) ? "|DSYNC" : "", in qemu_open_flags_tostr() 20 (flags & O_DIRECT) ? "|DIRECT" : "", in qemu_open_flags_tostr() [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr/ |
H A D | 0002-apr-Remove-workdir-path-references-from-installed-ap.patch | 26 flags="$flags $LDFLAGS" 30 flags="$flags -I$includedir $EXTRA_INCLUDES" 32 - flags="$flags -I$APR_TARGET_DIR/$includedir $EXTRA_INCLUDES" 34 - flags="$flags -I$APR_SOURCE_DIR/include $EXTRA_INCLUDES" 37 - flags="$flags -I$APR_BUILD_DIR/include -I$APR_SOURCE_DIR/include $EXTRA_INCLUDES" 48 - flags="$flags -L$libdir -l${APR_LIBNAME}" 50 - flags="$flags -L$APR_TARGET_DIR/$libdir -l${APR_LIBNAME}" 53 - flags="$flags -L$APR_BUILD_DIR -l${APR_LIBNAME}" 55 + flags="$flags -l${APR_LIBNAME}" 63 - flags="$flags $LA_FILE" [all …]
|
/openbmc/qemu/tests/tcg/i386/ |
H A D | test-i386-shift.h | 11 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument 17 : "=g" (res), "=g" (flags)\ 18 : "r" (s1), "0" (res), "1" (flags)); 20 #define EXECSHIFT(size, rsize, res, s1, s2, flags) \ argument 26 : "=q" (res), "=g" (flags)\ 27 : "c" (s1), "0" (res), "1" (flags)); 33 long res, flags; in exec_opq() local 35 flags = iflags; in exec_opq() 36 EXECSHIFT("q", "", res, s1, s2, flags); in exec_opq() 39 flags &= ~CC_O; in exec_opq() [all …]
|
H A D | test-i386.h | 8 #define EXECOP2(size, rsize, res, s1, flags) \ argument 14 : "=q" (res), "=g" (flags)\ 15 : "q" (s1), "0" (res), "1" (flags)); \ 17 stringify(OP) size, s0, s1, res, iflags, flags & CC_MASK); 19 #define EXECOP1(size, rsize, res, flags) \ argument 25 : "=q" (res), "=g" (flags)\ 26 : "0" (res), "1" (flags)); \ 28 stringify(OP) size, s0, res, iflags, flags & CC_MASK); 34 long res, flags; in exec_opq() local 36 flags = iflags; in exec_opq() [all …]
|
H A D | test-i386-muldiv.h | 4 long res, s1, s0, flags; in glue() local 8 flags = 0; in glue() 14 : "=a" (res), "=g" (flags) in glue() 15 : "q" (s1), "0" (res), "1" (flags)); in glue() 17 stringify(OP) "b", s0, s1, res, flags & CC_MASK); in glue() 22 long res, s1, flags, resh; in glue() local 26 flags = 0; in glue() 32 : "=a" (res), "=g" (flags), "=d" (resh) in glue() 33 : "q" (s1), "0" (res), "1" (flags), "2" (resh)); in glue() 35 stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK); in glue() [all …]
|
/openbmc/libmctp/ |
H A D | bootstrap.sh | 17 FLAGS="-O2 -Wall -Wextra -Wformat-security" 18 FLAGS="${FLAGS} -Wparentheses" 19 FLAGS="${FLAGS} -Wno-type-limits" 20 FLAGS="${FLAGS} -Werror" 21 # FLAGS="${FLAGS} -Wpedantic" 22 FLAGS="${FLAGS} -fsanitize=address,leak,undefined" 23 FLAGS="${FLAGS} -ggdb" 25 CFLAGS="${FLAGS}" \
|
/openbmc/qemu/target/arm/tcg/ |
H A D | hflags.c | 81 CPUARMTBFlags flags) in rebuild_hflags_common() argument 83 DP_TBFLAG_ANY(flags, FPEXC_EL, fp_el); in rebuild_hflags_common() 84 DP_TBFLAG_ANY(flags, MMUIDX, arm_to_core_mmu_idx(mmu_idx)); in rebuild_hflags_common() 87 DP_TBFLAG_ANY(flags, SS_ACTIVE, 1); in rebuild_hflags_common() 90 return flags; in rebuild_hflags_common() 95 CPUARMTBFlags flags) in rebuild_hflags_common_32() argument 100 DP_TBFLAG_A32(flags, SCTLR__B, 1); in rebuild_hflags_common_32() 103 DP_TBFLAG_ANY(flags, BE_DATA, 1); in rebuild_hflags_common_32() 105 DP_TBFLAG_A32(flags, NS, !access_secure_reg(env)); in rebuild_hflags_common_32() 107 return rebuild_hflags_common(env, fp_el, mmu_idx, flags); in rebuild_hflags_common_32() [all …]
|
/openbmc/u-boot/drivers/spi/ |
H A D | fsl_qspi.c | 78 /* fsl_qspi_platdata flags */ 90 * @flags: Flags for QSPI QSPI_FLAG_... 99 u32 flags; member 111 * @flags: Flags for QSPI QSPI_FLAG_... 124 u32 flags; member 138 static u32 qspi_read32(u32 flags, u32 *addr) in qspi_read32() argument 140 return flags & QSPI_FLAG_REGMAP_ENDIAN_BIG ? in qspi_read32() 144 static void qspi_write32(u32 flags, u32 *addr, u32 val) in qspi_write32() argument 146 flags & QSPI_FLAG_REGMAP_ENDIAN_BIG ? in qspi_write32() 158 val = qspi_read32(priv->flags, &priv->regs->sr); in is_controller_busy() [all …]
|
/openbmc/u-boot/env/ |
H A D | flags.c | 61 * Print the whole list of available type flags. 75 * Print the whole list of available access flags. 106 * Parse the flags string from a .flags attribute list into the vartype enum. 108 enum env_flags_vartype env_flags_parse_vartype(const char *flags) in env_flags_parse_vartype() argument 112 if (strlen(flags) <= ENV_FLAGS_VARTYPE_LOC) in env_flags_parse_vartype() 116 flags[ENV_FLAGS_VARTYPE_LOC]); in env_flags_parse_vartype() 123 flags[ENV_FLAGS_VARTYPE_LOC]); in env_flags_parse_vartype() 128 * Parse the flags string from a .flags attribute list into the varaccess enum. 130 enum env_flags_varaccess env_flags_parse_varaccess(const char *flags) in env_flags_parse_varaccess() argument 134 if (strlen(flags) <= ENV_FLAGS_VARACCESS_LOC) in env_flags_parse_varaccess() [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr-util/ |
H A D | configfix.patch | 12 flags="$flags -I$includedir $INCLUDES" 14 - flags="$flags -I$APU_SOURCE_DIR/include $INCLUDES" 17 - flags="$flags -I$APU_BUILD_DIR/include -I$APU_SOURCE_DIR/include $INCLUDES" 21 flags="$flags $LDFLAGS" 28 flags="$flags -L$libdir -l$APRUTIL_LIBNAME" 30 - flags="$flags -L$APU_BUILD_DIR -l$APRUTIL_LIBNAME" 39 - flags="$flags $LA_FILE" 44 - flags="$flags -L$libdir -R$libdir -l$APRUTIL_LIBNAME" 46 - flags="$flags $LA_FILE" 48 + flags="$flags -l$APRUTIL_LIBNAME"
|
/openbmc/qemu/target/tricore/ |
H A D | fpu_helper.c | 87 static void f_update_psw_flags(CPUTriCoreState *env, uint8_t flags) in f_update_psw_flags() argument 92 if (flags & float_flag_invalid) { in f_update_psw_flags() 97 if (flags & float_flag_overflow) { in f_update_psw_flags() 102 if (flags & float_flag_underflow || flags & float_flag_output_denormal_flushed) { in f_update_psw_flags() 107 if (flags & float_flag_divbyzero) { in f_update_psw_flags() 112 if (flags & float_flag_inexact || flags & float_flag_output_denormal_flushed) { in f_update_psw_flags() 125 uint32_t flags; \ 129 flags = f_get_excp_flags(env); \ 130 if (flags) { \ 133 if ((flags & float_flag_invalid) \ [all …]
|
/openbmc/qemu/include/exec/ |
H A D | helper-info.c.inc | 18 #define DEF_HELPER_FLAGS_0(NAME, FLAGS, RET) \ 21 .flags = FLAGS | dh_callflag(RET), \ 25 #define DEF_HELPER_FLAGS_1(NAME, FLAGS, RET, T1) \ 28 .flags = FLAGS | dh_callflag(RET), \ 32 #define DEF_HELPER_FLAGS_2(NAME, FLAGS, RET, T1, T2) \ 35 .flags = FLAGS | dh_callflag(RET), \ 40 #define DEF_HELPER_FLAGS_3(NAME, FLAGS, RET, T1, T2, T3) \ 43 .flags = FLAGS | dh_callflag(RET), \ 48 #define DEF_HELPER_FLAGS_4(NAME, FLAGS, RET, T1, T2, T3, T4) \ 51 .flags = FLAGS | dh_callflag(RET), \ [all …]
|
/openbmc/u-boot/drivers/usb/host/ |
H A D | ehci-mxc.c | 64 static int mxc_set_usbcontrol(int port, unsigned int flags) in mxc_set_usbcontrol() argument 74 v |= (flags & MXC_EHCI_INTERFACE_MASK) << MX25_OTG_SIC_SHIFT; in mxc_set_usbcontrol() 76 if (!(flags & MXC_EHCI_POWER_PINS_ENABLED)) in mxc_set_usbcontrol() 79 if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) in mxc_set_usbcontrol() 82 if (!(flags & MXC_EHCI_OC_PIN_ACTIVE_LOW)) in mxc_set_usbcontrol() 91 v |= (flags & MXC_EHCI_INTERFACE_MASK) << MX25_H1_SIC_SHIFT; in mxc_set_usbcontrol() 93 if (!(flags & MXC_EHCI_POWER_PINS_ENABLED)) in mxc_set_usbcontrol() 96 if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) in mxc_set_usbcontrol() 99 if (!(flags & MXC_EHCI_OC_PIN_ACTIVE_LOW)) in mxc_set_usbcontrol() 102 if (!(flags & MXC_EHCI_TTL_ENABLED)) in mxc_set_usbcontrol() [all …]
|
/openbmc/u-boot/post/ |
H A D | tests.c | 11 extern int ocm_post_test (int flags); 12 extern int cache_post_test (int flags); 13 extern int watchdog_post_test (int flags); 14 extern int i2c_post_test (int flags); 15 extern int rtc_post_test (int flags); 16 extern int memory_post_test (int flags); 17 extern int cpu_post_test (int flags); 18 extern int fpu_post_test (int flags); 19 extern int uart_post_test (int flags); 20 extern int ether_post_test (int flags); [all …]
|
/openbmc/telemetry/src/ |
H A D | state.hpp | 22 template <class Flags, class Object, Flags... Keys> 28 template <Flags... Indexes> 33 const bool previous = flags.all(); in set() 35 (flags.set(indexOf<0, Indexes, Keys...>(), values), ...); in set() 37 if (previous != flags.all()) in set() 39 if (flags.all()) in set() 51 return flags.all() ? StateEvent::active : StateEvent::inactive; in set() 54 template <Flags Index> 57 return flags.test(indexOf<0, Index, Keys...>()); in get() 62 return flags.all(); in isActive() [all …]
|
/openbmc/u-boot/arch/sh/include/asm/ |
H A D | irqflags.h | 24 unsigned long flags; in raw_local_irq_disable() local 30 : "=&z" (flags) in raw_local_irq_disable() 67 unsigned long flags; in __raw_local_save_flags() local 72 : "=&z" (flags) in __raw_local_save_flags() 77 return flags; in __raw_local_save_flags() 80 #define raw_local_save_flags(flags) \ argument 81 do { (flags) = __raw_local_save_flags(); } while (0) 83 static inline int raw_irqs_disabled_flags(unsigned long flags) in raw_irqs_disabled_flags() argument 85 return (flags != 0); in raw_irqs_disabled_flags() 90 unsigned long flags = __raw_local_save_flags(); in raw_irqs_disabled() local [all …]
|
/openbmc/openpower-hw-diags/analyzer/ras-data/data/ |
H A D | ras-data-odyssey-10.json | 612 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 625 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 630 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 635 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 640 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 645 "flags": ["odp_data_corrupt_root_cause", "mask_but_dont_clear"] array 695 "flags": ["sue_source"] array 699 "flags": ["sue_source"] array 703 "flags": ["sue_source"] array 730 "flags": ["sue_source"] array [all …]
|
/openbmc/qemu/hw/net/fsl_etsec/ |
H A D | rings.c | 48 static void print_tx_bd_flags(uint16_t flags) in print_tx_bd_flags() argument 50 qemu_log(" Ready: %d\n", !!(flags & BD_TX_READY)); in print_tx_bd_flags() 51 qemu_log(" PAD/CRC: %d\n", !!(flags & BD_TX_PADCRC)); in print_tx_bd_flags() 52 qemu_log(" Wrap: %d\n", !!(flags & BD_WRAP)); in print_tx_bd_flags() 53 qemu_log(" Interrupt: %d\n", !!(flags & BD_INTERRUPT)); in print_tx_bd_flags() 54 qemu_log(" Last in frame: %d\n", !!(flags & BD_LAST)); in print_tx_bd_flags() 55 qemu_log(" Tx CRC: %d\n", !!(flags & BD_TX_TC)); in print_tx_bd_flags() 57 !!(flags & BD_TX_PREDEF)); in print_tx_bd_flags() 59 !!(flags & BD_TX_HFELC)); in print_tx_bd_flags() 61 !!(flags & BD_TX_CFRL)); in print_tx_bd_flags() [all …]
|
/openbmc/qemu/tests/tcg/arm/ |
H A D | float_madds.ref | 3 res: f32(-nan:0xffe00000) flags=INVALID (0/0) 5 res: f32(-nan:0xffe00000) flags=INVALID (0/1) 7 res: f32(-nan:0xffe00000) flags=INVALID (0/2) 9 res: f32(-nan:0xffc00000) flags=OK (1/0) 11 res: f32(-nan:0xffc00000) flags=OK (1/1) 13 res: f32(-nan:0xffc00000) flags=OK (1/2) 15 res: f32(inf:0x7f800000) flags=OK (2/0) 17 res: f32(-inf:0xff800000) flags=OK (2/1) 19 res: f32(inf:0x7f800000) flags=OK (2/2) 21 res: f32(inf:0x7f800000) flags=OVERFLOW INEXACT (3/0) [all …]
|
/openbmc/qemu/tests/tcg/loongarch64/ |
H A D | float_madds.ref | 3 res: f32(-nan:0xffe00000) flags=INVALID (0/0) 5 res: f32(-nan:0xffe00000) flags=INVALID (0/1) 7 res: f32(-nan:0xffe00000) flags=INVALID (0/2) 9 res: f32(-nan:0xffc00000) flags=OK (1/0) 11 res: f32(-nan:0xffc00000) flags=OK (1/1) 13 res: f32(-nan:0xffc00000) flags=OK (1/2) 15 res: f32(inf:0x7f800000) flags=OK (2/0) 17 res: f32(-inf:0xff800000) flags=OK (2/1) 19 res: f32(inf:0x7f800000) flags=OK (2/2) 21 res: f32(inf:0x7f800000) flags=OVERFLOW INEXACT (3/0) [all …]
|
/openbmc/qemu/tests/tcg/aarch64/ |
H A D | float_madds.ref | 3 res: f32(-nan:0xffe00000) flags=INVALID (0/0) 5 res: f32(-nan:0xffe00000) flags=INVALID (0/1) 7 res: f32(-nan:0xffe00000) flags=INVALID (0/2) 9 res: f32(-nan:0xffc00000) flags=OK (1/0) 11 res: f32(-nan:0xffc00000) flags=OK (1/1) 13 res: f32(-nan:0xffc00000) flags=OK (1/2) 15 res: f32(inf:0x7f800000) flags=OK (2/0) 17 res: f32(-inf:0xff800000) flags=OK (2/1) 19 res: f32(inf:0x7f800000) flags=OK (2/2) 21 res: f32(inf:0x7f800000) flags=OVERFLOW INEXACT (3/0) [all …]
|
/openbmc/qemu/tests/tcg/hexagon/ |
H A D | float_madds.ref | 3 res: f32(-nan:0xffffffff) flags=INVALID (0/0) 5 res: f32(-nan:0xffffffff) flags=INVALID (0/1) 7 res: f32(-nan:0xffffffff) flags=INVALID (0/2) 9 res: f32(-nan:0xffffffff) flags=OK (1/0) 11 res: f32(-nan:0xffffffff) flags=OK (1/1) 13 res: f32(-nan:0xffffffff) flags=OK (1/2) 15 res: f32(inf:0x7f800000) flags=OK (2/0) 17 res: f32(-inf:0xff800000) flags=OK (2/1) 19 res: f32(inf:0x7f800000) flags=OK (2/2) 21 res: f32(inf:0x7f800000) flags=OVERFLOW INEXACT (3/0) [all …]
|