/openbmc/qemu/target/arm/tcg/ |
H A D | mve_helper.c | 761 #define mergemask(D, R, M) \ argument 950 #define DO_AND(N, M) ((N) & (M)) argument 951 #define DO_BIC(N, M) ((N) & ~(M)) argument 952 #define DO_ORR(N, M) ((N) | (M)) argument 953 #define DO_ORN(N, M) ((N) | ~(M)) argument 954 #define DO_EOR(N, M) ((N) ^ (M)) argument 962 #define DO_ADD(N, M) ((N) + (M)) argument 963 #define DO_SUB(N, M) ((N) - (M)) argument 964 #define DO_MUL(N, M) ((N) * (M)) argument 1041 #define DO_MAX(N, M) ((N) >= (M) ? (N) : (M)) argument [all …]
|
H A D | sve_helper.c | 130 #define DO_AND(N, M, G) (((N) & (M)) & (G)) argument 131 #define DO_BIC(N, M, G) (((N) & ~(M)) & (G)) argument 132 #define DO_EOR(N, M, G) (((N) ^ (M)) & (G)) argument 133 #define DO_ORR(N, M, G) (((N) | (M)) & (G)) argument 134 #define DO_ORN(N, M, G) (((N) | ~(M)) & (G)) argument 135 #define DO_NOR(N, M, G) (~((N) | (M)) & (G)) argument 136 #define DO_NAND(N, M, G) (~((N) & (M)) & (G)) argument 137 #define DO_SEL(N, M, G) (((N) & (G)) | ((M) & ~(G))) argument 198 #define DO_AND(N, M) (N & M) argument 199 #define DO_EOR(N, M) (N ^ M) argument [all …]
|
/openbmc/linux/drivers/gpu/drm/kmb/ |
H A D | kmb_regs.h | 400 #define HS_OFFSET(M) (((M) + 1) * 0x400) argument 403 #define MIPI_TXm_HS_CTRL(M) (MIPI_TX_HS_CTRL + HS_OFFSET(M)) argument 417 #define MIPI_TXm_HS_SYNC_CFG(M) (MIPI_TX_HS_SYNC_CFG \ argument 435 #define MIPI_TXm_HS_FGn_SECTo_PH(M, N, O) (MIPI_TX0_HS_FG0_SECT0_PH + \ argument 448 #define MIPI_TXm_HS_FGn_SECT_UNPACKED_BYTES0(M, N) \ argument 452 #define MIPI_TXm_HS_FGn_SECTo_LINE_CFG(M, N, O) \ argument 457 #define MIPI_TXm_HS_FGn_NUM_LINES(M, N) \ argument 461 #define MIPI_TXm_HS_VSYNC_WIDTHn(M, N) \ argument 465 #define MIPI_TXm_HS_V_BACKPORCHESn(M, N) \ argument 469 #define MIPI_TXm_HS_V_FRONTPORCHESn(M, N) \ argument [all …]
|
/openbmc/qemu/tests/tcg/loongarch64/ |
H A D | test_div.c | 5 #define TEST_DIV(N, M) \ argument 19 #define TEST_MOD(N, M) \ argument
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | mips-r2-to-r6-emul.h | 46 #define MIPS_R2_STATS(M) \ argument 61 #define MIPS_R2BR_STATS(M) \ argument 70 #define MIPS_R2_STATS(M) do { } while (0) argument 71 #define MIPS_R2BR_STATS(M) do { } while (0) argument
|
/openbmc/linux/drivers/staging/sm750fb/ |
H A D | ddk750_chip.c | 37 unsigned int M, N, OD, POD; in get_mxclk_freq() local 319 int N, M, X, d; in sm750_calc_pll_value() local 391 unsigned int M = p_PLL->M; in sm750_format_pll_reg() local
|
/openbmc/qemu/target/loongarch/ |
H A D | vec.h | 45 #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/qemu/target/riscv/ |
H A D | vector_helper.c | 751 #define DO_SWAP(N, M) (M) in GEN_VEXT_LDFF() argument 752 #define DO_AND(N, M) (N & M) in GEN_VEXT_LDFF() argument 753 #define DO_XOR(N, M) (N ^ M) in GEN_VEXT_LDFF() argument 754 #define DO_OR(N, M) (N | M) in GEN_VEXT_LDFF() argument 755 #define DO_ADD(N, M) (N + M) in GEN_VEXT_LDFF() argument 758 #define DO_MAX(N, M) ((N) >= (M) ? (N) : (M)) in GEN_VEXT_LDFF() argument 759 #define DO_MIN(N, M) ((N) >= (M) ? (M) : (N)) in GEN_VEXT_LDFF() argument 881 #define DO_SUB(N, M) (N - M) argument 882 #define DO_RSUB(N, M) (M - N) argument 1081 #define DO_VADC(N, M, C) (N + M + C) in RVVCALL() argument [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/clk/ |
H A D | nv50.c | 58 int P, N, M, id; in read_pll_src() local 326 calc_pll(struct nv50_clk *clk, u32 reg, u32 idx, int *N, int *M, int *P) in calc_pll() 381 int N, M, P1, P2; in nv50_clk_calc() local
|
H A D | pllgt215.c | 34 int M, lM, hM, N, fN; in gt215_pll_calc() local
|
H A D | mcp77.c | 163 u32 clock, int *N, int *M, int *P) in calc_pll() 208 int N, M, P1, P2 = 0; in mcp77_clk_calc() local
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | hw_breakpoint.h | 109 #define ARM_DBG_READ(N, M, OP2, VAL) do {\ argument 113 #define ARM_DBG_WRITE(N, M, OP2, VAL) do {\ argument
|
/openbmc/qemu/include/user/ |
H A D | thunk.h | 206 #define target_to_host_bitmask(M, T) \ argument 208 #define host_to_target_bitmask(M, T) \ argument
|
/openbmc/linux/include/linux/ |
H A D | poll.h | 133 #define M(X) __MAP(v, (__force __u16)EPOLL##X, POLL##X) in mangle_poll() macro 142 #define M(X) (__force __poll_t)__MAP(val, POLL##X, (__force __u16)EPOLL##X) in demangle_poll() macro
|
/openbmc/u-boot/tools/omap/ |
H A D | clocks_get_m_n.c | 49 int get_m_n_optimized(u32 target_freq_khz, u32 ref_freq_khz, u32 *M, u32 *N) in get_m_n_optimized()
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
H A D | ga100.c | 35 int N, fN, M, P; in ga100_devinit_pll_set() local
|
H A D | gv100.c | 35 int N, fN, M, P; in gv100_devinit_pll_set() local
|
H A D | gf100.c | 37 int N, fN, M, P; in gf100_devinit_pll_set() local
|
H A D | tu102.c | 35 int N, fN, M, P; in tu102_devinit_pll_set() local
|
H A D | gt215.c | 37 int N, fN, M, P; in gt215_devinit_pll_set() local
|
/openbmc/openbmc-tools/altitude/ |
H A D | altitude | 17 M = 0.0289644 variable
|
/openbmc/linux/tools/perf/tests/ |
H A D | kmod-path.c | 47 #define M(path, c, e) \ macro
|
/openbmc/linux/drivers/comedi/drivers/ni_routing/tools/ |
H A D | convert_c_to_py.c | 58 const char *M; in family_write() local
|
/openbmc/linux/arch/mips/mm/ |
H A D | uasm-micromips.c | 32 #define M(a, b, c, d, e, f) \ macro
|
/openbmc/linux/drivers/video/fbdev/nvidia/ |
H A D | nv_hw.c | 144 unsigned int pll, N, M, MB, NB, P; in nvGetClocks() local 684 unsigned int M, N, P, pll, MClk, NVClk, memctrl; in nForceUpdateArbitrationSettings() local 772 unsigned M, N, P; in CalcVClock() local 818 unsigned M, N, P; in CalcVClock2Stage() local
|