Home
last modified time | relevance | path

Searched defs:M (Results 1 – 25 of 35) sorted by relevance

12

/openbmc/qemu/tests/tcg/loongarch64/
H A Dtest_div.c5 #define TEST_DIV(N, M) \ argument
19 #define TEST_MOD(N, M) \ argument
/openbmc/qemu/target/arm/tcg/
H A Dmve_helper.c800 #define mergemask(D, R, M) \ argument
989 #define DO_AND(N, M) ((N) & (M)) argument
990 #define DO_BIC(N, M) ((N) & ~(M)) argument
991 #define DO_ORR(N, M) ((N) | (M)) argument
992 #define DO_ORN(N, M) ((N) | ~(M)) argument
993 #define DO_EOR(N, M) ((N) ^ (M)) argument
1001 #define DO_ADD(N, M) ((N) + (M)) argument
1002 #define DO_SUB(N, M) ((N) - (M)) argument
1003 #define DO_MUL(N, M) ((N) * (M)) argument
1080 #define DO_MAX(N, M) ((N) >= (M) ? (N) : (M)) argument
[all …]
H A Dsve_helper.c142 #define DO_AND(N, M, G) (((N) & (M)) & (G)) argument
143 #define DO_BIC(N, M, G) (((N) & ~(M)) & (G)) argument
144 #define DO_EOR(N, M, G) (((N) ^ (M)) & (G)) argument
145 #define DO_ORR(N, M, G) (((N) | (M)) & (G)) argument
146 #define DO_ORN(N, M, G) (((N) | ~(M)) & (G)) argument
147 #define DO_NOR(N, M, G) (~((N) | (M)) & (G)) argument
148 #define DO_NAND(N, M, G) (~((N) & (M)) & (G)) argument
149 #define DO_SEL(N, M, G) (((N) & (G)) | ((M) & ~(G))) argument
210 #define DO_AND(N, M) (N & M) argument
211 #define DO_EOR(N, M) (N ^ M) argument
[all …]
/openbmc/qemu/target/loongarch/
H A Dvec.h45 #define DO_DIVU(N, M) (unlikely(M == 0) ? 0 : N / M) argument
46 #define DO_REMU(N, M) (unlikely(M == 0) ? 0 : N % M) argument
47 #define DO_DIV(N, M) (unlikely(M == 0) ? 0 :\ argument
49 #define DO_REM(N, M) (unlikely(M == 0) ? 0 :\ argument
/openbmc/u-boot/tools/omap/
H A Dclocks_get_m_n.c49 int get_m_n_optimized(u32 target_freq_khz, u32 ref_freq_khz, u32 *M, u32 *N) in get_m_n_optimized()
/openbmc/qemu/target/riscv/
H A Dvector_helper.c801 #define DO_SWAP(N, M) (M) in GEN_VEXT_LDFF() argument
802 #define DO_AND(N, M) (N & M) in GEN_VEXT_LDFF() argument
803 #define DO_XOR(N, M) (N ^ M) in GEN_VEXT_LDFF() argument
804 #define DO_OR(N, M) (N | M) in GEN_VEXT_LDFF() argument
805 #define DO_ADD(N, M) (N + M) in GEN_VEXT_LDFF() argument
808 #define DO_MAX(N, M) ((N) >= (M) ? (N) : (M)) in GEN_VEXT_LDFF() argument
809 #define DO_MIN(N, M) ((N) >= (M) ? (M) : (N)) in GEN_VEXT_LDFF() argument
931 #define DO_SUB(N, M) (N - M) argument
932 #define DO_RSUB(N, M) (M - N) argument
1131 #define DO_VADC(N, M, C) (N + M + C) in RVVCALL() argument
[all …]
H A Dvcrypto_helper.c186 #define DO_SLL(N, M) (N << (M & (sizeof(N) * 8 - 1))) in RVVCALL() argument
/openbmc/qemu/include/user/
H A Dthunk.h206 #define target_to_host_bitmask(M, T) \ argument
208 #define host_to_target_bitmask(M, T) \ argument
/openbmc/openbmc-tools/altitude/
H A Daltitude17 M = 0.0289644 variable
/openbmc/u-boot/arch/arm/mach-snapdragon/
H A Dclock-snapdragon.h29 uintptr_t M; member
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dregexps.py43 def M(*regexps, n='*', name=None) -> str: function
/openbmc/u-boot/arch/arm/mach-sunxi/
H A Dclock_sun4i.c81 #define PLL1_CFG(N, K, M, P) ( 1 << CCM_PLL1_CFG_ENABLE_SHIFT | \ argument
/openbmc/intel-ipmi-oem/tests/
H A Dtest_sensorcommands.cpp58 void testValue(int x, double y, int16_t M, int8_t rExp, int16_t B, int8_t bExp, in testValue()
/openbmc/phosphor-host-ipmid/test/dbus-sdr/
H A Dsensorcommands_unittest.cpp58 void testValue(int x, double y, int16_t M, int8_t rExp, int16_t B, int8_t bExp, in testValue()
/openbmc/qemu/chardev/
H A Dmsmouse.c39 #define M(c) (c - 0x20) macro
/openbmc/u-boot/drivers/bios_emulator/
H A Dbiosemui.h59 #define M _X86EMU_env macro
/openbmc/qemu/target/tricore/
H A Dfpu_helper.c208 uint32_t arg1, S, E, M, E_minus_one, m_idx; in helper_qseed() local
/openbmc/qemu/target/hexagon/
H A Ddecode.c27 #define fZXTN(N, M, VAL) ((VAL) & ((1LL << (N)) - 1)) argument
H A Dmacros.h272 #define fZXTN(N, M, VAL) (((N) != 0) ? extract64((VAL), 0, (N)) : 0LL) argument
273 #define fSXTN(N, M, VAL) (((N) != 0) ? sextract64((VAL), 0, (N)) : 0LL) argument
/openbmc/u-boot/arch/arm/mach-omap2/
H A Dclocks-common.c213 u32 temp, M, N; in do_setup_dpll() local
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djsrender.min.js3 …throw"Provide jQuery or null";return e(t,n)}:"function"==typeof define&&define.amd?define(function… argument
/openbmc/u-boot/drivers/bios_emulator/include/x86emu/
H A Dregs.h327 #define M _X86EMU_env macro
/openbmc/u-boot/include/
H A Dsym53c8xx.h529 #define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff)) argument
/openbmc/rest-dbus/resources/
H A Djsrender.min.js3 …catch(t){}return this.base?this.baseApply(arguments):e}function s(e){ne._dbgMode=e!==!1}function d… function
/openbmc/qemu/target/avr/
H A Dtranslate.c1434 static void gen_set_addr(TCGv addr, TCGv H, TCGv M, TCGv L) in gen_set_addr()
1460 static TCGv gen_get_addr(TCGv H, TCGv M, TCGv L) in gen_get_addr()

12