| /openbmc/qemu/target/microblaze/ |
| H A D | op_helper.c | 72 static bool check_divz(CPUMBState *env, uint32_t a, uint32_t b, uintptr_t ra) in check_divz() 90 uint32_t helper_divs(CPUMBState *env, uint32_t a, uint32_t b) in helper_divs() 98 uint32_t helper_divu(CPUMBState *env, uint32_t a, uint32_t b) in helper_divu() 143 uint32_t helper_fadd(CPUMBState *env, uint32_t a, uint32_t b) in helper_fadd() 158 uint32_t helper_frsub(CPUMBState *env, uint32_t a, uint32_t b) in helper_frsub() 172 uint32_t helper_fmul(CPUMBState *env, uint32_t a, uint32_t b) in helper_fmul() 187 uint32_t helper_fdiv(CPUMBState *env, uint32_t a, uint32_t b) in helper_fdiv() 202 uint32_t helper_fcmp_un(CPUMBState *env, uint32_t a, uint32_t b) in helper_fcmp_un() 224 uint32_t helper_fcmp_lt(CPUMBState *env, uint32_t a, uint32_t b) in helper_fcmp_lt() 240 uint32_t helper_fcmp_eq(CPUMBState *env, uint32_t a, uint32_t b) in helper_fcmp_eq() [all …]
|
| /openbmc/u-boot/arch/nds32/include/asm/ |
| H A D | io.h | 66 #define __arch_getb(a) (*(unsigned char *)(a)) argument 67 #define __arch_getw(a) (*(unsigned short *)(a)) argument 68 #define __arch_getl(a) (*(unsigned int *)(a)) argument 70 #define __arch_putb(v, a) (*(unsigned char *)(a) = (v)) argument 71 #define __arch_putw(v, a) (*(unsigned short *)(a) = (v)) argument 72 #define __arch_putl(v, a) (*(unsigned int *)(a) = (v)) argument 82 #define __raw_writeb(v, a) __arch_putb(v, a) argument 83 #define __raw_writew(v, a) __arch_putw(v, a) argument 84 #define __raw_writel(v, a) __arch_putl(v, a) argument 86 #define __raw_readb(a) __arch_getb(a) argument [all …]
|
| /openbmc/qemu/target/mips/tcg/ |
| H A D | dsp_helper.c | 51 #define MIPSDSP_OVERFLOW_ADD(a, b, c, d) (~((a) ^ (b)) & ((a) ^ (c)) & (d)) argument 52 #define MIPSDSP_OVERFLOW_SUB(a, b, c, d) (((a) ^ (b)) & ((a) ^ (c)) & (d)) argument 136 static inline int16_t mipsdsp_add_i16(int16_t a, int16_t b, CPUMIPSState *env) in mipsdsp_add_i16() 149 static inline int16_t mipsdsp_sat_add_i16(int16_t a, int16_t b, in mipsdsp_sat_add_i16() 168 static inline int32_t mipsdsp_sat_add_i32(int32_t a, int32_t b, in mipsdsp_sat_add_i32() 187 static inline uint8_t mipsdsp_add_u8(uint8_t a, uint8_t b, CPUMIPSState *env) in mipsdsp_add_u8() 200 static inline uint16_t mipsdsp_add_u16(uint16_t a, uint16_t b, in mipsdsp_add_u16() 214 static inline uint8_t mipsdsp_sat_add_u8(uint8_t a, uint8_t b, in mipsdsp_sat_add_u8() 231 static inline uint16_t mipsdsp_sat_add_u16(uint16_t a, uint16_t b, in mipsdsp_sat_add_u16() 248 static inline int32_t mipsdsp_sat32_acc_q31(int32_t acc, int32_t a, in mipsdsp_sat32_acc_q31() [all …]
|
| H A D | lcsr_translate.c | 19 static bool trans_CPUCFG(DisasContext *ctx, arg_CPUCFG *a) in trans_CPUCFG() 32 static bool gen_rdcsr(DisasContext *ctx, arg_r *a, in gen_rdcsr() 46 static bool gen_wrcsr(DisasContext *ctx, arg_r *a, in gen_wrcsr()
|
| /openbmc/qemu/target/arm/tcg/ |
| H A D | gengvec.c | 110 static void gen_ssra8_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_ssra8_i64() 116 static void gen_ssra16_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_ssra16_i64() 122 static void gen_ssra32_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift) in gen_ssra32_i32() 128 static void gen_ssra64_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_ssra64_i64() 134 static void gen_ssra_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh) in gen_ssra_vec() 186 static void gen_usra8_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_usra8_i64() 192 static void gen_usra16_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_usra16_i64() 198 static void gen_usra32_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift) in gen_usra32_i32() 204 static void gen_usra64_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift) in gen_usra64_i64() 210 static void gen_usra_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh) in gen_usra_vec() [all …]
|
| /openbmc/u-boot/fs/jffs2/ |
| H A D | compr_lzo.c | 136 #define PTR(a) ((lzo_ptr_t) (a)) argument 137 #define PTR_LINEAR(a) PTR(a) argument 138 #define PTR_ALIGNED_4(a) ((PTR_LINEAR(a) & 3) == 0) argument 139 #define PTR_ALIGNED_8(a) ((PTR_LINEAR(a) & 7) == 0) argument 140 #define PTR_ALIGNED2_4(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 3) == 0) argument 141 #define PTR_ALIGNED2_8(a,b) (((PTR_LINEAR(a) | PTR_LINEAR(b)) & 7) == 0) argument 142 #define PTR_LT(a,b) (PTR(a) < PTR(b)) argument 143 #define PTR_GE(a,b) (PTR(a) >= PTR(b)) argument 144 #define PTR_DIFF(a,b) ((lzo_ptrdiff_t) (PTR(a) - PTR(b))) argument 145 #define pd(a,b) ((lzo_uint) ((a)-(b))) argument
|
| /openbmc/u-boot/post/lib_powerpc/fpu/ |
| H A D | compare-fp-1.c | 23 #define ORD(a, b) (!__builtin_isunordered ((a), (b))) argument 24 #define UNORD(a, b) (__builtin_isunordered ((a), (b))) argument 25 #define UNEQ(a, b) (__builtin_isunordered ((a), (b)) || ((a) == (b))) argument 26 #define UNLT(a, b) (__builtin_isunordered ((a), (b)) || ((a) < (b))) argument 27 #define UNLE(a, b) (__builtin_isunordered ((a), (b)) || ((a) <= (b))) argument 28 #define UNGT(a, b) (__builtin_isunordered ((a), (b)) || ((a) > (b))) argument 29 #define UNGE(a, b) (__builtin_isunordered ((a), (b)) || ((a) >= (b))) argument 30 #define LTGT(a, b) (__builtin_islessgreater ((a), (b))) argument
|
| /openbmc/phosphor-dbus-monitor/src/ |
| H A D | pdmgen.py | 80 def add_unique(obj, *a, **kw): 237 def __init__(self, *a, **kw): 269 def __init__(self, *a, **kw): 307 def __init__(self, *a, **kw): 353 def __init__(self, *a, **kw): 375 def __init__(self, *a, **kw): 388 def __init__(self, *a, **kw): 397 def __init__(self, *a, **kw): 421 def __init__(self, *a, **kw): 440 def __init__(self, *a, **kw): [all …]
|
| /openbmc/u-boot/arch/sh/include/asm/ |
| H A D | bitops.h | 17 volatile unsigned int *a = addr; in set_bit() local 35 volatile unsigned int *a = addr; in clear_bit() local 48 volatile unsigned int *a = addr; in change_bit() local 61 volatile unsigned int *a = addr; in test_and_set_bit() local 77 volatile unsigned int *a = addr; in test_and_clear_bit() local 93 volatile unsigned int *a = addr; in test_and_change_bit() local
|
| /openbmc/qemu/tests/tcg/mips/user/isa/r5900/ |
| H A D | test_r5900_madd.c | 9 int64_t madd(int64_t a, int32_t rs, int32_t rt) in madd() 32 int64_t madd1(int64_t a, int32_t rs, int32_t rt) in madd1() 55 static int64_t madd_variants(int64_t a, int32_t rs, int32_t rt) in madd_variants() 65 static void verify_madd(int64_t a, int32_t rs, int32_t rt, int64_t expected) in verify_madd()
|
| H A D | test_r5900_maddu.c | 9 uint64_t maddu(uint64_t a, uint32_t rs, uint32_t rt) in maddu() 32 uint64_t maddu1(uint64_t a, uint32_t rs, uint32_t rt) in maddu1() 55 static int64_t maddu_variants(int64_t a, int32_t rs, int32_t rt) in maddu_variants()
|
| /openbmc/qemu/target/ppc/ |
| H A D | int_helper.c | 709 void helper_vcmpbfp(CPUPPCState *env, ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b) in helper_vcmpbfp() 714 void helper_vcmpbfp_dot(CPUPPCState *env, ppc_avr_t *r, ppc_avr_t *a, in helper_vcmpbfp_dot() 751 static int64_t ger_rank8(uint32_t a, uint32_t b, uint32_t mask) in ger_rank8() 762 static int64_t ger_rank4(uint32_t a, uint32_t b, uint32_t mask) in ger_rank4() 773 static int64_t ger_rank2(uint32_t a, uint32_t b, uint32_t mask) in ger_rank2() 785 static void xviger(CPUPPCState *env, ppc_vsr_t *a, ppc_vsr_t *b, ppc_acc_t *at, in xviger() 818 void helper_XVI4GER8(CPUPPCState *env, ppc_vsr_t *a, ppc_vsr_t *b, in helper_XVI4GER8() 825 void helper_XVI4GER8PP(CPUPPCState *env, ppc_vsr_t *a, ppc_vsr_t *b, in helper_XVI4GER8PP() 832 void helper_XVI8GER4(CPUPPCState *env, ppc_vsr_t *a, ppc_vsr_t *b, in helper_XVI8GER4() 839 void helper_XVI8GER4PP(CPUPPCState *env, ppc_vsr_t *a, ppc_vsr_t *b, in helper_XVI8GER4PP() [all …]
|
| /openbmc/u-boot/arch/powerpc/include/asm/ |
| H A D | atomic.h | 22 static __inline__ int atomic_add_return(int a, atomic_t *v) in atomic_add_return() 38 static __inline__ int atomic_sub_return(int a, atomic_t *v) in atomic_sub_return() 86 #define atomic_add(a, v) ((void) atomic_add_return((a), (v))) argument 87 #define atomic_sub(a, v) ((void) atomic_sub_return((a), (v))) argument 88 #define atomic_sub_and_test(a, v) (atomic_sub_return((a), (v)) == 0) argument
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | adler32.c | 23 # define MOD(a) \ argument 43 # define MOD4(a) \ argument 52 # define MOD(a) a %= BASE argument 53 # define MOD4(a) a %= BASE argument
|
| /openbmc/u-boot/include/ |
| H A D | zfs_common.h | 37 #define zfs_to_cpu16(x, a) (((a) == BIG_ENDIAN) ? be16_to_cpu(x) \ argument 39 #define cpu_to_zfs16(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be16(x) \ argument 42 #define zfs_to_cpu32(x, a) (((a) == BIG_ENDIAN) ? be32_to_cpu(x) \ argument 44 #define cpu_to_zfs32(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be32(x) \ argument 47 #define zfs_to_cpu64(x, a) (((a) == BIG_ENDIAN) ? be64_to_cpu(x) \ argument 49 #define cpu_to_zfs64(x, a) (((a) == BIG_ENDIAN) ? cpu_to_be64(x) \ argument
|
| H A D | fsl_sfp.h | 14 #define srk_in32(a) in_le32(a) argument 16 #define srk_in32(a) in_be32(a) argument 20 #define sfp_in32(a) in_le32(a) argument 21 #define sfp_out32(a, v) out_le32(a, v) argument 22 #define sfp_in16(a) in_le16(a) argument 24 #define sfp_in32(a) in_be32(a) argument 25 #define sfp_out32(a, v) out_be32(a, v) argument 26 #define sfp_in16(a) in_be16(a) argument
|
| /openbmc/rest-dbus/resources/ |
| H A D | jstree.min.js | 2 !function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=t… argument 3 …e-anchor")[0]===i.activeElement,b.remove();else if(c=!0,!d){if(g=f.parent!==a.jstree.root?a("#"+f.… argument 4 this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.th… argument 5 if(this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)re… argument
|
| /openbmc/ipmitool/include/ipmitool/ |
| H A D | helper.h | 111 # define __min(a, b) ((a) < (b) ? (a) : (b)) argument 115 # define __max(a, b) ((a) > (b) ? (a) : (b)) argument 119 # define __minlen(a, b) ({ int x=strlen(a); int y=strlen(b); (x < y) ? x : y;}) argument 123 # define __maxlen(a, b) ({ int x=strlen(a); int y=strlen(b); (x > y) ? x : y;}) argument
|
| /openbmc/u-boot/lib/ |
| H A D | list_sort.c | 21 int (*cmp)(void *priv, struct list_head *a, in merge() 50 int (*cmp)(void *priv, struct list_head *a, in merge_and_restore_back_links() 104 int (*cmp)(void *priv, struct list_head *a, in list_sort() 203 static int __init cmp(void *priv, struct list_head *a, struct list_head *b) in cmp()
|
| /openbmc/phosphor-fan-presence/presence/ |
| H A D | pfpgen.py | 79 def add_unique(obj, *a, **kw): 104 def __init__(self, *a, **kw): 126 def __init__(self, *a, **kw): 141 def __init__(self, *a, **kw): 158 def __init__(self, *a, **kw): 173 def __init__(self, *a, **kw): 195 def __init__(self, *a, **kw): 209 def __init__(self, *a, **kw): 224 def __init__(self, *a, **kw): 319 def __init__(self, *a, **kw):
|
| /openbmc/qemu/target/s390x/tcg/ |
| H A D | vec_fpu_helper.c | 122 const float32 a = s390_vec_read_float32(v2, i); in vop32_2() local 146 const float64 a = s390_vec_read_float64(v2, i); in vop64_2() local 164 const float128 a = s390_vec_read_float128(v2); in vop128_2() local 177 static float32 vcdg32(float32 a, float_status *s) in vcdg32() 182 static float32 vcdlg32(float32 a, float_status *s) in vcdlg32() 187 static float32 vcgd32(float32 a, float_status *s) in vcgd32() 194 static float32 vclgd32(float32 a, float_status *s) in vclgd32() 201 static float64 vcdg64(float64 a, float_status *s) in vcdg64() 206 static float64 vcdlg64(float64 a, float_status *s) in vcdlg64() 211 static float64 vcgd64(float64 a, float_status *s) in vcgd64() [all …]
|
| /openbmc/qemu/target/m68k/ |
| H A D | softfloat.c | 31 static floatx80 propagateFloatx80NaNOneArg(floatx80 a, float_status *status) in propagateFloatx80NaNOneArg() 50 floatx80 floatx80_getman(floatx80 a, float_status *status) in floatx80_getman() 84 floatx80 floatx80_getexp(floatx80 a, float_status *status) in floatx80_getexp() 120 floatx80 floatx80_scale(floatx80 a, floatx80 b, float_status *status) in floatx80_scale() 175 floatx80 floatx80_move(floatx80 a, float_status *status) in floatx80_move() 223 floatx80 floatx80_lognp1(floatx80 a, float_status *status) in floatx80_lognp1() 422 floatx80 floatx80_logn(floatx80 a, float_status *status) in floatx80_logn() 589 floatx80 floatx80_log10(floatx80 a, float_status *status) in floatx80_log10() 645 floatx80 floatx80_log2(floatx80 a, float_status *status) in floatx80_log2() 711 floatx80 floatx80_etox(floatx80 a, float_status *status) in floatx80_etox() [all …]
|
| /openbmc/u-boot/arch/x86/include/asm/ |
| H A D | io.h | 78 #define memset_io(a,b,c) memset((a),(b),(c)) argument 79 #define memcpy_fromio(a,b,c) memcpy((a),(b),(c)) argument 80 #define memcpy_toio(a,b,c) memcpy((a),(b),(c)) argument 82 #define out_arch(type, endian, a, v) __raw_write##type(cpu_to_##endian(v), a) argument 83 #define in_arch(type, endian, a) endian##_to_cpu(__raw_read##type(a)) argument 85 #define out_le64(a, v) out_arch(q, le64, a, v) argument 86 #define out_le32(a, v) out_arch(l, le32, a, v) argument 87 #define out_le16(a, v) out_arch(w, le16, a, v) argument 89 #define in_le64(a) in_arch(q, le64, a) argument 90 #define in_le32(a) in_arch(l, le32, a) argument [all …]
|
| /openbmc/u-boot/arch/arc/include/asm/ |
| H A D | io.h | 225 #define out_arch(type, endian, a, v) __raw_write##type(cpu_to_##endian(v), a) argument 226 #define in_arch(type, endian, a) endian##_to_cpu(__raw_read##type(a)) argument 228 #define out_le32(a, v) out_arch(l, le32, a, v) argument 229 #define out_le16(a, v) out_arch(w, le16, a, v) argument 231 #define in_le32(a) in_arch(l, le32, a) argument 232 #define in_le16(a) in_arch(w, le16, a) argument 234 #define out_be32(a, v) out_arch(l, be32, a, v) argument 235 #define out_be16(a, v) out_arch(w, be16, a, v) argument 237 #define in_be32(a) in_arch(l, be32, a) argument 238 #define in_be16(a) in_arch(w, be16, a) argument [all …]
|
| /openbmc/qemu/target/hexagon/ |
| H A D | fma_emu.c | 93 static Int128 int128_sub_borrow(Int128 a, Int128 b, int borrow) in int128_sub_borrow() 121 static Accum accum_norm_left(Accum a) in accum_norm_left() 132 static inline Accum accum_norm_right(Accum a, int amt) in accum_norm_right() 168 static Accum accum_sub(Accum a, Accum b, int negate) in accum_sub() 223 static Accum accum_add(Accum a, Accum b) in accum_add() 311 static float64 accum_round_float64(Accum a, float_status *fp_status) in accum_round_float64() 436 float64 internal_mpyhh(float64 a, float64 b, in internal_mpyhh()
|